Hi,
Newbee to vbscript juste wanna know how to create the following regkey
on local computer

HKEY_CURRENT_ROOT\CLSID\{ProgId}\Programmable

Thks for help :)

Re: Adding regkey by Steven

Steven
Mon Feb 21 06:10:27 CST 2005

MSDN: Manipulating the system registry
http://surl.co.uk/?1204

Original URL:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/ht
ml/wsconmanipulatingsystemregistryprogrammatically.asp

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"Franck" <wesley.saris@gmail.com> wrote in message
news:1108978062.269603.179340@o13g2000cwo.googlegroups.com...
> Hi,
> Newbee to vbscript juste wanna know how to create the following regkey
> on local computer
>
> HKEY_CURRENT_ROOT\CLSID\{ProgId}\Programmable
>
> Thks for help :)
>



Re: Adding regkey by Steve

Steve
Mon Feb 21 09:56:23 CST 2005

Hi Franck,

If it doesn't have to be vbscript, there are a couple of ways you can do
this:

1) Create a .REG file with the keys values you need then use regedit to
import it. For example, if your file is called programmable.reg, just do
this regedit /s programmable.reg

2) Use the reg.exe from the command line. i.e.
REG ADD HKCR\CLSID\{ProgID}\Programmable

3) Use a third-part tool. My company has developed a tool called Registry
Master which allows you to remotely make changes to the registry to multiple
machines very quickly and easily. It can be downloaded from our website at
http://www.scriptmation.com.

--
Steve Seguis - MCSE, MVP Windows Server, SCJP
SCRIPTMATION, INC.
Automating the Enterprise
http://www.scriptmation.com


"Franck" <wesley.saris@gmail.com> wrote in message
news:1108978062.269603.179340@o13g2000cwo.googlegroups.com...
> Hi,
> Newbee to vbscript juste wanna know how to create the following regkey
> on local computer
>
> HKEY_CURRENT_ROOT\CLSID\{ProgId}\Programmable
>
> Thks for help :)
>