




已阅读5页,还剩7页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
set 命令详解 显示、设置或删除 cmd.exe 环境变量。SET variable=stringvariable 指定环境变量名。string 指定要指派给变量的一系列字符串。要显示当前环境变量,键入不带参数的 SET。如果命令扩展被启用,SET 会如下改变:可仅用一个变量激活 SET 命令,等号或值不显示所有前缀匹配SET 命令已使用的名称的所有变量的值。例: SET P会显示所有以字母 P 打头的变量如果在当前环境中找不到该变量名称,SET 命令将把 ERRORLEVEL设置成 1。SET 命令不允许变量名含有等号。在 SET 命令中添加了两个新命令行开关:SET /A expressionSET /P variable=promptString/A 命令行开关指定等号右边的字符串为被评估的数字表达式。除十六进制有 0x 前缀,八进制有 0 前缀的,数字值为十进位数字。因此,0x12 与 18 和 022 相同。请注意八进制公式可能很容易搞混: 08 和 09 是无效的数字,因为 8 和 9 不是有效的八进制位数。/P 命令行开关允许将变量数值设成用户输入的一行输入。读取输入行之前,显示指定的 promptSmptString 可以是空的。%PATH:10,5%会扩展 PATH 环境变量,然后只使用在扩展结果中从第 11 个(偏移量 10)字符开始的五个字符。如果没有指定长度,则采用默认值,即变量数值的余数。如果两个数字(偏移量和长度)都是负数,使用的数字则是环境变量数值长度加上指定的偏移量或长度。%PATH:-10%会提取 PATH 变量的最后十个字符。%PATH:0,-2%会提取 PATH 变量的所有字符,除了最后两个。如果命令扩展被启用,有几个动态环境变量可以被扩展,但不会出现在 SET 显示的变量列表中。每次变量数值被扩展时,这些变量数值都会被动态计算。如果用户用这些名称中任何一个定义变量,那个定义会替代下面描述的动态定义:%CD% - 扩展到当前目录字符串。%DATE% - 用跟 DATE 命令同样的格式扩展到当前日期。%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 ThunderRay! echo. echo = echo 请选择要进行的操作,然后按回车 echo = echo. echo 1.优化系统服务 echo. echo 2.进行端口操作 echo. echo 3.设置IP为 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%= 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 优化文件! 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 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 Browser 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 Dnscache 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 ImapiService 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 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 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 RpcSs 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 config 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 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 config 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 sc 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 start= 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 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 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 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 config 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= AUTO 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 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 sc 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 = 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 echo 选择无效,请重新输入 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 HKLMSYSTEMCurrentControlSetServicesNetBTParameters /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_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 echo 设置IP地址结束,按任意键返回! pause nul goto start:other cls echo 开始进行其它优化. taskkill /im TIMPlatform.exe /f del /f /s /q C:Progra1TencentQQTIMPlatform.exe del /f /s /q D:Progra1TencentQQTIMPlatform.exe taskkill /im realsched.exe /f del /f /s /q C:Progra1Common1RealUpdate_OBrealsched.exe rem 删除运行QQ和Real时启动的多余程序 reg delete HKLMSOFTWAREMicrosoftWindowsCurrentVersionRun /va /f reg delete HKCRSoftwareMicrosoftWindowsCurrentVersionRun /va /f reg delete HKLMSOFTWAREMicrosoftShared ToolsMSConfigstartupreg /f del C:Documents and SettingsAll Users开始菜单程序启动*.* /q /f del C:Documents and SettingsDefault User开始菜单程序启动*.* /q /f del %userprofile%开始菜单程序启动*.* /q /f rem 删除多余的启动项 regsvr32 /u /s igfxpph.dll reg delete HKCRDirectoryBackgroundshellexContextMenuHandlers /f reg add HKCRDirectoryBackgroundshellexContextMenuHandlersnew /ve /d D969A300-E7FF-11d0-A93B-00A0C90F2719 reg delete HKLMSOFTWAREMicrosoftWindowsCurrentVersionRun /v HotKeysCmds /f reg delete HKLMSOFTWAREMicrosoftWindowsCurrentVersionRun /v IgfxTray /f rem 删除桌面多余的右键菜单 sfc /purgecache rem 消除系统缓存 regsvr32 /u /s zipfldr.dll rem 取消ZIP文件夹功能 reg add HKCUControl PanelDesktop /v AutoEndTasks /t REG_DWORD /d 1 /f reg add HKCUControl PanelDesktop /v HungAppTimeout /d 50 /f reg add HKCUControl PanelDesktop /v WaitToKillAppTimeout /d 200 /f rem 加快关机速度 reg add HKLMSYSTEMCurrentControlSetControlSession ManagerMemory ManagementPrefetchParameters /v EnablePrefetcher /t REG_DWORD /d 1 /f rem 启动条滚动一次 reg add HKLMSOFTWAREMicrosoftWindowsCurrentVersionExplorer /v AlwaysUnloadDLL /t REG_DWORD /d 1 /f rem 清除内存中不被使用的DLL文件 reg add HKLMSOFTWAREMicrosoftWindows NTCurrentVersionAeDebug /v Auto /d 0 /f rem 关闭华医生 reg add HKLMSOFTWAREMicrosoftWindows NTCurrentVersionWinlogon /v SFCDisable /t REG_DWORD /d 4294967197 /f rem 禁用文件保护 reg add HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings /v MaxConnectionsPer1_0Server /t REG_DWORD /d 8 /f reg add HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings /v MaxConnectionsPerServer /t REG_DWORD /d 8 /f rem IE下载多线程 reg add HKU.DEFAULTSoftwareMicrosoftWindowsCurrentVersionExplorer /v Link /t REG_BINARY /d 00000000 /f rem 去掉快捷方式字样 reg add HKLMSOFTWAREMicrosoftWindowsCurrentVersionpoliciesExplorer /v NoLowDiskSpaceChecks /t REG_DWORD /d 1 /f rem 取消磁盘空间太小提示 reg add HKLMSYSTEMCurrentControlSetControlFileSystem /v ConfigFileAllocSize /t REG_DWORD /d 500 /f rem 优化文件系统 reg add HKCUConsole /v LoadConIme /t REG_DWORD /d 0 /f rem 运行CMD时不自动加载Conime reg add HKLMSOFTWAREMicrosoftWindowsCurrentVersionpoliciessystem /v dontdisplaylastusername /t REG_DWORD /d 1 /f rem 不显示上次登陆用户名 reg add HKLMSYSTEMCurrentControlSetControlLsa /v restrictanonymous /t REG_DWORD /d 1 /f rem 不允许 SAM帐户和共享的匿名枚举 reg add HKLMSYSTEMControlSet001ControlCrashControl /v AutoReboot /t REG_DWORD /d 0 /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v CrashDumpEnabled /t REG_DWORD /d 0 /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v DumpFile /t REG_EXPAND_SZ /d %SystemRoot%MEMORY.DMP /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v LogEvent /t REG_DWORD /d 0 /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v MinidumpDir /t REG_EXPAND_SZ /d %SystemRoot%Minidump /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v Overwrite /t REG_DWORD /d 1 /f reg add HKLMSYSTEMControlSet001ControlCrashControl /v SendAlert /t REG_DWORD /d 0 /f rem 系统失败的几个勾全都不选 reg add HKLMSOFTWAREMicrosoftPCHealthErrorReporting /v DoReport /t REG_DWORD /d 0 /f reg add HKLMSOFTWAREMicrosoftPCHealthErrorReporting /v ShowUI /t REG_DWORD /d 0 /f rem 禁用错误汇报,但在发生严重错误时通知我的勾不选 reg add HKCRCLSID450D8FBA-AD25-11D0-98A8-0800361B1103 /v SortOrderIndex /t REG_DWORD /d 54 /f rem 桌面第一显示我的电脑 reg add HKLMSOFTWAREClasses*shellOpenInNotepad /ve /d 使用记事本打开 /f reg add HKLMSOFTWAREClasses*shellOpenInNotepadcommand /ve /d notepad.exe %1% /f reg add HKCRDirectoryshellDOS /ve /d 使用DOS浏览 /f reg add HKCRDirectoryshellDOSCommand
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025版收养协议范文集锦:全面解读收养合同要点
- 2025年度房地产估价代理服务协议
- 2025版汽车金融分期贷款购车合同范本
- 2025版浅析劳动合同中的定金合同条款适用
- 甘肃省张掖市山丹县马场总场中学2024-2025学年上学期期末质量检测九年级数学试题(含答案)
- 2025版智能家居系统集成试用协议书模板
- 2025年度行政诉讼上诉状范本制作及授权使用合同
- 2025版全新商铺门面租赁合同范本提供
- 2025年度智能设备动产质押贷款协议范本
- 2025版私人住宅智能安防系统设计与安装合同
- 医务人员职业道德规范学习体会
- 欧莱雅物流管理模式
- 2024沪教版初中英语新教材六年级上册单词表(默写表)
- 教学课件-饭店管理概论第二版
- 开学第一课开学立规矩课件21
- 《冲击波疗法》课件
- 基于模型的系统工程(MBSE)及MWORKS实践 课件 4 MBSE教材讲义 第四章 设计仿真一体化的MBSE方法
- 《中国世界遗产》课件
- 糖尿病眼底病变
- 2024年县特殊教育学校德育工作计划样本(2篇)
- 车辆gps管理制度
评论
0/150
提交评论