Remarks in .REG file possible?

G

Guest

I am creating a .REG file by hand and want to include in the file notes on
what each key/value does. Is it possible to have REMARKs in a .REG
(Registry) file? This is the same concept as the REM command in a DOS batch
file.

TIA,
roshan
 
K

Kristan Kenney

Yes, to do this simply place a semicolon before the comment, see the example
below for details.


Windows Registry Editor Version 5.00

; Below lists the run-on-startup objects for the current account

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
"msnmsgr"="\"C:\\Program Files\\MSN Messenger\\msnmsgr.exe\" /background"



I hope this information is helpful, have a nice day! :)
 
G

Guest

Perfect! Thank you very much.

roshan

Kristan Kenney said:
Yes, to do this simply place a semicolon before the comment, see the example
below for details.


Windows Registry Editor Version 5.00

; Below lists the run-on-startup objects for the current account

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
"msnmsgr"="\"C:\\Program Files\\MSN Messenger\\msnmsgr.exe\" /background"



I hope this information is helpful, have a nice day! :)

--
Kristan M. Kenney
http://www.digitalfive.org

This post is provided "AS IS" with no warranties, and confers no rights.


Roshan Q said:
I am creating a .REG file by hand and want to include in the file notes on
what each key/value does. Is it possible to have REMARKs in a .REG
(Registry) file? This is the same concept as the REM command in a DOS
batch
file.

TIA,
roshan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top