OK. For information to others, here is the text equivalent of the file.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\RP\Data]
"OutputDir"="D:\\Output"
"DataPath"="D:\\CurrentBuild\\Data"
Using the information from this Tutorial
Registry Editing - Vista Forums
@ECHO OFF
REG ADD "HKLM\SOFTWARE\RP\Data" /v "OutputDir" /t REG_SZ /d "D:\\Output" /f
REG ADD "HKLM\SOFTWARE\RP\Data" /v "DataPath" /t REG_SZ /d "D:\\CurrentBuild\\Data" /f
Save the above as a batch file (with a
.bat extension). Right click on it and select
Run as administrator.