Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2039331
  • 博文数量: 519
  • 博客积分: 10070
  • 博客等级: 上将
  • 技术积分: 3985
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-29 14:05
个人简介

只问耕耘

文章分类

全部博文(519)

文章存档

2016年(1)

2013年(5)

2011年(46)

2010年(220)

2009年(51)

2008年(39)

2007年(141)

2006年(16)

我的朋友

分类: WINDOWS

2007-08-31 09:01:27

Windows Script Host
Windows Script is a comprehensive scripting infrastructure for the Microsoft® Windows® platform. Windows Script provides two script engines, Visual Basic® Scripting Edition and Microsoft JScript®, which can be embedded into Windows Applications. It also provides an extensive array of supporting technologies that makes it easier for script users to script Windows applications.
 
Microsoft XML Core Services (MSXML) allows customers who use JScript, Visual Basic Scripting Edition (VBScript), and Microsoft Visual Studio 6.0 to build high-performance XML-based applications that provide a high degree of interoperability with other applications that adhere to the XML 1.0 standard.
 
sample:
//test.vbs
Set rootXML = WScript.CreateObject("MSXML.DOMDocument")
rootXML.load("test.xml")
Set root = rootXML.documentelement
root.childNodes.item(0).text="testitem"
rootXML.Save("test.xml")
wscript.echo root.childNodes.item(0).text
 
 
 
阅读(1580) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~