Answers for "run command pormpt in background windows"

VBA
8

run command pormpt in background windows

' Create a Bat File as C:Scheduled Jobsmybat.bat
' Put Your Code In It
' Make a VBS file
' Put This in It

Dim WinScriptHost
Set WinScriptHost = CreateObject("WScript.Shell")
WinScriptHost.Run Chr(34) & "C:Scheduled Jobsmybat.bat" & Chr(34), 0
Set WinScriptHost = Nothing
Posted by: Guest on January-10-2022

Code answers related to "run command pormpt in background windows"

Code answers related to "VBA"

Browse Popular Code Answers by Language