vbs run

The solution for “vbs run” can be found here. The following code will assist you in solving the problem.

Set oShell = CreateObject(“WScript.Shell”)

‘ Run the command dir in a hidden window without waiting for it to finish
oShell.Run “dir”, 0, false

‘ Run the command dir in a visible window and wait for it to finish
oShell.Run “dir”, 1, true

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts