01.
bFlg =
True
02.
03.
04.
Set
Fs = CreateObject(
"Scripting.FileSystemObject"
)
05.
Set
WshShell = CreateObject(
"WScript.Shell"
)
06.
Set
Shell = CreateObject(
"Shell.Application"
)
07.
08.
09.
strPath =
"Desktop_info.htm"
10.
Set
OutFile = Fs.OpenTextFile( strPath, 2,
True
)
11.
12.
13.
OutFile.WriteLine
"<HTML><HEAD><TITLE>ProcessList</TITLE>"
14.
OutFile.WriteLine
"<META http-equiv="
"Content-Type"
" content="
"text/html; charset=shift_jis"
">"
15.
OutFile.WriteLine
"<STYLE type="
"text/css"
">* { font-size:12px;}</STYLE>"
16.
OutFile.WriteLine
"</HEAD><BODY>"
17.
OutFile.WriteLine
"<TABLE>"
18.
OutFile.WriteLine
"<TR>"
19.
20.
OutFile.WriteLine
"<TH style='background-color:gray;color:white' nowrap></TH>"
21.
OutFile.WriteLine
"<TH style='background-color:gray;color:white' nowrap>名称</TH>"
22.
OutFile.WriteLine
"<TH style='background-color:gray;color:white' nowrap>タイプ</TH>"
23.
OutFile.WriteLine
"<TH style='background-color:gray;color:white' nowrap>パス</TH>"
24.
if bFlg then
25.
OutFile.WriteLine
"<TH style='background-color:gray;color:white' nowrap>説明</TH>"
26.
end if
27.
28.
OutFile.WriteLine
"</TR>"
29.
30.
31.
Set
objFolder = Shell.NameSpace( 0 )
32.
33.
Set
objFolderItems = objFolder.Items()
34.
35.
36.
nCnt = 0
37.
For
Each
item in objFolderItems
38.
OutFile.WriteLine
"<TR>"
39.
strCss =
""
40.
if nCnt
Mod
2 = 0 then
41.
strCss =
"style='background-color:#D0D0D0;'"
42.
end if
43.
44.
45.
OutFile.WriteLine
"<TD nowrap "
& strCss &
"><B>"
& (nCnt + 1) &
"</b></TD>"
46.
47.
48.
OutFile.WriteLine
"<TD nowrap "
& strCss &
"><B>"
& objFolder.GetDetailsOf(item, 0) &
"</b></TD>"
49.
OutFile.WriteLine
"<TD nowrap "
& strCss &
">"
& objFolder.GetDetailsOf(item, 2) &
"</TD>"
50.
OutFile.WriteLine
"<TD nowrap "
& strCss &
">"
& item.Path &
"</TD>"
51.
52.
if bFlg then
53.
on error resume next
54.
OutFile.WriteLine
"<TD nowrap "
& strCss &
">"
& objFolder.GetDetailsOf(item, -1) &
"</TD>"
55.
if Err.Number <> 0 then
56.
OutFile.WriteLine
"<TD nowrap "
& strCss &
"></TD>"
57.
end if
58.
on error goto 0
59.
end if
60.
61.
OutFile.WriteLine
"</TR>"
62.
nCnt = nCnt + 1
63.
Next
64.
65.
OutFile.WriteLine
"</TABLE></BODY></HTML>"
66.
OutFile.Close
67.
68.
WshShell.Run(
"RunDLL32.EXE shell32.dll,ShellExec_RunDLL "
""
& _
69.
WshShell.CurrentDirectory &
"\" & strPath & "
""
" )