With PowerShell, we are able to do nearly something. Amongst different issues, we are able to use the Home windows Registry to customise graphical components, reminiscent of altering the assist telephone quantity displayed within the Management Panel. On this weblog publish, I’ll present modify the assist quantity and likewise display just a few extra examples.
Let’s dive in.
You already know that we are able to entry the Home windows Registry utilizing PowerShell drives. This characteristic permits us to configure nearly something on Home windows methods.
Beneath is the PowerShell code used to set or change the assist quantity proven in PC Data.
$regPath = "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation"
$phoneNumber = "0800-1234567"
If (-Not (Take a look at-Path $regPath)) Out-Null
Set-ItemProperty -Path $regPath -Title "SupportPhone" -Worth $phoneNumber
So, what’s going to occur whenever you run this code?

Mission completed.
Listed here are just a few extra examples of add entries to PC Data.
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation" -Title "Producer" -Worth "My Firm"
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation" -Title "Mannequin" -Worth "Workstation 2026"
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation" -Title "SupportURL" -Worth "https://assist.instance.com"
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation" -Title "SupportPhone" -Worth "+43 123 456789"
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionOEMInformation" -Title "SupportHours" -Worth "Mo-Fr 08:00-17:00"
Revealed by

