タスクマネージャー 起動 | 備忘録 (。・_・。)ノ

VBS

Set WshShell = WScript.CreateObject("WScript.Shell")
Call WshShell.Run( "taskmgr.exe", , True )
Set WshShell = Nothing

 

.net 2013

Dim app As Object
app = CreateObject("WScript.Shell")
Call app.Run("taskmgr.exe", , True)

 

Process.Start("taskmgr.exe")

 

Dim startInfo As New ProcessStartInfo("taskmgr.exe")
startInfo.WindowStyle = ProcessWindowStyle.Normal
Process.Start(startInfo)

 

タスクマネージャを起動できないように設定する - 日経トレンディネット
http://trendy.nikkeibp.co.jp/article/tec/winxp/20060221/115511/?rt=nocnt