Created
June 9, 2018 17:29
-
-
Save levi-turner/6257a7b67bfc7d77f542a495b1d00ceb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # List all QVConnect processes | |
| # Select the subset which have been were spawned 3 hours prior | |
| # Stop that subset | |
| Get-Process QvConnect64 | Where StartTime -lt (Get-Date).AddMinutes(-180) | Stop-Process -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment