ImageVerifierCode 换一换
格式:DOCX , 页数:18 ,大小:20.18KB ,
资源ID:8665950      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/8665950.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(set 命令详解.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

set 命令详解.docx

1、set 命令详解set 命令详解 显示、设置或删除 cmd.exe 环境变量。SET variable=stringvariable 指定环境变量名。string 指定要指派给变量的一系列字符串。要显示当前环境变量,键入不带参数的 SET。如果命令扩展被启用,SET 会如下改变:可仅用一个变量激活 SET 命令,等号或值不显示所有前缀匹配SET 命令已使用的名称的所有变量的值。例: SET P会显示所有以字母 P 打头的变量如果在当前环境中找不到该变量名称,SET 命令将把 ERRORLEVEL设置成 1。SET 命令不允许变量名含有等号。在 SET 命令中添加了两个新命令行开关:SET /A

2、 expressionSET /P variable=promptString/A 命令行开关指定等号右边的字符串为被评估的数字表达式。除十六进制有 0x 前缀,八进制有 0 前缀的,数字值为十进位数字。因此,0x12 与 18 和 022 相同。请注意八进制公式可能很容易搞混: 08 和 09 是无效的数字,因为 8 和 9 不是有效的八进制位数。/P 命令行开关允许将变量数值设成用户输入的一行输入。读取输入行之前,显示指定的 promptString。promptString 可以是空的。%PATH:10,5%会扩展 PATH 环境变量,然后只使用在扩展结果中从第 11 个(偏移量 10)

3、字符开始的五个字符。如果没有指定长度,则采用默认值,即变量数值的余数。如果两个数字(偏移量和长度)都是负数,使用的数字则是环境变量数值长度加上指定的偏移量或长度。%PATH:-10%会提取 PATH 变量的最后十个字符。%PATH:0,-2%会提取 PATH 变量的所有字符,除了最后两个。如果命令扩展被启用,有几个动态环境变量可以被扩展,但不会出现在 SET 显示的变量列表中。每次变量数值被扩展时,这些变量数值都会被动态计算。如果用户用这些名称中任何一个定义变量,那个定义会替代下面描述的动态定义:%CD% - 扩展到当前目录字符串。%DATE% - 用跟 DATE 命令同样的格式扩展到当前日期

4、。%TIME% - 用跟 TIME 命令同样的格式扩展到当前时间。%RANDOM% - 扩展到 0 和 32767 之间的任意十进制数字。%ERRORLEVEL% - 扩展到当前 ERRORLEVEL 数值。%CMDEXTVERSION% - 扩展到当前命令处理器扩展版本号。%CMDCMDLINE% - 扩展到调用命令处理器的原始命令行。应用例子:echo off title Windows Xp 优化文件! :start cls color 0c MODE con: COLS=50 LINES=27 echo Windows Xp 优化文件! echo Powered By ThunderR

5、ay! echo. echo = echo 请选择要进行的操作,然后按回车 echo = echo. echo 1.优化系统服务 echo. echo 2.进行端口操作 echo. echo 3.设置IP为192.168.1.2 echo. echo (局域网上网者慎用此功能) echo. echo 4.其它优化 echo. echo 5.设置OEM信息 echo. echo 6.清除根目录下的SXS病毒 echo. echo 7.清理系统垃圾 echo. echo 8.退出 echo.:cho set choice= set /p choice= 请选择: IF NOT %Choice%=

6、SET Choice=%Choice:0,1% if /i %choice%=1 goto start2 if /i %choice%=2 goto start3 if /i %choice%=3 goto ip if /i %choice%=4 goto other if /i %choice%=5 goto oem if /i %choice%=6 goto virus if /i %choice%=7 goto del if /i %choice%=8 goto end echo 选择无效,请重新输入 echo. goto cho:start2 cls echo Windows Xp 优

7、化文件! echo Powered By ThunderRay! echo. echo = echo 请选择要进行的操作,然后按回车 echo = echo. echo 1.优化XP系统服务 echo. echo 2.恢复XP原系统服务 echo. echo 3.返回主菜单 echo. echo 4.退出 echo.:Choice2 set choice2= set /p choice2= 请选择: IF NOT %Choice2%= SET Choice2=%Choice2:0,1% if /i %choice2%=1 goto optimize if /i %choice2%=2 goto

8、 Restore if /i %choice2%=3 goto start if /i %choice2%=4 goto end echo 选择无效,请重新输入 echo. goto Choice2:optimize cls echo 开始进行优化系统服务. sc config Alerter start= DISABLED sc config ALG start= DISABLED sc config AppMgmt start= DEMAND sc config AudioSrv start= AUTO sc config BITS start= DEMAND sc config Brow

9、ser start= DISABLED sc config CiSvc start= DISABLED sc config ClipSrv start= DISABLED sc config COMSysApp start= DEMAND sc config CryptSvc start= DEMAND sc config DcomLaunch start= AUTO sc config Dhcp start= DISABLED sc config dmadmin start= DEMAND sc config dmserver start= DISABLED sc config Dnscac

10、he start= DISABLED sc config ERSvc start= DISABLED sc config Eventlog start= AUTO sc config EventSystem start= DISABLED sc config FastUserSwitchingCompatibility start= DISABLED sc config helpsvc start= DISABLED sc config HidServ start= DISABLED sc config HTTPFilter start= DEMAND sc config ImapiServi

11、ce start= DISABLED sc config lanmanserver start= DISABLED sc config lanmanworkstation start= AUTO sc config LmHosts start= DISABLED sc config Messenger start= DISABLED sc config mnmsrvc start= DISABLED sc config MSDTC start= DISABLED sc config MSIServer start= DEMAND sc config NetDDE start= DISABLED

12、 sc config NetDDEdsdm start= DISABLED sc config Netlogon start= DISABLED sc config Netman start= DEMAND sc config Nla start= DISABLED sc config NtLmSsp start= DISABLED sc config NtmsSvc start= DEMAND sc config Nvsvc start= DISABLED sc config Ose start= DEMAND sc config PlugPlay start= AUTO sc config

13、 PolicyAgent start= DISABLED sc config ProtectedStorage start= DISABLED sc config RasAuto start= DEMAND sc config RasMan start= DEMAND sc config RDSessMgr start= DISABLED sc config RemoteAccess start= DISABLED sc config RemoteRegistry start= DISABLED sc config RpcLocator start= DEMAND sc config RpcS

14、s start= AUTO sc config SamSs start= DISABLED sc config SCardSvr start= DISABLED sc config Schedule start= DISABLED sc config seclogon start= DISABLED sc config SENS start= DISABLED sc config SharedAccess start= DISABLED sc config ShellHWDetection start= DISABLED sc config Spooler start= DEMAND sc c

15、onfig srservice start= DISABLED sc config SSDPSRV start= DISABLED sc config Stisvc start= DISABLED sc config Swprv start= DISABLED sc config SysmonLog start= DISABLED sc config TapiSrv start= DEMAND sc config TermService start= DISABLED sc config Themes start= AUTO sc config TlntSvr start= DISABLED

16、sc config TrkWks start= DISABLED sc config UMWdf start= DISABLED sc config upnphost start= DEMAND sc config UPS start= DISABLED sc config VSS start= DISABLED sc config W32Time start= DISABLED sc config WebClient start= DISABLED sc config winmgmt start= AUTO sc config WmdmPmSN start= DISABLED sc conf

17、ig Wmi start= DEMAND sc config WmiApSrv start= DISABLED sc config wuauserv start= DISABLED sc config WZCSVC start= DISABLED sc config wscsvc start= DISABLED sc config xmlprov start= DEMAND echo 优化XP系统服务结束,按任意键返回! pause nul goto start2:Restore cls echo 开始恢复XP原系统服务. sc config Alerter start= DISABLED s

18、c config ALG start= DEMAND sc config AppMgmt start= DEMAND sc config AudioSrv start= AUTO sc config BITS start= DEMAND sc config Browser start= AUTO sc config CiSvc start= DEMAND sc config ClipSrv start= DISABLED sc config COMSysApp start= DEMAND sc config CryptSvc start= AUTO sc config DcomLaunch s

19、tart= AUTO sc config Dhcp start= AUTO sc config dmadmin start= DEMAND sc config dmserver start= AUTO sc config Dnscache start= AUTO sc config ERSvc start= AUTO sc config Eventlog start= AUTO sc config EventSystem start= DEMAND sc config FastUserSwitchingCompatibility start= DEMAND sc config helpsvc

20、start= AUTO sc config HidServ start= DISABLED sc config HTTPFilter start= DEMAND sc config ImapiService start= DEMAND sc config lanmanserver start= AUTO sc config lanmanworkstation start= AUTO sc config LmHosts start= AUTO sc config Messenger start= DISABLED sc config mnmsrvc start= DEMAND sc config

21、 MSDTC start= DEMAND sc config MSIServer start= DEMAND sc config NetDDE start= DISABLED sc config NetDDEdsdm start= DISABLED sc config Netlogon start= DEMAND sc config Netman start= DEMAND sc config Nla start= DEMAND sc config NtLmSsp start= DEMAND sc config NtmsSvc start= DEMAND sc config PlugPlay

22、start= AUTO sc config PolicyAgent start= AUTO sc config ProtectedStorage start= AUTO sc config RasAuto start= DEMAND sc config RasMan start= DEMAND sc config RDSessMgr start= DEMAND sc config RemoteAccess start= DISABLED sc config RemoteRegistry start= AUTO sc config RpcLocator start= DEMAND sc conf

23、ig RpcSs start= AUTO sc config RSVP start= DEMAND sc config SamSs start= AUTO sc config SCardSvr start= DEMAND sc config Schedule start= AUTO sc config seclogon start= AUTO sc config SENS start= AUTO sc config SharedAccess start= AUTO sc config ShellHWDetection start= AUTO sc config Spooler start= A

24、UTO sc config srservice start= DISABLED sc config SSDPSRV start= DEMAND sc config stisvc start= DEMAND sc config SwPrv start= DEMAND sc config SysmonLog start= DEMAND sc config TapiSrv start= DEMAND sc config TermService start= DEMAND sc config Themes start= AUTO sc config TlntSvr start= DISABLED sc

25、 config TrkWks start= AUTO sc config UMWdf start= DEMAND sc config upnphost start= DEMAND sc config UPS start= DEMAND sc config VSS start= DEMAND sc config W32Time start= AUTO sc config WebClient start= AUTO sc config winmgmt start= AUTO sc config WmdmPmSN start= DEMAND sc config Wmi start= DEMAND s

26、c config WmiApSrv start= DEMAND sc config wscsvc start= AUTO sc config wuauserv start= AUTO sc config WZCSVC start= AUTO sc config xmlprov start= DEMAND echo 恢复XP原系统服务结束,按任意键返回! pause nul goto start2:start3 cls echo Windows Xp 优化文件! echo Powered By ThunderRay! echo. echo = echo 请选择要进行的操作,然后按回车 echo

27、= echo. echo 1.封杀135,445端口 echo. echo 2.恢复135,445端口 echo. echo 3.返回主菜单 echo. echo 4.退出 echo.:Choice3 set choice3= set /p choice3= 请选择: IF NOT %Choice3%= SET Choice2=%Choice2:0,1% if /i %choice3%=1 goto killport if /i %choice3%=2 goto openport if /i %choice3%=3 goto start if /i %choice3%=4 goto end e

28、cho 选择无效,请重新输入 echo. goto Choice3:killport cls echo 开始封杀135,445端口. reg add HKLMSOFTWAREMicrosoftOle /v EnableDCOM /d N /f reg add HKLMSOFTWAREMicrosoftRpc /v DCOM Protocols /t REG_MULTI_SZ /d ncacn_spx0ncacn_nb_nb0ncacn_nb_ipx0 /f sc config MSDTC start= DISABLED reg add HKLMSYSTEMCurrentControlSetSe

29、rvicesNetBTParameters /v SMBDeviceEnabled /t REG_DWORD /d 0 /f echo 封杀135,445端口结束,按任意键返回! pause nul goto start3:openport cls echo 开始恢复135,445端口. reg add HKLMSOFTWAREMicrosoftOle /v EnableDCOM /d Y /f reg add HKLMSOFTWAREMicrosoftRpc /v DCOM Protocols /t REG_MULTI_SZ /d ncacn_spx0ncacn_nb_nb0ncacn_nb

30、_ipx0ncacn_ip_tcp0 /f sc config MSDTC start= AUTO reg add HKLMSYSTEMCurrentControlSetServicesNetBTParameters /v SMBDeviceEnabled /t REG_DWORD /d 1 /f echo 恢复135,445端口结束,按任意键返回! pause nul goto start3:ip cls echo 开始设置IP地址. netsh interface ip set address name=本地连接 static 192.168.1.2 255.255.255.0 echo 设置I

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1