Windows脚本编程与管理技术全解析
1. 基础操作与对象属性
在Windows脚本编程中,有许多基础操作和对象属性是我们需要了解的。例如,使用 WshShell 对象可以进行多种操作:
- 启动程序:通过 WshShell 对象的 launching programs 方法可以启动程序,示例代码如下:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad.exe"
- 读取注册表:使用
WshShell对象的reading registry方法读取注册表,示例如下:
Set WshShell = WScript.CreateObject("WScript.Shell")
strValue = WshShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Run\SomeKey")
- 读取文本文件:可以使用
ReadLine方法逐行读取文本文件,示例代码:
Set objFSO = C
超级会员免费看
订阅专栏 解锁全文
2万+

被折叠的 条评论
为什么被折叠?



