Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cmd.exe を右クリックしてRun As Administratorをクリックするのと同じように、管理者として実行する必要があるスクリプトがあります。
現在、これは私が持っているものです:
Call WSHShell.Run("cmd.exe /K netdom renamecomputer ... end code")
ShellExecute を試してみましたか?
RunCmdElevated.vbs
Set objShell = CreateObject("Shell.Application") objShell.ShellExecute "cmd.exe", "/k echo test", "", "runas", 1
wscript RunCmdElevated.vbs
与える
テスト C:\Windows\system32>
テスト
C:\Windows\system32>
新しいウィンドウで。「1」は表示モードです
http://ss64.com/vb/shellexecute.html