CrossLanguage: Externe Anwendung starten

CMD (ohne Unterbrechung oder Wartezeit):

start %WinDir%\System32\RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
start mstsc /v:walnuss /w:1200 /h:800

set App=%WinDir%\System32\RunDll32.exe
start %App% InetCpl.cpl,ClearMyTracksByProcess 255

set App=%WinDir%\System32\RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
start %App%

PowerShell (ohne Unterbrechung oder Wartezeit):

$App = $env:WinDir + "\system32\mstsc.exe"
& $App

$App = $env:WinDir + "\System32\RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255"
$AppExec = $env:WinDir + "\System32\RunDll32.exe"
$AppArgs = " InetCpl.cpl,ClearMyTracksByProcess 255"
&$AppExec $AppArgs
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License