« 微软 sqlserver 数据库 log 文件删除的处理 | Main | Firefox 1.5.0.2 Released - 更新 http://firefox.ipcn.org 提供镜像下载 »
April 13, 2006
打开 XP Pro SP2 远程桌面的多用户支持 Enable Concurrent Sessions
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/04/13/000960.html http://windtear.net/archives/2006/04/13/000960.html 打开 XP Pro SP2 远程桌面的多用户支持 Enable Concurrent Sessions 远程桌面: Remote Desktop 或者称为 终端服务 Terminal Service RDP = Remote Desktop Protocol TS = Terminal Server Service 打开 XP Pro SP2 远程桌面的多用户支持 Enable Concurrent Sessions 主要分为三步 1. 打开多用户支持(注册表regedit) 2. 修改 termsvr.dll 3. 更改用户登录或注销的方式:使用欢迎屏幕,使用快速用户切换 控制面板→用户账户→更改用户登录或注销的方式 1. 打开多用户支持(注册表regedit) REGEDIT4 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core] "EnableConcurrentSessions"=dword:00000001 也可以直接用reg添加 @echo off setlocal set regkey="HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core" reg add %regkey% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f endlocal 2. 修改 termsvr.dll (用.2055的替换) 5.1.2600.2055 (xpsp_sp2_beta1.031215-1745) a77219a971029dc2fb683e8513713803 *termsrv.dll 215552 5.1.2600.2180 (xpsp_sp2_rtm.040803-2158) ab5b2ac7ffb870673d6806e974bf2f52 *termsrv.dll 285696 2005/06/29 00:00:00 替换两处 C:\WINDOWS\system32\termsrv.dll C:\WINDOWS\system32\dllcache\termsrv.dll 如果当前开着,需要停掉,在运行的话可以用 Process Explorer 杀 http://windtear.net/archives/2005/05/28/000674.html http://www.sysinternals.com/ntw2k/freeware/procexp.shtml http://www.sysinternals.com/Utilities/ProcessExplorer.html (最新URL) http://www.sysinternals.com/Files/ProcessExplorerNt.zip (最新版本10.06 2006-02-22) 3. 更改用户登录或注销的方式:使用欢迎屏幕,使用快速用户切换 更改方法:控制面板→用户账户→更改用户登录或注销的方式 相关系统服务 Related OS Services: TermService Terminal Services C:\WINDOWS\System32\svchost -k DComLaunch 允许多位用户连接并控制一台机器,并且在远程计算机上显示桌面和应用程序。 这是远程桌面(包括管理员的远程桌面)、快速用户转换、远程协助和终端服务器的基础结构。 FastUserSwitchingCompatibility Fast User Switching Compatibility 为在多用户下需要协助的应用程序提供管理。 C:\WINDOWS\System32\svchost.exe -k netsvcs |
Posted by windtear at April 13, 2006 4:18 PM