Skip to content

Instantly share code, notes, and snippets.

@levi-turner
Created March 13, 2019 01:25
Show Gist options
  • Save levi-turner/abfb1f00b3656129c77dbfe2d8aacba8 to your computer and use it in GitHub Desktop.
Save levi-turner/abfb1f00b3656129c77dbfe2d8aacba8 to your computer and use it in GitHub Desktop.
# 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