简体   繁体   中英

wshShell.Exec Error 80070002 “The system cannot find the file specified”

I'm trying to use either wshShell.Exec or wshShell.Run to run a script through another script. I have tried both methods, and both methods give me the same error. I've Googled the issue and can't find anything that seems to fix the issue. The only suggestion that really was very relevant was to try using wshShell.Run instead of Exec.

Here's the relevant part of my script:

strScriptPath = "T:\IT resources\Scripts\Shutdown Scripts"
strForceShutdown = "ForceShutdown.vbs"

  For j = 0 to 99
   Set objActive = wshShell.Run(strForceShutdown)
   ' In case I ever need to get this working to run it from another folder. 
   ' Set objActive = wshShell.Exec("cd " & strScriptPath & "")
   ' Set objActive = wshShell.Exec("wscript " & strForceShutdown & "") 
    constConf = MsgBox("Automatic shutdown initializing. Continue?" & chr(10) & "Y=Shutdown N=Postpone 30 minutes",4,"Automatic Shutdown Notification")

     If constConf = 7 Then
      objActive.Terminate
      Wscript.Sleep(1800000)

      Else
       objActive.Terminate
       Exit For
     End If
   Next

Thanks for any help!

Shell.Run returns an integer , so you can't call a method ( Terminate ) on its return value. You also can't Set it since it's not an object.

You can call your shutdown script by just running it. Give it the full path, however, not a relative path. Scripts launched from Task Scheduler often have different "starting folders" than those launched manually so don't rely on your script finding the other one relatively. Also, you'll have to add Chr(34) before and after your path to account for any spaces.

strForceShutdown = "c:\path\to\ForceShutdown.vbs"
wshShell.Run Chr(34) & strForceShutdown & Chr(34)

Finally, why launch the script and then ask whether to shutdown? Why not just launch your script after the user has responded and then you don't have to worry about terminating a running process.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM