2 q0 e: t6 k5 X1 x- A" S$ M' s; ?+ y3 Z# \) B
附上我找到的很有帮助的文章。 0 r0 `. g0 W. c$ b& A" k8 I, f- I& U
+ z. m4 q6 S$ x, z, z+ a1 @" B+ B d+ X 6 c! Z1 M P/ Q9 g3 J; \一、什么是WSH? 6 ?7 c2 q7 Z6 w! ^
$ M5 q+ L* `# C; W r4 Q; t; c
WSH是Windows Scripting Host(Windows脚本主机)的缩略形式。WSH这个概念最早出现于Windows98操作系统,是一个基于32 位 Windows 平台、并独立于语言的脚本运行环境。比如:你自己编写了一个脚本文件,如后缀为 .vbs 或.js 的文件,然后在 Windows 下双击 并执行它,这时,系统就会自动调用一个适当的程序来对它进行解释并执行,而这个程序,就是Windows Scripting Host,程序执行文件名为 Wscript.exe (若是在DOS命令提示符下,则为Cscript.exe)。 , [3 M' q6 I$ Z( t
% ~/ V/ ^1 \ K8 }0 R
- |) ^% z) J8 D) Z2 C) v# Z! i5 [. [
想知道自己的机器上有没有WSH吗?查看一下你的机器里有没有“Wscipt.exe”或者“Cscript.exe”这两个文件就可以了。如果找到,恭 喜你!你已经安装了WSH。否则,自己手动安装吧: ; B! d; y f6 @3 L+ b8 T3 l : i: P( b) h- U) ~ 在Windows98环境下,WSH是作为操作系统的一个组件自动安装的,如果不慎丢失了这个组件,可以从依次打开“控制面板-->添加/删除程序--〉Windows安装程序--〉附件”,然后将“Windows ScriptingHost”前的划上“√”,再确定即可完成WSH组件的安装。 0 N5 X& C' N; H, ?/ ?. k; n% x
4 H6 _/ v1 M* k - X2 s, Z0 q% Q ; ]6 q+ K/ e$ q5 ?+ k/ [3 V4 v3 Y4 Q 二、脚本语言与WSH的关系 & W2 s. I0 }) y6 p, P + r: u( o1 l: l 大家知道,脚本语言(包括javascript和VBscript语言等)经常会被植入网页之中(其中包括 HTML 页面客户机端和 ASP页面服务器端) 。对于植入 HTML 页面的脚本,其所需的解析引擎会由 IE 这样的网页浏览器载入;对于植入 ASP页面的脚本,其所需的解析引擎会由 IIS( Internet Information Services)提供。而对于出现在 HTML 和ASP 页面之外的脚本(它们常以独立的文件形式存在),就需要经由 WSH 来 处理了。需要说明的是:WSH 要想正常工作,还要安装IE 3.0或更高版本的 IE,因为 WSH 在工作时会调用 IE 中的 VBScript 和 javascript 解析引擎。[未结束][iduba_page]在这些被植于网页的脚本语言中,绝大多数是与网络安全无关的。但也有少数别有用心的好事者,把一些严重危及网络安全的代码(我们常常称之为“恶意代码”,他们通常都要通过修改注册表达到“恶意”的目的!),混放在正常的脚本之中,常常让我们防不胜防。但是,如果我们了解一点关于脚本语言的知识,这些“伎俩”都是非常容易识破的。还是让我们从几个简单 的实例开始吧…… ' l7 @1 E' b6 |+ P+ H( m; ]1 }: k! N7 Q6 m# H* X. l
6 R M% p& y2 p4 n; s
; V5 g, c8 |- v8 m/ R
三、WSH应用举例 , z5 k6 r; p+ W: N5 T* N j6 r: {, U3 G- {! O- e" N
WSH可以处理脚本程序,怎样阅读和编写WSH的脚本源文件呢?只要你有一点Basic(会VB的编程更好,呵呵)语言的基础,学会看懂WSH脚本语言的程序并不是一件难事。去C:WINDOWSSAMPLESWSH目录以下将看看吧!里面提供了几类经典的脚本例子,而且分别提供了VBScript和 javascript两个版本,我们只要用记事本打开它们并仔细研究就不难学到一些基本的WSH应用。 $ k( i7 Q( U1 k+ a 0 v+ ~' U8 Q3 }& X D ; _6 ^# _ i! v+ Q7 j
& T5 n0 l6 O! T$ E) L" M
你只需在记事本中依次输入以下每个实例中的代码,并保存为相应的“*.vbs”文件,双击这个文件,你就可以看到相应的效果了。' [* u2 [4 u( S* I' U; h5 @
' v) Y1 r3 ~4 k+ ^, @! R+ K # X; F3 m3 C/ u& q: S" T4 I7 i/ k+ o
) l Y: V! X7 L1 ^! N
% e; P$ q0 G! e- K 1 F& G& E/ }* E; e
. p# H+ W* A" z& n8 T# J# KQ: How do I open script files? Trying the above solution makes Windows XP throw an error?; m' S5 ^5 } J; ]8 @* _1 T
! R. S" G' u1 j% S
A:This is similar to the *.js association problem. Some machines seem to,for some reason, lose their *.vbs association. It's not that the filesopen with dreamweaver or whatever -- it's that the machine just doesn'tknow how to run them. If you have a scheduled task, "Could not run"will appear in the status column. 3 q- i, l0 g; `& j$ A$ B% u7 B- ~) O' Z3 W @
So, you're a smart person andread through the FAQ. You find the *.js extension problem, and you trythat fix: you run it as "wscript c:\path\to cript.vbs". But that, inturn, produces a pop-up error, this time a "Windows Scripting Host"error: "There is no script engine for file extension '.vbs'." So, forsome reason, wscript doesn't even know what to do with *.vbs files.2 w) ^8 ]% x# R9 P- F! \+ G
) |1 D) m3 m5 H& j% K* d
The solution to this problem is to run the script as:6 k5 ?5 l: W/ [/ @, P, F5 Q7 d& \
+ g! k* v/ |4 |( y2 O3 S4 O/ N: jwscript //e:vbscript c:\path\to cript.vbs; j4 E& b( f& `3 }7 C" h8 A
. F9 e$ ]* g8 e
The "//e:vbscript" tells wscript to use the vbscript engine to parse the script. It will then run correctly.) @8 N2 p |: @& |
/ ~6 D* H# c& q' m
A few alternative solutions, perhaps easier are: ' N, ^$ ^* [' o9 HRenameit .vbe (VBScript Encoded Script File). Not sure if this is a bad idea,but it seemed to work for some scripts. Make a new association for VBS.Open up my computer, select Tools menu-> Folder Options, and go tothe File Types tab. There probably isn't a VBS association listed ifyou have this problem. Select New, type in VBS, and hitAdvanced>>. Then, from the pull-down menu, select "VBScriptScript File". Making this selection automatically takes care of theassociation, along with the //e:vbscript problem. This is probably the"correct" solution... : b& l% _2 P `$ `9 H, n u% TThis problems usually occurs only on WindowsXP machines, but the cause is not known. A Microsoft KB article on thisissue can be found here. Thanks goes to Bob_2k for writing this FAQentry.