O VBScript abaixo não pode abrir o arquivo .cmd. Como posso fazer isso funcionar?

1
Set WshShell = CreateObject("WScript.Shell") 
WshShell.Run chr(34) & "D:\Testing.cmd" & Chr(34), 0

O VBScript acima não pode abrir o seguinte D: \ Testing.cmd. Alguém pode ajudar?

@echo %date% %time%
pause
    
por Matthew Wai 20.12.2016 / 14:02

1 resposta

2

Tente isto:

Set WshShell = CreateObject("WScript.Shell") 
WshShell.Run "C:\tmp\Testing.cmd", 1, True

Leia a documentação para "Executar": link

O ponto é que você usou a bandeira "0" que significa "esconder a janela".

0 - Hide the window (and activate another window.)

1 - Activate and display the window. (restore size and position) Specify this flag when displaying a window for the first time.

    
por 20.12.2016 / 14:37