mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 20:11:10 +08:00
32 lines
775 B
XML
32 lines
775 B
XML
<job id="createKeyStream">
|
|
<script language="VBScript" src="util.vbs" />
|
|
<script language="VBScript" src="regUtil.vbs" />
|
|
<script language="VBScript">
|
|
|
|
CheckZeroArgs("usage: cscript regCreateKey.wsf architecture")
|
|
DetermineOSArchitecture()
|
|
LoadRegistryImplementationByOSArchitecture()
|
|
|
|
Do While Not stdin.AtEndOfLine
|
|
strLine = stdin.ReadLine()
|
|
strLine = unescape(trim(strLine))
|
|
|
|
If IsNull(strLine) or strLine = "" Then
|
|
WScript.Quit 25127
|
|
End If
|
|
|
|
ParseHiveAndSubKey strLine, constHive, strSubKey
|
|
|
|
if IsNull(constHive) Then
|
|
WriteLineErr "unsupported hive " & strLine
|
|
WScript.Quit 25122
|
|
End If
|
|
|
|
Result = CreateKey(constHive, strSubKey)
|
|
|
|
If Not Result = 0 Then
|
|
WScript.Quit Result
|
|
End If
|
|
Loop
|
|
</script>
|
|
</job> |