Skip to content

Instantly share code, notes, and snippets.

@ScribbleGhost
Last active December 12, 2023 13:01
Show Gist options
  • Save ScribbleGhost/a818945d20714cff3d954cc146edfcd8 to your computer and use it in GitHub Desktop.
Save ScribbleGhost/a818945d20714cff3d954cc146edfcd8 to your computer and use it in GitHub Desktop.
Force close programs in Windows

Option 1: Use the name of the program

Stop-Process -Name "Adobe Desktop Service" -force

Option 2: Use the path of the program

Get-Process | Where-Object { $_.Path -eq "C:\Program Files\Common Files\Adobe\Creative Cloud Libraries\CCLibrary.exe" } | Stop-Process -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment