Public/Functions/split/Stop-ScreenPNGProcess.ps1
1 2 3 4 5 6 7 8 9 |
function Stop-ScreenPNGProcess { [CmdletBinding()] param () Stop-Process -Id $Global:ScreenPNGProcess -Force -ErrorAction SilentlyContinue $Global:ScreenPNGPath = $null $Global:ScreenPNGProcess = $null } |