PowerShell/scripts/log-off.ps1
2024-10-01 15:11:03 +02:00

21 lines
464 B
PowerShell
Executable File

<#
.SYNOPSIS
Log off the current user
.DESCRIPTION
This PowerShell script logs off the current Windows user.
.EXAMPLE
PS> ./log-off.ps1
.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 in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}