mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 15:33:15 +01:00
Added write-location.ps1
This commit is contained in:
parent
c53f608eba
commit
0cb4a67fd0
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Writes the current date
|
Writes the current date
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script determines and writes the current date.
|
This PowerShell script determines and writes the current date in US format.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./write-date
|
PS> ./write-date
|
||||||
📅12/25/2022
|
📅12/25/2022
|
||||||
|
28
scripts/write-location.ps1
Normal file
28
scripts/write-location.ps1
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Writes the current location
|
||||||
|
.DESCRIPTION
|
||||||
|
This PowerShell script determines the location and writes it to the console.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./write-location.ps1
|
||||||
|
📍47.7278°,10.3192° near 87435 Kempten in Bavaria, Germany.
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz | License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
try {
|
||||||
|
$location = (Invoke-WebRequest -URI http://ifconfig.co/json -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
|
||||||
|
$lat = $location.latitude
|
||||||
|
$long = $location.longitude
|
||||||
|
$city = $location.city
|
||||||
|
$zip = $location.zip_code
|
||||||
|
$region = $location.region_name
|
||||||
|
$country = $location.country
|
||||||
|
Write-Output "📍$lat°,$long° near $zip $city in $region, $country."
|
||||||
|
exit 0 # success
|
||||||
|
} catch {
|
||||||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Writes the current time
|
Writes the current time
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script queries the current time and writes it to the console.
|
This PowerShell script queries the current time and writes it in US format to the console.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./write-time.ps1
|
PS> ./write-time.ps1
|
||||||
🕒7:20 PM
|
🕒7:20 PM
|
||||||
|
Loading…
Reference in New Issue
Block a user