01.
02.
03.
04.
Set
WshShell = CreateObject(
"WScript.Shell"
)
05.
Set
Fso = CreateObject(
"Scripting.FileSystemObject"
)
06.
Set
Dic = CreateObject(
"Scripting.Dictionary"
)
07.
Set
Shell = CreateObject(
"Shell.Application"
)
08.
09.
10.
11.
12.
Set
Cn = CreateObject(
"ADODB.Connection"
)
13.
Set
Rs = CreateObject(
"ADODB.Recordset"
)
14.
Set
Stream = CreateObject(
"ADODB.Stream"
)
15.
Set
Adox = CreateObject(
"ADOX.Catalog"
)
16.
17.
18.
19.
20.
21.
// メール送信
22.
Set
Cdo = Server.CreateObject(
"CDO.Message"
)
23.
// WMI ( 通常 )
24.
Set
objWMIService = GetObject(
"winmgmts:\\.\root\cimv2"
)
25.
// IE
26.
Set
Ie = CreateObject(
"InternetExplorer.Application"
)
27.
// XP 以降
28.
Set
objDialog = CreateObject(
"UserAccounts.CommonDialog"
)
29.
// GUID 取得
30.
Set
TypeLib = CreateObject(
"Scriptlet.TypeLib"
)
31.
32.
33.
34.
35.
// Microsoft Excel
36.
Set
App = CreateObject(
"Excel.Application"
)
37.
// Basp21
38.
Set
Basp = CreateObject(
"Basp21"
)
39.
40.
41.
42.
43.
44.
Set
BatchHelper = CreateObject(
"Lbox.BatchHelper"
)
45.
Set
Fsystem = CreateObject(
"Lbox.Fsystem"
)
46.
Set
Database = CreateObject(
"Lbox.Database"
)
47.
Set
Prt = CreateObject(
"Lbox.Prt"
)
48.
Set
Wnet = CreateObject(
"Lbox.Wnet"
)
49.
Set
Ftp = CreateObject(
"Lbox.Ftp"
)
50.
Set
Win = CreateObject(
"Lbox.Window"
)
51.
Set
Outer = CreateObject(
"Lbox.OuterDll"
)
52.
// スクリプトで記述された COM ( Windows Script Component )
53.
Set
Wsc = CreateObject(
"Lbox.BatchWsc"
)
54.
55.
56.
57.
58.
59.