01.
02.
Set
obj = Wscript.CreateObject(
"Shell.Application"
)
03.
if Wscript.Arguments.Count = 0 then
04.
obj.ShellExecute
"wscript.exe"
, WScript.ScriptFullName &
" runas"
,
""
,
"runas"
, 1
05.
Wscript.Quit
06.
end if
07.
08.
09.
Set
Fso = WScript.CreateObject(
"Scripting.FileSystemObject"
)
10.
11.
TempDir = Fso.GetSpecialFolder(2)
12.
on error resume next
13.
14.
Set
objHandle = Fso.CreateTextFile( TempDir &
"\local.htm"
,
True
,
True
)
15.
if Err.Number <> 0 then
16.
Wscript.Quit
17.
end if
18.
objHandle.Close
19.
on error goto 0
20.
21.
22.
Set
IEDocument = WScript.CreateObject(
"InternetExplorer.Application"
)
23.
24.
IEDocument.Navigate( TempDir &
"\local.htm"
)
25.
26.
IEDocument.document.getElementsByTagName(
"BODY"
)(0).innerHTML =
"<input id=FilePath type=file>"
27.
28.
IEDocument.document.getElementById(
"FilePath"
).click
29.
30.
if IEDocument.document.getElementById(
"FilePath"
).value =
""
then
31.
OpenLocalFileName =
""
32.
IEDocument.Quit
33.
Set
IEDocument =
Nothing
34.
Wscript.Quit
35.
end if
36.
37.
38.
Wscript.Echo IEDocument.document.getElementById(
"FilePath"
).value
39.
40.
41.
IEDocument.Quit
42.
Set
IEDocument =
Nothing