Situatie
How to check if a process is runnin using a PowerShell script
Solutie
$calculator = Get-Process calc -ErrorAction SilentlyContinue
if ($calculator) {echo “running”}else{echo “not running”}
Remove-Variable calculator
Soluții pentru problemele tale IT
Leave A Comment?