| 1234567891011121314151617 |
- Set-Location $args[0]
- while ($true) {
- $local:file = "artifacts/log/runningProcesses.txt"
- if (Test-Path $file) {Move-Item -Force $file "$file.bak"}
- $local:temp = Get-Process |Out-String -Width 300
- $temp.Split([Environment]::NewLine).TrimEnd() |? Length -gt 0 |Out-File -Width 300 $file
- $file = "artifacts/log/runningProcessesCommandLine.txt"
- if (Test-Path $file) {Move-Item -Force $file "$file.bak"}
- $temp = Get-CimInstance Win32_Process |Format-Table -AutoSize Name, ProcessId, CommandLine |Out-String -Width 800
- $temp.Split([Environment]::NewLine).TrimEnd() |? Length -gt 0 |Out-File -Width 800 $file
- Start-Sleep -Seconds 120
- }
|