PowerShell/Scripts/log-off.ps1
2022-01-29 12:47:46 +01:00

23 lines
488 B
PowerShell

<#
.SYNOPSIS
Log off the current user
.DESCRIPTION
This PowerShell script logs off the current Windows user.
.EXAMPLE
PS> ./log-off
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
try {
Invoke-CimMethod -ClassName Win32_Operatingsystem -MethodName Win32Shutdown -Arguments @{ Flags = 0 }
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}