Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Learn the easy way to call PowerShell from VBScript
July 3, 2016
Q. How can I call PowerShell from VBScript?
A. Calling PowerShell from VBScript is simple through the Wscript.Shell object. For example:
Set objShell = CreateObject("Wscript.Shell")objShell.run("powershell.exe -nologo -file
You May Also Like