Scripting languages

From HaFrWiki
Revision as of 11:52, 14 November 2012 by Hjmf (talk | contribs) (Created page with "{{TOCright}} Scripting is widely spread. Here some examples. == Asp == == Cscript == Windows Command Line Scripting. See also Wscript, Windows graphical version...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Scripting is widely spread. Here some examples.

Asp

Cscript

Windows Command Line Scripting. See also Wscript, Windows graphical version of CScript. Since Cscript and Wscript are alike, See Wscript for in depth information.

JavaScript

More...

Jscript

PHP

More...

VBA

More...

Wscript

Windows Graphical Version of command line scripting. See also Cscript, Windows command line scripting. For code examples look at the VBA part. Both Cscript and Wscript are covered on the Microsoft Script Center and MSN pages. There are references for

  • VBScript, Visual Basic Script
  • WSH, Windows Script Host
  • WMI, Windows Management Instrumentation
  • ADSI, Active Directory Service Interfaces

Also an help file is available (Script56.chm) on the Microsoft site.

Reference

Windows Batch and Cmd

Windows Script Component

Windows® Script Component files are XML (Extensible Markup Language) that are much like HTML files, but contain special elements that define the script component and its behavior. The elements used for defining script components are not HTML tags, but are XML elements specifically used for script component definitions.

To register a component:

 regsvr32 dpath\filename.wsc

To use the component

 dim oTest
 set oTest = CreateObject("filename.wsc"
 .. oTest.<function>

Links