当我执行VB文本时,其指挥窗口在用户有机会阅读产出之前迅速关闭。 我如何能够在不修改窗口登记处的情况下打开窗口?
这是法典:
Set objShell = WScript.CreateObject("WScript.shell")
objShell.Run "SyncToyCmd.exe -R", 1, True
当我执行VB文本时,其指挥窗口在用户有机会阅读产出之前迅速关闭。 我如何能够在不修改窗口登记处的情况下打开窗口?
这是法典:
Set objShell = WScript.CreateObject("WScript.shell")
objShell.Run "SyncToyCmd.exe -R", 1, True
You can send your execution command through the cmd.exe
command interpreter, along with a pause command which will give the user a Press any key to continue . . .
prompt to close the window.
objShell.run "%comspec% /c ""SyncToyCmd.exe -R & pause""", 1, True
Or to keep the window alive, use the /k
flag instead of /c
:
objShell.run "%comspec% /k SyncToyCmd.exe -R", 1, True
但是,你们的VB型飞机在人工关闭之前不会继续(或终止)。
<>代码>%comspec%,环境变量是指按照您的运行系统开放指挥员的正确指挥。 例如,在我的XP机器上,%comspec%
:WINDOWSsystem32cmd.exe
。
See cmd.exe
documentation here: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/cmd.mspx?mfr=true
More info on the use of the &
versus the &&
command separators here.
Assuming that it s the popped-up command window that you want to keep open (rather than the one running your VBScript), you can use CMD.exe
s Pause
command to achieve this:
Set objShell = WScript.CreateObject("WScript.shell")
objShell.Run "cmd.exe /C ""SyncToyCmd.exe -R & Pause"" ", 1, True
I ve been asked to help out with a project which has made extensive use of VBScript to process a whole bunch of text files and generate certain outputs - sanitized files, SQL entries etc.. The script ...
I have a lot of HTML pages that need the same few lines of text changed on them. To reduce the time it will take to manually open each one in Notepad and find the text and replace it with the new text,...
I am trying to call a method I have written in C# from VBScript. I have followed just about all of the instructions I can find on the web and am still having problems. Specifically I am getting Error:...
How to set delay in vbscript? WScript.Sleep(100) does not work on Windows XP, Vista.
I usually do C# but have inherited a classic ASP project. I have defined a class: Class clsPayment Public Name End Class Set objPayment = New clsPayment objPayment.Name = "...
I am working on a number of websites with files dating back to 2000. These sites have grown organically over time resulting in large numbers of orphaned web pages, include files, images, CSS files, ...
How can I check OS version in a batch file or through a vbs in an Windows 2k/2k3 environment ? You know ... Something like ... : "If winver Win2k then ... or if winver Win2k3 then ....
I am trying to query an .xls spreadsheet with VBScript, but I have run into an issue when trying to cast a field. I connect to the spreadsheet like this. Set objConnection = CreateObject("ADODB....