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