├── .gitignore ├── .images ├── Set-timezone.PNG ├── Set-timezone_select.PNG ├── intune_scripts_screenshot.jpg ├── original.PNG ├── win10_version.png ├── win11_oobe_wallpaper.png ├── win11_tz_worldclock.png └── win11_version.png ├── CHANGELOG.md ├── DISCLAIMER.md ├── LICENSE ├── README.md ├── TimeZoneUI.ps1 ├── TimeZoneUI_Win10.ps1 ├── TimeZoneUI_Win11.ps1 └── colors.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/Set-timezone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/Set-timezone.PNG -------------------------------------------------------------------------------- /.images/Set-timezone_select.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/Set-timezone_select.PNG -------------------------------------------------------------------------------- /.images/intune_scripts_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/intune_scripts_screenshot.jpg -------------------------------------------------------------------------------- /.images/original.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/original.PNG -------------------------------------------------------------------------------- /.images/win10_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/win10_version.png -------------------------------------------------------------------------------- /.images/win11_oobe_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/win11_oobe_wallpaper.png -------------------------------------------------------------------------------- /.images/win11_tz_worldclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/win11_tz_worldclock.png -------------------------------------------------------------------------------- /.images/win11_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/.images/win11_version.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/README.md -------------------------------------------------------------------------------- /TimeZoneUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/TimeZoneUI.ps1 -------------------------------------------------------------------------------- /TimeZoneUI_Win10.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/TimeZoneUI_Win10.ps1 -------------------------------------------------------------------------------- /TimeZoneUI_Win11.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/TimeZoneUI_Win11.ps1 -------------------------------------------------------------------------------- /colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellCrack/PSAutopilotTimeZoneSelectorUI/HEAD/colors.txt --------------------------------------------------------------------------------