vbs スクリプトから powershell コマンドを実行したいのですが。たとえば、powershell.exe を起動して、Restart-Service などの特定のコマンドを入力します。これに似たものがうまくいくと思いました:
strCommand = "C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe -command Restart-Service [service name]"
Set WshShell = WScript.CreateObject("WScript.Shell")
Set objExec = WshShell.Exec(strCommand)
どうすればこれを管理できますか?