Skip to content

Instantly share code, notes, and snippets.

@levi-turner
Created June 9, 2018 17:29
Show Gist options
  • Select an option

  • Save levi-turner/6257a7b67bfc7d77f542a495b1d00ceb to your computer and use it in GitHub Desktop.

Select an option

Save levi-turner/6257a7b67bfc7d77f542a495b1d00ceb 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