Skip to content

Instantly share code, notes, and snippets.

@shinayser
Last active December 21, 2021 15:32
Show Gist options
  • Save shinayser/d48bc728b84941096e0b54dc053a221a to your computer and use it in GitHub Desktop.
Save shinayser/d48bc728b84941096e0b54dc053a221a to your computer and use it in GitHub Desktop.
Kill steam process
$steam = Get-Process steam -ErrorAction Ignore
if ($null -eq $steam) {
Write-Output "Steam not found"
}
else {
$steam.Kill($true)
Write-Output 'Steam is dead'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment