PowerShell/Scripts/lock-desktop.ps1
2022-07-05 14:38:25 +02:00

21 lines
415 B
PowerShell
Executable File

<#
.SYNOPSIS
Locks the desktop
.DESCRIPTION
This PowerShell script locks the local computer desktop immediately.
.EXAMPLE
PS> ./lock-desktop
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
"Bye bye."
rundll32.exe user32.dll,LockWorkStation
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}