Jump to content

VBS and BartPE


Recommended Posts

Hi Everyone;

(EDIT: 2006-04-25 17:20- Missed a considerable amount. If you used the last versions, 1.0, or 1.2, they cant do very much at all! 1.3 below.)

(EDIT 2: 00:00 that same night - after testing a bit more, (and chasing the bug thinking it was the pe inf file, but in reality was the script i was testing with) one final change. v1.4 now.

VBS Support in BART PE tested on v3.1.10a

After much work researching the keys required for brute force registration, here is my first plugin to enable vbs support in bart pe. Note it does not require in session registration of the dlls. (If you find that it does, please contact me, as I'll have to add them!)

Note: its big. Only tested with windows 2003 SP1, i use an SDI image to have complete flexibility in my pe session. Also note that its hard coded to X:. I dont know if the dlls reading these keys will support the 0x2 EXPAND_SZ data type, so to get my project off the ground i've left them as you see them here. If I ever get round to looking at it again, I'll post you all a fix!!

[Version]
Signature= "$Windows NT$"

[PEBuilder]
Name="VBS functionality"
Enable=1
; version 1.4
; Information taken from:
; http://www.gfi.com/nsm/scripting/wsh/
; c:\windows\inf\wsh.inf
; Greets to all those who share information like this freely!
; get help from thor attt paradise dottt net dottt nz

[SourceDisksFiles]
wscript.exe=2
cscript.exe=2
wshom.ocx=2
jscript.dll=2
vbscript.dll=2
wshext.dll=2
scrobj.dll=2
scrrun.dll=2
cmdlib.wsc=2
stdole.tlb=2
stdole2.tlb=2
stdole32.tlb=2
; Optional and unsure
; mshtml.dll=2

[Software.DelReg]
0x1,"Microsoft\Windows\CurrentVersion\Setup\OC Manager\Subcomponents","wsh_core"

[Software.AddReg]
0x1,"Microsoft\Windows Script Host\Settings","DisplayLogo","0"
0x1,"Microsoft\Windows Script Host\Settings","ActiveDebugging","1"
0x1,"Microsoft\Windows Script Host\Settings","SilentTerminate","0"
0x1,"Microsoft\Windows Script Host\Settings","UseWINSAFER","1"

0x2,"Microsoft\Windows Scripting Host\Locations","CScript","%SystemRoot%\System32\cscript.exe"
0x2,"Microsoft\Windows Scripting Host\Locations","WScript","%SystemRoot%\System32\wscript.exe"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.JS","","JavaScript Script File"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.JS","DefaultIcon","%SystemRoot%\System32\wscript.exe,3"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.JS","EngineID","JavaScript"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.JS","ScriptID","JSFile"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.VBS","","VBScript Script File"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.VBS","DefaultIcon","%SystemRoot%\System32\wscript.exe,2"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.VBS","EngineID","VBScript"
0x1,"Microsoft\Windows Scripting Host\Script Extensions\.VBS","ScriptID","VBSFile"
0x1,"Microsoft\Windows\CurrentVersion\Shell Extensions\Approved","{60254CA5-953B-11CF-8C96-00AA00B8708C}","Shell extensions for Windows Script Host"

0x1,"Classes\CLSID\{60254CA5-953B-11CF-8C96-00AA00B8708C}","","Shell Extension For Windows Script Host"
0x1,"Classes\CLSID\{60254CA5-953B-11CF-8C96-00AA00B8708C}\InProcServer32","","X:\i386\system32\wshext.dll"
0x1,"Classes\CLSID\{60254CA5-953B-11CF-8C96-00AA00B8708C}\InProcServer32","ThreadingModel","Apartment"

; .WSH
0x1,"Classes\.WSH","","WSHFile"
0x1,"Classes\WSHFile","","Windows Script Host Settings File"
0x2,"Classes\WSHFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4800"
0x1,"Classes\WSHFile","IsShortcut","Yes"
0x2,"Classes\WSHFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,1"
0x1,"Classes\WSHFile\Shell\Open","","&Open"
0x2,"Classes\WSHFile\Shell\Open\Command","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\WSHFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\WSHFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\WSHFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\WSHFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .VBS
0x1,"Classes\.VBS","","VBSFile"
0x1,"Classes\VBSFile","","VBScript Script File"
0x2,"Classes\VBSFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4802"
0x2,"Classes\VBSFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,2"
0x1,"Classes\VBSFile\ScriptEngine","","VBScript"
0x1,"Classes\VBSFile\Shell\Open","","&Open"
0x2,"Classes\VBSFile\Shell\Open\Command","","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\VBSFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\VBSFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\VBSFile\Shell\Edit","","&Edit"
0x2,"Classes\VBSFile\Shell\Edit\Command","","%SystemRoot%\System32\Notepad.exe %1"
0x1,"Classes\VBSFile\Shell\Print","","&Print"
0x2,"Classes\VBSFile\Shell\Print\Command","","%SystemRoot%\System32\Notepad.exe /p %1"
0x1,"Classes\VBSFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\VBSFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .VBE
0x1,"Classes\.VBE","","VBEFile"
0x1,"Classes\VBEFile","","VBScript Encoded Script File"
0x2,"Classes\VBEFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4803"
0x2,"Classes\VBEFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,2"
0x1,"Classes\VBEFile\ScriptEngine","","VBScript.Encode"
0x1,"Classes\VBEFile\Shell\Open","","&Open"
0x2,"Classes\VBEFile\Shell\Open\Command","","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\VBEFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\VBEFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\VBEFile\Shell\Edit","","&Edit"
0x2,"Classes\VBEFile\Shell\Edit\Command","","%SystemRoot%\System32\Notepad.exe %1"
0x1,"Classes\VBEFile\Shell\Print","","&Print"
0x2,"Classes\VBEFile\Shell\Print\Command","","%SystemRoot%\System32\Notepad.exe /p %1"
0x1,"Classes\VBEFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\VBEFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .JS
0x1,"Classes\.JS","","JSFile"
0x1,"Classes\JSFile","","JScript Script File"
0x2,"Classes\JSFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4804"
0x2,"Classes\JSFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,3"
0x1,"Classes\JSFile\ScriptEngine","","JScript"
0x1,"Classes\JSFile\Shell\Open","","&Open"
0x2,"Classes\JSFile\Shell\Open\Command","","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\JSFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\JSFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\JSFile\Shell\Edit","","&Edit"
0x2,"Classes\JSFile\Shell\Edit\Command","","%SystemRoot%\System32\Notepad.exe %1"
0x1,"Classes\JSFile\Shell\Print","","&Print"
0x2,"Classes\JSFile\Shell\Print\Command","","%SystemRoot%\System32\Notepad.exe /p %1"
0x1,"Classes\JSFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\JSFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .JSE
0x1,"Classes\.JSE","","JSEFile"
0x1,"Classes\JSEFile","","JScript Encoded Script File"
0x2,"Classes\JSEFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4805"
0x2,"Classes\JSEFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,3"
0x1,"Classes\JSEFile\ScriptEngine","","JScript.Encode"
0x1,"Classes\JSEFile\Shell\Open","","&Open"
0x2,"Classes\JSEFile\Shell\Open\Command","","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\JSEFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\JSEFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\JSEFile\Shell\Edit","","&Edit"
0x2,"Classes\JSEFile\Shell\Edit\Command","","%SystemRoot%\System32\Notepad.exe %1"
0x1,"Classes\JSEFile\Shell\Print","","&Print"
0x2,"Classes\JSEFile\Shell\Print\Command","","%SystemRoot%\System32\Notepad.exe /p %1"
0x1,"Classes\JSEFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\JSEFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .WSF
0x1,"Classes\.WSF","","WSFFile"
0x1,"Classes\WSFFile","","Windows Script File"
0x2,"Classes\WSFFile","FriendlyTypeName","@%SystemRoot%\System32\wshext.dll,-4801"
0x2,"Classes\WSFFile\DefaultIcon","","%SystemRoot%\System32\WScript.exe,2"
0x1,"Classes\WSFFile\Shell\Open","","&Open"
0x2,"Classes\WSFFile\Shell\Open\Command","","%SystemRoot%\System32\WScript.exe ""%1"" %*"
0x1,"Classes\WSFFile\Shell\Open2","","Open &with Command Prompt"
0x2,"Classes\WSFFile\Shell\Open2\Command","","%SystemRoot%\System32\CScript.exe ""%1"" %*"
0x1,"Classes\WSFFile\Shell\Edit","","&Edit"
0x2,"Classes\WSFFile\Shell\Edit\Command","","%SystemRoot%\System32\Notepad.exe %1"
0x1,"Classes\WSFFile\Shell\Print","","&Print"
0x2,"Classes\WSFFile\Shell\Print\Command","","%SystemRoot%\System32\Notepad.exe /p %1"
0x1,"Classes\WSFFile\ShellEx\PropertySheetHandlers\WSHProps","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"
0x1,"Classes\WSFFile\ShellEx\DropHandler","","{60254CA5-953B-11CF-8C96-00AA00B8708C}"

; .WSC (Patch)
0x2,"Classes\scriptletfile","FriendlyTypeName","@%SystemRoot%\System32\scrobj.dll,-8192"
0x1,"Classes\scriptletfile","","Windows Script Component"
0x2,"Classes\scriptletfile","FriendlyTypeName","%SystemRoot%\System32\scrobj.dll,-8192"
0x2,"Classes\scriptletfile\AutoRegister","","%SystemRoot%\System32\scrobj.dll"
0x1,"Classes\scriptletfile\CLSID","","{06290BD2-48AA-11D2-8432-006008C3FBFC}"
0x2,"Classes\scriptletfile\DefaultIcon","","%systemroot%\system32\scrobj.dll,0"
0x2,"Classes\scriptletfile\ScriptHostEncode","","{06290BD4-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\scriptletfile\Shell\Generate Typelib","","&Generate Type Library"
0x2,"Classes\scriptletfile\Shell\Generate Typelib\command","","%systemroot%\system32\RUNDLL32.EXE %systemroot%\system32\scrobj.dll,GenerateTypeLib %1"
0x1,"Classes\scriptletfile\Shell\Open","","&Open"
0x2,"Classes\scriptletfile\Shell\Open\command","","%systemroot%\system32\NOTEPAD.EXE %1"
0x1,"Classes\scriptletfile\Shell\Register","","&Register"
0x2,"Classes\scriptletfile\Shell\Register\command","","%systemroot%\system32\REGSVR32.EXE /i:%1 %systemroot%\system32\scrobj.dll"
0x1,"Classes\scriptletfile\Shell\Unregister","","&Unregister"
0x2,"Classes\scriptletfile\Shell\Unregister\command","","%systemroot%\system32\REGSVR32.EXE" /u /n /i:%1 %systemroot%\system32\scrobj.dll"

; Brute Force Registrations
0x1,"Classes\JScript","","JScript Language"
0x1,"Classes\JScript\CLSID","","{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}"
0x1,"Classes\JScript\OLEScript","",""
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}","","JScript Language"
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories","",""
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{F0B7A1A1-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{F0B7A1A2-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32","","X:\i386\system32\jscript.dll"
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32""ThreadingModel","Both"
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\OLEScript","",""
0x1,"Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}\ProgID","","JScript"

0x1,"Classes\JScript Author","","JScript Language Authoring"
0x1,"Classes\JScript Author\CLSID","","{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}"
0x1,"Classes\JScript Author\OLEScript","",""
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}","","JScript Language Authoring"
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories","",""
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{0AEE2A92-BCBB-11D0-8C72-00C04FC2B085","",""
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32","","X:\i386\system32\jscript.dll"
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\OLEScript","",""
0x1,"Classes\CLSID\{f414c261-6ac0-11cf-b6d1-00aa00bbbb58}\ProgID","","JScript Author"

0x1,"Classes\JScript.Encode","","JScript Language Encoding"
0x1,"Classes\JScript.Encode\CLSID","","{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}"
0x1,"Classes\JScript.Encode\OLEScript","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}","","JScript Language Encoding"
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{F0B7A1A1-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{F0B7A1A2-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\Implemented Categories\{F0B7A1A3-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32","","X:\i386\system32\jscript.dll"
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\OLEScript","",""
0x1,"Classes\CLSID\{f414c262-6ac0-11cf-b6d1-00aa00bbbb58}\ProgID","","JScript.Encode"

0x1,"Classes\WScript.Network","","Windows Script Host Network Object"
0x1,"Classes\WScript.Network\CLSID","","{093FF999-1EA0-4079-9525-9614C3504B74}"
0x1,"Classes\WScript.Network\CurVer","","WScript.Network.1"
0x1,"Classes\WScript.Network.1","","Windows Script Host Network Object"
0x1,"Classes\WScript.Network.1\CLSID","","{093FF999-1EA0-4079-9525-9614C3504B74}"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}","","Windows Script Host Network Object"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\Implemented Categories","",""
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\Implemented Categories\{40FC6ED5-2438-11CF-A3DB-080036F12502","",""
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\InProcServer32","","X:\i386\system32\wshom.ocx"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\InProcServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\ProgID","","WScript.Network.1"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\Programmable","",""
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\TypeLib","","{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
0x1,"Classes\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\VersionIndependentProgID","","WScript.Network"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}","","Windows Script Host Network Object"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\Implemented Categories","",""
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\Implemented Categories\{40FC6ED5-2438-11CF-A3DB-080036F12502","",""
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\InProcServer32","","X:\i386\system32\wshom.ocx"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\InProcServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\ProgID","","WScript.Network.1"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\Programmable","",""
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\TypeLib","","{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
0x1,"Classes\CLSID\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\VersionIndependentProgID","","WScript.Network"

0x1,"Classes\WScript.Shell","","Windows Script Host Shell Object"
0x1,"Classes\WScript.Shell\CLSID","","{72C24DD5-D70A-438B-8A42-98424B88AFB8}"
0x1,"Classes\WScript.Shell\CurVer","","WScript.Shell.1"
0x1,"Classes\WScript.Shell.1","","Windows Script Host Shell Object"
0x1,"Classes\WScript.Shell.1\CLSID","","{72C24DD5-D70A-438B-8A42-98424B88AFB8}"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}","","Windows Script Host Shell Object"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\Implemented Categories","",""
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\Implemented Categories\{40FC6ED5-2438-11CF-A3DB-080036F12502","",""
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\InProcServer32","","X:\i386\system32\wshom.ocx"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\InProcServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\ProgID","","WScript.Shell.1"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\Programmable","",""
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\TypeLib","","{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
0x1,"Classes\CLSID\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\VersionIndependentProgID","","WScript.Shell"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}","","Windows Script Host Shell Object"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\Implemented Categories","",""
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\Implemented Categories\{40FC6ED5-2438-11CF-A3DB-080036F12502","",""
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\InProcServer32","","X:\i386\system32\wshom.ocx"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\InProcServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\ProgID","","WScript.Shell.1"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\Programmable","",""
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\TypeLib","","{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
0x1,"Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\VersionIndependentProgID","","WScript.Shell"

0x1,"Classes\Scriptlet.Context","","Object under which scriptlets may be created"
0x1,"Classes\Scriptlet.Context\CLSID","","{06290BD0-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD0-48AA-11D2-8432-006008C3FBFC}","","Object under which scriptlets may be created"
0x1,"Classes\CLSID\{06290BD0-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD0-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD0-48AA-11D2-8432-006008C3FBFC}\ProgID","","Scriptlet.Context"

0x1,"Classes\Microsoft.CmdLib.1","","VBS Library"
0x1,"Classes\Microsoft.CmdLib.1\CLSID","","{6D335ADF-8270-4805-A044-2B6A09476396}"
0x1,"Classes\Microsoft.CmdLib","","VBS Library"
0x1,"Classes\Microsoft.CmdLib\CLSID","","{6D335ADF-8270-4805-A044-2B6A09476396}"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}","","VBS Library"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}\ProgID","","Microsoft.CmdLib.1"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}\ScriptletURL","","file://X:\i386\system32\cmdlib.wsc"
0x1,"Classes\CLSID\{6D335ADF-8270-4805-A044-2B6A09476396}\VersionIndependentProgID","","Microsoft.CmdLib"

0x1,"Classes\Scriptlet.Behavior","","Element Behavior Handler"
0x1,"Classes\Scriptlet.Behavior\CLSID","","{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}"
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}","","Constructor for Scriptlet Behavior Handler"
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}\Implemented Categories","",""
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",""
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BDB-48AA-11D2-8432-006008C3FBFC}\ProgID","","ScriptletHandler.Behavior"

0x1,"Classes\Scriptlet.Constructor","","Constructor that allows hosts better control creating scriptlets"
0x1,"Classes\Scriptlet.Constructor\CLSID","","{06290BD1-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD1-48AA-11D2-8432-006008C3FBFC}","","Constructor that allows hosts better control creating scriptlets"
0x1,"Classes\CLSID\{06290BD1-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD1-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD1-48AA-11D2-8432-006008C3FBFC}\ProgID","","Scriptlet.Constructor"

0x1,"Classes\Scriptlet.Factory","","Factory bindable using IPersistMoniker"
0x1,"Classes\Scriptlet.Factory\CLSID","","{06290BD2-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD2-48AA-11D2-8432-006008C3FBFC}","","Factory bindable using IPersistMoniker"
0x1,"Classes\CLSID\{06290BD2-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD2-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD2-48AA-11D2-8432-006008C3FBFC}\ProgID","","Scriptlet.Factory"

0x1,"Classes\script","","Moniker to a Windows Script Component"
0x1,"Classes\script\CLSID","","{06290BD3-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD3-48AA-11D2-8432-006008C3FBFC}","","Moniker to a Windows Script Component"
0x1,"Classes\CLSID\{06290BD3-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD3-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD3-48AA-11D2-8432-006008C3FBFC}\ProgID","","script"

0x1,"Classes\Scriptlet.HostEncode","","Object for encoding scriptlets"
0x1,"Classes\Scriptlet.HostEncode\CLSID","","{06290BD4-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD4-48AA-11D2-8432-006008C3FBFC}","","Object for encoding scriptlets"
0x1,"Classes\CLSID\{06290BD4-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD4-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD4-48AA-11D2-8432-006008C3FBFC}\ProgID","","Scriptlet.HostEncode"

0x1,"Classes\Scriptlet.Constructor","","Constructor that allows hosts better control creating scriptlets"
0x1,"Classes\Scriptlet.Constructor\CLSID","","{06290BD1-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD5-48AA-11D2-8432-006008C3FBFC}","","Object for constructing type libraries for scriptlets"
0x1,"Classes\CLSID\{06290BD5-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD5-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD5-48AA-11D2-8432-006008C3FBFC}\ProgID","","Scriptlet.TypeLib"

0x1,"Classes\ScriptletHandler.Automation","","Constructor for Scriptlet Automation Handler"
0x1,"Classes\ScriptletHandler.Automation\CLSID","","{06290BD8-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}","","Constructor for Scriptlet Automation Handler"
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}\Implemented Categories","",""
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",""
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD8-48AA-11D2-8432-006008C3FBFC}\ProgID","","ScriptletHandler.Automation"

0x1,"Classes\ScriptletHandler.Event","","Constructor for Scriptlet Event Handler"
0x1,"Classes\ScriptletHandler.Event\CLSID","","{06290BD9-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}","","Constructor for Scriptlet Event Handler"
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}\Implemented Categories","",""
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}","",""
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BD9-48AA-11D2-8432-006008C3FBFC}\ProgID","","ScriptletHandler.Event"

0x1,"Classes\ScriptletHandler.ASP","","Constructor for Scriptlet ASP Handler"
0x1,"Classes\ScriptletHandler.ASP\CLSID","","{06290BDA-48AA-11D2-8432-006008C3FBFC}"
0x1,"Classes\CLSID\{06290BDA-48AA-11D2-8432-006008C3FBFC}","","Constructor for Scriptlet ASP Handler"
0x1,"Classes\CLSID\{06290BDA-48AA-11D2-8432-006008C3FBFC}\InprocServer32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\CLSID\{06290BDA-48AA-11D2-8432-006008C3FBFC}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{06290BDA-48AA-11D2-8432-006008C3FBFC}\ProgID","","ScriptletHandler.ASP"

0x1,"Classes\VBScript.Encode","","VBScript Language Encoding"
0x1,"Classes\VBScript.Encode\CLSID","","{B54F3743-5B07-11cf-A4B0-00AA004A55E8}"
0x1,"Classes\VBScript.Encode\OLEScript","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}","","VBScript Language Encoding"
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{F0B7A1A1-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{F0B7A1A2-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{F0B7A1A3-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","","X:\i386\system32\vbscript.dll"
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\OLEScript","",""
0x1,"Classes\CLSID\{B54F3743-5B07-11cf-A4B0-00AA004A55E8}\ProgID","","VBScript.Encode"

0x1,"Classes\VBScript Author","","VB Script Language Authoring"
0x1,"Classes\VBScript Author\CLSID","","{B54F3742-5B07-11cf-A4B0-00AA004A55E8}"
0x1,"Classes\VBScript Author\OLEScript","",""
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}","","VB Script Language Authoring"
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories","",""
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{0AEE2A92-BCBB-11D0-8C72-00C04FC2B085","",""
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","","X:\i386\system32\vbscript.dll"
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\OLEScript","",""
0x1,"Classes\CLSID\{B54F3742-5B07-11cf-A4B0-00AA004A55E8}\ProgID","","VBScript Author"

0x1,"Classes\VBScript","","VB Script Language"
0x1,"Classes\VBScript\CLSID","","{B54F3741-5B07-11cf-A4B0-00AA004A55E8}"
0x1,"Classes\VBScript\OLEScript","",""
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}","","VB Script Language"
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories","",""
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{F0B7A1A1-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\Implemented Categories\{F0B7A1A2-9847-11CF-8F20-00805F2CD064","",""
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","","X:\i386\system32\vbscript.dll"
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\OLEScript","",""
0x1,"Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\ProgID","","VBScript"

0x1,"Classes\VBScript.RegExp","","VBScript Regular Expression"
0x1,"Classes\VBScript.RegExp\CLSID","","{3F4DACA4-160D-11D2-A8E9-00104B365C9F}"
0x1,"Classes\VBScript.RegExp\OLEScript","",""
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}","","VBScript Regular Expression"
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\InprocServer32","","X:\i386\system32\vbscript.dll"
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\OLEScript","",""
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\TypeLib","","{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\Version","","5.5"
0x1,"Classes\CLSID\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\ProgID","","VBScript.RegExp"

0x1,"Classes\Scripting.Signer","","Scripting.Signer"
0x1,"Classes\Scripting.Signer\CLSID","","{7E48C5CF-72F6-4C84-9F43-B04B87B31243}"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}","","Scripting.Signer"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}\InprocServer32","","X:\i386\system32\wshext.dll"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}\ProgID","","Scripting.Signer"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}\TypeLib","","{95CEF0E5-A4ED-4703-B501-AE70A153697A}"
0x1,"Classes\CLSID\{7E48C5CF-72F6-4C84-9F43-B04B87B31243}\Version","","1.0"

0x1,"Classes\ASP.HostEncode","","ASP Host Encode Object"
0x1,"Classes\ASP.HostEncode\CLSID","","{0CF774D1-F077-11D1-B1BC-00C04F86C324}"
0x1,"Classes\CLSID\{0CF774D1-F077-11D1-B1BC-00C04F86C324}","","ASP Host Encode Object"
0x1,"Classes\CLSID\{0CF774D1-F077-11D1-B1BC-00C04F86C324}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{0CF774D1-F077-11D1-B1BC-00C04F86C324}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{0CF774D1-F077-11D1-B1BC-00C04F86C324}\ProgID","","ASP.HostEncode"

0x1,"Classes\HTML.HostEncode","","HTML Host Encode Object"
0x1,"Classes\HTML.HostEncode\CLSID","","{0CF774D0-F077-11D1-B1BC-00C04F86C324}"
0x1,"Classes\CLSID\{0CF774D0-F077-11D1-B1BC-00C04F86C324}","","HTML Host Encode Object"
0x1,"Classes\CLSID\{0CF774D0-F077-11D1-B1BC-00C04F86C324}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{0CF774D0-F077-11D1-B1BC-00C04F86C324}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{0CF774D0-F077-11D1-B1BC-00C04F86C324}\ProgID","","HTML.HostEncode"

0x1,"Classes\Scripting.FileSystemObject","","FileSystem Object"
0x1,"Classes\Scripting.FileSystemObject\CLSID","","{0D43FE01-F093-11CF-8940-00A0C9054228}"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}","","FileSystem Object"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}\InprocServer32","ThreadingModel","Both"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}\ProgID","","Scripting.FileSystemObject"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}\TypeLib","","{420B2830-E718-11CF-893D-00A0C9054228}"
0x1,"Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}\Version","","1.0"

0x1,"Classes\Scripting.Encoder","","Script Encoder Object"
0x1,"Classes\Scripting.Encoder\CLSID","","{32DA2B15-CFED-11D1-B747-00C04FC2B085}"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}","","Script Encoder Object"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\ProgID","","Scripting.Encoder"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\TypeLib","","{420B2830-E718-11CF-893D-00A0C9054228}"
0x1,"Classes\CLSID\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\Version","","1.0"

0x1,"Classes\JSFile.HostEncode","","JS File Host Encode Object"
0x1,"Classes\JSFile.HostEncode\CLSID","","{85131630-480C-11D2-B1F9-00C04F86C324}"
0x1,"Classes\CLSID\{85131630-480C-11D2-B1F9-00C04F86C324}","","JS File Host Encode Object"
0x1,"Classes\CLSID\{85131630-480C-11D2-B1F9-00C04F86C324}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{85131630-480C-11D2-B1F9-00C04F86C324}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{85131630-480C-11D2-B1F9-00C04F86C324}\ProgID","","JSFile.HostEncode"

0x1,"Classes\VBSFile.HostEncode","","VBS File Host Encode Object"
0x1,"Classes\VBSFile.HostEncode\CLSID","","{85131631-480C-11D2-B1F9-00C04F86C324}"
0x1,"Classes\CLSID\{85131631-480C-11D2-B1F9-00C04F86C324}","","VBS File Host Encode Object"
0x1,"Classes\CLSID\{85131631-480C-11D2-B1F9-00C04F86C324}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{85131631-480C-11D2-B1F9-00C04F86C324}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{85131631-480C-11D2-B1F9-00C04F86C324}\ProgID","","VBSFile.HostEncode"

0x1,"Classes\Scripting.Dictionary","","Scripting.Dictionary"
0x1,"Classes\Scripting.Dictionary\CLSID","","{EE09B103-97E0-11CF-978F-00A02463E06F}"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}","","Scripting.Dictionary"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\InprocServer32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\InprocServer32","ThreadingModel","Apartment"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\ProgID","","Scripting.Dictionary"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\TypeLib","","{420B2830-E718-11CF-893D-00A0C9054228}"
0x1,"Classes\CLSID\{EE09B103-97E0-11CF-978F-00A02463E06F}\Version","","1.0"

0x1,"Classes\TypeLib\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\1.0","","Windows Script Host Object Model"
0x1,"Classes\TypeLib\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\1.0\0","",""
0x1,"Classes\TypeLib\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\1.0\0\win32","","X:\i386\system32\wshom.ocx"
0x1,"Classes\TypeLib\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\1.0\FLAGS","","0"
0x1,"Classes\TypeLib\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\1.0\HELPDIR","","X:\i386\system32"

0x1,"Classes\TypeLib\{06290C00-48AA-11D2-8432-006008C3FBFC}\1.0","","Microsoft Scriptlet Library"
0x1,"Classes\TypeLib\{06290C00-48AA-11D2-8432-006008C3FBFC}\1.0\0","",""
0x1,"Classes\TypeLib\{06290C00-48AA-11D2-8432-006008C3FBFC}\1.0\0\win32","","X:\i386\system32\scrobj.dll"
0x1,"Classes\TypeLib\{06290C00-48AA-11D2-8432-006008C3FBFC}\1.0\FLAGS","","0"
0x1,"Classes\TypeLib\{06290C00-48AA-11D2-8432-006008C3FBFC}\1.0\HELPDIR","","X:\i386\system32"

0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\1.0","","Microsoft VBScript Regular Expressions 1.0"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\1.0\0","",""
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\1.0\0\win32","","X:\i386\system32\vbscript.dll\2"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\1.0\FLAGS","","0"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\1.0\HELPDIR","","X:\i386\system32"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\5.5","","Microsoft VBScript Regular Expressions 5.5"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\5.5\0","",""
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\5.5\0\win32","","X:\i386\system32\vbscript.dll\3"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\5.5\FLAGS","","0"
0x1,"Classes\TypeLib\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\5.5\HELPDIR","","X:\i386\system32"

0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A","",""
0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A}\1.0","","ScriptSigner"
0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A}\1.0\0","",""
0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A}\1.0\0\win32","","X:\i386\system32\wshext.dll"
0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A}\1.0\FLAGS","","0"
0x1,"Classes\TypeLib\{95CEF0E5-A4ED-4703-B501-AE70A153697A}\1.0\HELPDIR","","X:\i386\system32"

0x1,"Classes\TypeLib\{420B2830-E718-11CF-893D-00A0C9054228}\1.0","","Microsoft Scripting Runtime"
0x1,"Classes\TypeLib\{420B2830-E718-11CF-893D-00A0C9054228}\1.0\0\win32","","X:\i386\system32\scrrun.dll"
0x1,"Classes\TypeLib\{420B2830-E718-11CF-893D-00A0C9054228}\1.0\FLAGS","","0"
0x1,"Classes\TypeLib\{420B2830-E718-11CF-893D-00A0C9054228}\1.0\HELPDIR","","X:\i386\system32"

; Unfinished/unwanted
;0x1,"Classes\Scriptlet.Behavior","","Element Behavior Handler"
;0x1,"Classes\Scriptlet.Behavior\CLSID","","{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}"
;0x1,"Classes\CLSID\{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}","","Microsoft Scriptlet Element Behavior Handler"
;0x1,"Classes\CLSID\{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}\InProcServer32","","C:\\WINDOWS\\system32\\mshtml.dll"
;0x1,"Classes\CLSID\{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}\InProcServer32","ThreadingModel","Apartment"
;0x1,"Classes\CLSID\{5AAF51B2-B1F0-11d1-B6AB-00A0C90833E9}\ProgID","","Scriptlet.Behavior"

;0x1,"Classes\Scriptlet.HiFiTimer","","HiFiTimer Uses"
;0x1,"Classes\Scriptlet.HiFiTimer\CLSID","","{5AAF51B3-B1F0-11d1-B6AB-00A0C90833E9}"

Edited by theodin
Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...