Change Registry Value Command Line

12,075
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup" /v SourcePath /t REG_SZ /d "X:\\"

Add /f if you want to skip prompting for a possible overwrite.

Share:
12,075

Related videos on Youtube

Nixphoe
Author by

Nixphoe

Updated on September 18, 2022

Comments

  • Nixphoe
    Nixphoe over 1 year

    Is there a way to set a registry value with a command line without using a .reg file to import it?

    I've looked over the reg and regedit.exe command line options, and it doesn't look like there's a way to do something like this...

    reg update [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]
    "SourcePath"="X:\\"
    
  • Nixphoe
    Nixphoe over 12 years
    Thanks, guess I didn't look close enough at that value