Apply UK Locale using PnP PowerShell (Classic)
Connect-PnPOnline https://tenant.sharepoint.com/sites/yoursite | |
$LocaleId = 2057 # UK | |
$TimeZoneId = 2 # London | |
$web = Get-PnPWeb -Includes RegionalSettings,RegionalSettings.TimeZones | |
$timeZone = $web.RegionalSettings.TimeZones | Where-Object {$_.Id -eq $TimeZoneId} | |
$web.RegionalSettings.LocaleId = $LocaleId | |
$web.RegionalSettings.TimeZone = $timeZone | |
$web.Update() | |
Invoke-PnPQuery |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment