mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
58 lines
1.1 KiB
Markdown
58 lines
1.1 KiB
Markdown
*lock-desktop.ps1*
|
|
================
|
|
|
|
This PowerShell script locks the local computer desktop immediately.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
PS> ./lock-desktop.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./lock-desktop
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.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
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of lock-desktop.ps1 as of 07/29/2023 10:33:47)*
|