回复 8# phimiler
谢谢各位答复!按你的方式,run还是运行不了。
经测试,目前发现跟提权运行的程序有关。
从百度软件中心下载了2个程序,dopdf8.8.946.0.exe,BingDict_3.5.3.1600_Setup.exe。dopdf可以成功运行,Bingdict就失败。程序一样,就是提权程序不一样在。
请各位指教。
==========程序1:可以成功运行DOPDF============
Dim $strPath
$strPath="d:\temp\dopdf8.8.946.0.exe"
if RunAs("admin", @ComputerName, "password", 0, $strPath, "d:\temp")=0 Then
MsgBox(4096,"","运行安装程序出错!")
EndIf
======================================
==========程序2:不能运行BINGDICT=============
Dim $strPath
$strPath="d:\temp\BingDict_3.5.3.1600_Setup.exe"
if RunAs("admin", @ComputerName, "password", 0, $strPath, "d:\temp")=0 Then
MsgBox(4096,"","运行安装程序出错!")
EndIf
======================================= |