Subscribe to Windows IT Pro
March 23, 2006 12:00 AM

JSI Tip 10305. How can I write the registry using Vbscript?

Windows IT Pro
InstantDoc ID #85512
Rating: (1)

To write the registry in Vbscript, use the RegWrite Method.

As a simple demonstration, I have scripted Srvcomment.vbs to update the local computer's description.

Srvcomment.vbs contains:

Dim WshShell, KV, Desc, oArgs
Set WshShell = WScript.CreateObject("WScript.Shell")
Set oArgs = WScript.Arguments
if oArgs.Count  1 Then Wscript.Echo "Syntax: cscript //nologo Srvcomment.vbs ""D e s c r i p t i o n"""
if oArgs.Count  1 Then Wscript.Quit
Desc = oArgs(0)
KV = "HKLM\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters\srvcomment"
WshShell.RegWrite KV, Desc, "REG_SZ"



Related Content:

ARTICLE TOOLS

Comments
    There are no comments to display. Be the first one!
You must log on before posting a comment.

Are you a new visitor? Register Here

advertisement

advertisement

Windows is a trademark of the Microsoft group of companies. Windows IT Pro is used by Penton Media Inc. under license from owner.