mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-14 06:59:12 +02:00
4 lines
277 B
PowerShell
4 lines
277 B
PowerShell
|
$env:TZ = [Windows.Globalization.Calendar,Windows.Globalization,ContentType=WindowsRuntime]::New().GetTimeZone()
|
||
|
[Environment]::SetEnvironmentVariable('TZ', "$env:TZ", 'Process')
|
||
|
[Environment]::SetEnvironmentVariable('TZ', "$env:TZ", 'User')
|
||
|
Write-Host "Host timezone: $env:TZ"
|