Added list-current-timezone.ps1

This commit is contained in:
Markus Fleschutz 2021-01-12 14:48:59 +01:00
parent 92634a3cf9
commit c28dec1f91
4 changed files with 20 additions and 3 deletions

View File

@ -23,6 +23,7 @@ inspect-exe.ps1, prints basic information of the given executable file
list-anagrams.ps1, lists all anagrams of the given word
list-automatic-variables.ps1, lists PowerShell automatic variables
list-empty-dirs.ps1, lists empty subfolders in a directory tree
list-current-timezone.ps1, lists the current time zone details
list-files.ps1, lists all files in the given folder and also in every subfolder
list-formatted.ps1, lists the current working directory formatted in columns
list-fritzbox-calls.ps1, lists the FRITZ!Box calls

1 Filename Description
23 list-anagrams.ps1 lists all anagrams of the given word
24 list-automatic-variables.ps1 lists PowerShell automatic variables
25 list-empty-dirs.ps1 lists empty subfolders in a directory tree
26 list-current-timezone.ps1 lists the current time zone details
27 list-files.ps1 lists all files in the given folder and also in every subfolder
28 list-formatted.ps1 lists the current working directory formatted in columns
29 list-fritzbox-calls.ps1 lists the FRITZ!Box calls

View File

@ -30,6 +30,7 @@ The following PowerShell scripts can be found in the [Scripts/](Scripts/) subfol
* [inspect-exe.ps1](Scripts/inspect-exe.ps1) - prints basic information of the given executable file
* [list-anagrams.ps1](Scripts/list-anagrams.ps1) - lists all anagrams of the given word
* [list-automatic-variables.ps1](Scripts/list-automatic-variables.ps1) - lists PowerShell automatic variables
* [list-current-timezone.ps1](Scripts/list-current-timezone.ps1) - lists the current time zone details
* [list-empty-dirs.ps1](Scripts/list-empty-dirs.ps1) - lists empty subfolders in a directory tree
* [list-installed-software.ps1](Scripts/list-installed-software.ps1) - lists the installed software
* [list-files.ps1](Scripts/list-files.ps1) - lists all files in the given folder and also in every subfolder

View File

@ -0,0 +1,15 @@
#!/snap/bin/powershell
<#
.SYNTAX ./list-current-timezone.ps1
.DESCRIPTION lists the current time zone details
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
get-timezone
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}