mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update write-motd.ps1
This commit is contained in:
parent
ead2e57075
commit
682329f09d
@ -1,18 +1,20 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Writes the message of the day
|
Writes the message of the day
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script writes the message of the day (MOTD).
|
This PowerShell script writes the message of the day (MOTD).
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./write-motd
|
PS> ./write-motd
|
||||||
.NOTES
|
|
||||||
Author: Markus Fleschutz / License: CC0
|
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param ()
|
param ()
|
||||||
|
|
||||||
# Retrieve information:
|
# Retrieve information:
|
||||||
|
[system.threading.thread]::currentThread.currentCulture = [system.globalization.cultureInfo]"en-US"
|
||||||
$TimeZone = (Get-TimeZone).id
|
$TimeZone = (Get-TimeZone).id
|
||||||
$UserName = [Environment]::USERNAME
|
$UserName = [Environment]::USERNAME
|
||||||
$ComputerName = [System.Net.Dns]::GetHostName().ToLower()
|
$ComputerName = [System.Net.Dns]::GetHostName().ToLower()
|
||||||
@ -92,3 +94,4 @@ Write-Host " System Volume: " -NoNewline -ForegroundColor Red
|
|||||||
Write-Host "$Disk_Size" -ForegroundColor Cyan
|
Write-Host "$Disk_Size" -ForegroundColor Cyan
|
||||||
Write-Host " 'VEzjt:;;z>*`` " -ForegroundColor Yellow
|
Write-Host " 'VEzjt:;;z>*`` " -ForegroundColor Yellow
|
||||||
[Environment]::NewLine
|
[Environment]::NewLine
|
||||||
|
exit 0 # success
|
||||||
|
Loading…
Reference in New Issue
Block a user