PowerShell / Azure VM - Move preferred language to the top of the list -
i have issue date time format on azure vm changes this:
mm/dd/yyyy
if move language english (australia) top of list, date time format changes this:
dd/mm/yyyy
which want.
i need in powershell automated.
if have logged in , want change timezone on vm, use script change time zone in windows 7 or windows 8 (powershell)
if want change timezone when creating new azure vm, add new azurevmconfig using add-azureprovisioningconfig, in set timezone parameter, example:
new-azurevmconfig -name "domainvm" -instancesize small -imagename $img ` | add-azureprovisioningconfig -windows –password $password -timezone <your time zone> ` | new-azurevm -servicename $servicename
Comments
Post a Comment