Set Date format on Windows devices
  • 17 May 2024
  • 1 読む分
  • PDF

Set Date format on Windows devices

  • PDF

The content is currently unavailable in Ja - 日本語. You are viewing the default English version.
Article Summary

The following PowerShell script helps the IT Admins to change the date format on their managed Windows devices.

  1. Create a file on your desktop, for example, set_date_format.ps1 and open it in a text editor like notepad++

  2. Copy the contents below to the file or click here to download the file.

    1. sShortDate’ key is to set Short date format, eg. D/M/yy (5/7/22)

    2. sLongDate’ key is to set Long date format, eg. dddd, MMMM d, yyyy (Friday, January 5, 2024).

      $dateFormat = 'MM/dd/yyyy' 
      Write-Host "Starting script execution..." 
      try{ 
          $status = New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS 
          Function Set-DateFormat($sid) 
          { 
              if(Test-Path "HKU:\${sid}") 
              { 
                  Write-Host "updating date format for user:",$sid 
                  Set-ItemProperty -path "HKU:\${sid}\Control Panel\International\" -name 'sShortDate' -value $dateFormat 
              } 
      
          } 
          $userDetails=Get-wmiobject win32_useraccount | where-object{$_.status -eq 'ok'} 
          foreach($user in $userDetails){ 
              $sid=$user.SID 
              Set-DateFormat($sid) 
          } 
      } 
      catch 
      { 
          Write-Output "Error occured while running script -> ",$_.Exception.Message 
      } 
      Write-Output "Script execution completed successfully!" 
  3. Follow our guide to upload & publish the PowerShell script using Scalefusion Dashboard.

  4. Please make sure to select the Execution Policy as below

    a. Execution Level : Device
    b. Execution Context : Enrolled User

The specified date format is applied only to the user accounts logged in while executing the script.

Please note that to use the PowerShell scripts, the Scalefusion MDM Agent Application must be installed on the device(s). Please follow our guide to publish and install the Scalefusion MDM Agent Application.

Notes:
  1. The scripts and their contents are sourced from various albeit authenticated Microsoft sources and forums.

  2. Please validate the scripts on a test machine before deploying them on all your managed devices.

  3. Scalefusion has tested these scripts, however, Scalefusion will not be responsible for any loss of data or system malfunction that may arise due to the incorrect usage of these scripts.


この記事は役に立ちましたか?