Hi all,
I need to modify the international settings like decimal, days ecc...during autopilot process...
I create a powershell script like this
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name Locale -Value 00000410
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name LocaleName -Value it-IT
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sCurrency -Value €
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sdecimal -Value "."
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sLanguage -Value ITA
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sLongDate -Value "dddd d MMMM yyyy"
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sShortDate -Value "dd/MM/yyyy"
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sTimeFormat -Value "HH:mm:ss"
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name sShortTime -Value "HH:mm"
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iCountry -Value 39
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iCurrency -Value 3
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name idate -Value 1
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iFirstDayOfWeek -Value 0
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iFirstDayOfYear -Value 2
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iMeasure -Value 0
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iNegCurr -Value 8
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iPaperSize -Value 9
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iTime -Value 1
Set-ItemProperty -Path "HKCU:\Control Panel\International" -Name iTLZero -Value 1
And created win32 application
Even if seems to deploy the script and the detection method works the registry keys are not changed..
Any idea ora other methor to achieve the goal?
Thanks
