Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How vbscript writes registry scripts

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces vbscript how to write registry scripts, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.

WScript.Echo "Enabling Kerberos Logging..."

Const HKEY_LOCAL_MACHINE = & H80000002

StrComputer = "."

Set StdOut = WScript.StdOut

Set oReg=GetObject ("winmgmts: {impersonationLevel=impersonate}!\" & _

StrComputer & "\ root\ default:StdRegProv")

StrKeyPath = "SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Run"

'=

'create the location of the item

OReg.CreateKey HKEY_LOCAL_MACHINE,strKeyPath

'start the type of project that is created

'= = 1'REG_SZ string value = =

StrValueName = "SysExplr"

'create the name of the string

StrValue = "d:\\ Herosoft\\ HeroV8\ SYSEXPLR.EXE"

'create data for a string

OReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue

'the type string created

'= = 2.REG_DWORD DWORD value = =

StrValueName = "DWORD ValueName"

'create a DWORD name

DwValue = 82

'create DWORD data

OReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue

'the created type DWORD

'= = 3.REG_EXPAND_SZ extensible string value = =

StrValueName = "Expanded String ValueName"

'create an extended string name

StrValue = "% PATHEXT%"

'string data

OReg.SetExpandedStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue

'the type created is an extended string

'= = 4.REG_MULTI_SZ multi-string value = =

StrValueName = "Multi String ValueName"

'create multiple string names

ArrStringValues = Array ("first string", "second string", "third string", "fourth string")

'create a multistring value

OReg.SetMultiStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,arrStringValues

'the created type is a multi-string value

'=

OReg.DeleteKey HKEY_LOCAL_MACHINE, strKeyPath

StrKeyPath = "SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Run"

OReg.CreateKey HKEY_LOCAL_MACHINE,strKeyPath

WScript.Echo "- = [Complete!] = -"

Thank you for reading this article carefully. I hope the article "vbscript how to write the Registry script" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report