Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: REG ADD Problem  (Read 2230 times)

0 Members and 1 Guest are viewing this topic.

feras

    Topic Starter


    Beginner

    Thanked: 1
  • Experience: Experienced
  • OS: Linux variant
REG ADD Problem
« on: March 17, 2009, 10:03:56 AM »
Hello

you know that we use the command reg add to add keys or values to the registry

sometimes you need to ad a key with a long name and more than section
like this

Code: [Select]
reg add HKLM\software\Good morning
cmd doesn't accept that

what I have to do?

thanks

Dias de verano

  • Guest
Re: REG ADD Problem
« Reply #1 on: March 17, 2009, 10:11:48 AM »
use quote marks if key or data contains any spaces, like this

Code: [Select]
REG ADD "HKCU\Software\Microsoft\Windows Mail\Mail" /v "Font Size" /t REG_DWORD /d 0x00000009 /f


feras

    Topic Starter


    Beginner

    Thanked: 1
  • Experience: Experienced
  • OS: Linux variant
Re: REG ADD Problem
« Reply #2 on: March 18, 2009, 08:06:39 AM »
Thanks very very much  :)