PowerTip: Create New Item in Registry with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to create an entry in the Windows registry structure.

Hey, Scripting Guy! Question How do I create an entry in the Windows registry with Windows PowerShell?

Hey, Scripting Guy! Answer Use the New-ItemProperty cmdlet to add the information you need.
          For example, the following command makes a new name called StartMeUp with a value of Runit.exe 
          under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run:

$RegistryPath=”HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Run\"

$Name=”StartMeUp”

$Value=”Runit.exe”

NEW-ITEMPROPERTY $RegistryPath -Name $Name -Value $Value

0 comments

Discussion is closed.

Feedback usabilla icon