Last active
June 27, 2024 12:49
-
-
Save jmiserez/5a9a9e59f4c0ba63aacc172f42c72447 to your computer and use it in GitHub Desktop.
Bash on WSL or Cygwin: suspend and resume Windows processes by name and optionally command line part
This file contains 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
# Add this to your Cygwin or WSL Ubuntu .bashrc | |
# Args: | |
# - process name | |
# - optional: commandline (use '%' as wildcards) | |
# Example: suspendps name commandline | |
# - suspendps notepad.exe %mytextfile.txt% | |
# - resumeps notepad.exe | |
# Note: pssuspend64.exe must be installed and available (https://docs.microsoft.com/en-us/sysinternals/downloads/pssuspend) | |
getwin32processid() { | |
# WSL / Windows 10 suitable version without spawning a shell | |
wmic.exe /interactive:off process where "caption like '$1' and commandline like '%$2%'" get processid /FORMAT:list | grep -oP '(?<=ProcessId=)[0-9]+' | |
# Old version using PowerShell (works in Cygwin, but messes up terminal in Win 10 WSL) | |
# echo $(powershell.exe "Get-WmiObject Win32_Process -Filter \"Name = '$1' and CommandLine like '$2'\" | Select-Object -Expand ProcessId" | tr -c -d '0123456789\n') | |
} | |
suspendps() { | |
for i in $(getwin32processid "$1" "$2"); do pssuspend64.exe -nobanner "$i"; done | |
} | |
resumeps() { | |
for i in $(getwin32processid "$1" "$2"); do pssuspend64.exe -nobanner -r "$i"; done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment