Email dw Contents About dw
[Company Logo Image]

at The Data Center

"A space for AD, Exchange and other technical stuff"

 

 -- Where Information Technology Lives!  --

 


 

Here is a VBScript to call a powershell script. The -noexit tells it to leave the window open.

Set objShell = CreateObject("Wscript.Shell")
vPSscrIpt = "powershell.exe -noexit c:\eventlog.ps1"
objShell.Run vPSscrIpt

hope it help!

dw