有一段VBS一直在用, 昨日系统出现问题,重新安装SP3, 结果原来VBS中的RUN行变成没有权限.- Set WshShell = CreateObject("WScript.Shell")
- set os = CreateObject("wscript.shell")
- Set WshShell=WScript.CreateObject("WScript.Shell")
- Set wshobj=WScript.CreateObject("WScript.Shell")
- os.run "http://www.163.com"
复制代码 其中:os.run "http://www.163.com" 没有权限,这是怎么回事?
只有换成WshShell.run "IEXPLORE.EXE http://www.163.com" 使用. 因为很多使用了os.run比较麻烦 |