mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-16 17:51:28 +01:00
71 lines
1.6 KiB
Markdown
71 lines
1.6 KiB
Markdown
|
Script: *write-hands-off.ps1*
|
||
|
========================
|
||
|
|
||
|
This PowerShell script writes 'Hands Off' in BIG letters.
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
```powershell
|
||
|
/home/markus/Repos/PowerShell/scripts/write-hands-off.ps1 [<CommonParameters>]
|
||
|
|
||
|
[<CommonParameters>]
|
||
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||
|
```
|
||
|
|
||
|
Example
|
||
|
-------
|
||
|
```powershell
|
||
|
PS> ./write-hands-off.ps1
|
||
|
|
||
|
```
|
||
|
|
||
|
Notes
|
||
|
-----
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
|
||
|
Related Links
|
||
|
-------------
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
|
||
|
Script Content
|
||
|
--------------
|
||
|
```powershell
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Writes 'Hands Off'
|
||
|
.DESCRIPTION
|
||
|
This PowerShell script writes 'Hands Off' in BIG letters.
|
||
|
.EXAMPLE
|
||
|
PS> ./write-hands-off.ps1
|
||
|
.LINK
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
.NOTES
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
#>
|
||
|
|
||
|
try {
|
||
|
$randomNumberGenerator = New-Object System.Random
|
||
|
while ($true) {
|
||
|
Clear-Host
|
||
|
Write-Host "`n`n"
|
||
|
& "$PSScriptRoot/write-big.ps1" " HANDS OFF"
|
||
|
Write-Host "`n`n"
|
||
|
& "$PSScriptRoot/write-big.ps1" " DO NOT TOUCH"
|
||
|
Write-Host "`n`n"
|
||
|
& "$PSScriptRoot/write-big.ps1" " MY PC"
|
||
|
[int]$x = $randomNumberGenerator.next(1, 90)
|
||
|
[int]$y = $randomNumberGenerator.next(1, 22)
|
||
|
[System.Console]::SetCursorPosition($x, $y)
|
||
|
Write-Host "🔥🔥🔥 LAST WARNING 🔥🔥🔥" -foregroundColor red
|
||
|
Start-Sleep -milliseconds 900
|
||
|
}
|
||
|
exit 0 # success
|
||
|
} catch {
|
||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|
||
|
```
|
||
|
|
||
|
*(generated by convert-ps2md.ps1 using the comment-based help of write-hands-off.ps1 as of 11/08/2024 12:34:56)*
|