Windows应用
运维工具
- Sublime_Text
- NirSoft:http://www.nirsoft.net/
- CMD
-
SSH
- SecureCRT实用配置
- PuTTY
- MobaXterm:十项全能远程终端登录软件(试用了一下,感觉不习惯)
- Windows Services for UNIX 3.5: http://www.microsoft.com/taiwan/windows/sfu/
- Windows下 NFS 客户端的安装及设置: http://codingstandards.iteye.com/blog/816441
- Win7 服务优化方案
-
开启rdp服务
#打开3389: reg add 'HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server' /v fDenyTSConnections /t REG_DWORD /d 00000000 /f #关闭3389: reg add 'HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server' /v fDenyTSConnections /t REG_DWORD /d 00000001 /f #修改3389端口: reg add 'HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' /v PortNumber /t REG_DWORD /d 13900 /f netsh firewall add portpening protocol=TCP port=13900 name="DeskpookRDP" profile=ALL # 增加到rdp组 set RDPObj = GetObject("winmgmts:{impersonationLevel=impersonate}!Win32_TSPermissionsSetting.TerminalName='Console'")RDPobj.AddAccount "Domain\User", X # 用wmic工具 C:\WINDOWS\system32\wbem>wmic wmic:root\cli> wmic:root\cli> PATH WIN32_TSPermissionsSetting.TerminalName="RDP-TCP" call AddAccount "Domain\User", 2 Execute (\\<ComputerName>\\root\vimv2: WIN32_TSPermissionsSetting.TerminalName="RDP-TCP")->AddAccount() (Y/N/?) Method Execution Successful. Out Parameters: instance of _PARAMETERS { RetureValue=0; };
Office
Other
- 用SoftEther VPN轻松FQ: http://chuansongme.com/n/584463
-
Win7虚拟桌面工具
- http://www.appinn.com/tag/虚拟桌面/
- Dexpot – 超强虚拟桌面软件: 确实强大,很像Gnome的虚拟桌面,窗口移动、总在顶层...
- Desktops:窗口不能在桌面之间移动、Firefox无法开启第二个窗口
- mDesktop: Hint: You can put in $0, but you will be served an ad suppored installer,在Win7上测试运行时提示crash,但实际已运行。
Win7使用L2TP VPN出现809错误
-
修改注册表:regedit
Windows Registry Editor Version 5.00 ;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RasMan\Parameters] ;"ProhibitIpSec"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RasMan\Parameters] "ProhibitIpSec"=- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent] "AssumeUDPEncapsulationContextOnSendRule"=dword:00000002
-
将以下几个服务设为自动:services.msc
IPsec Policy Agent Routing and Remote Access Remote Access Auto Connection Manager Remote Access Connection Manager Secure Socket Tunneling Protocol Service
- 重启计算机,即可使用L2TP。