Tagged Questions

Microsoft® Windows® Script Host (WSH) is a language-independent scripting host for Windows Script compatible scripting engines. It brings simple, powerful, and flexible scripting to the Windows 32-bit platform, allowing you to run scripts from both the Windows desktop and the command prompt.

learn more… | top users | synonyms (2)

7
votes
3answers
338 views

Creating a scripting language

Can somebody please guide me in the right direction of creating a scripting language that targets the WSH (Windows Scripting Host)? I have googled for it, but there seem to be far fewer links related ...
7
votes
12answers
2k views

Getting my ip address

I have a computer on a small network, so my ip is 192.168.2.100. I am trying to get my real ip. I download the no-ip client but that just seems like a lot of trouble for such a simple thing. I ...
6
votes
5answers
1k views

How can I create a javascript library in a separate file and “include” it in another?

First, a caveat. The main script is not run in a webpage. I will be running the .js file in Windows using Windows Script Host. The problem: I would like to create a javascript "library" containing a ...
5
votes
9answers
489 views

Parsing question

I am creating a scripting language to be used to create web pages, but don't know exactly where to begin. I have a file that looks like this: mylanguagename(main) { OnLoad(protected) { ...
5
votes
3answers
3k views

Advice for Windows XP Scripting, WSH versus PowerShell

After much experience scripting in the Unix/Linux open-source world, using languages such as Bourne Shell, Perl, Python, and Ruby, I now find myself needing to do some Windows XP administration ...
5
votes
5answers
12k views

Base64 Encode String in VBScript

I have a web service load driver that's a Windows Script File (WSF), that includes some VBScript and JavaScript files. My web service requires that the incoming message is base64 encoded. I currently ...
5
votes
1answer
300 views

Writing a language for the Windows Scripting Host (WSH)

Has anyone had any experience targetting WSH in the way that VBScript, JScript, PerlScript, xbScript and ForthScript (among other) do, such that the language can be used from the command line and ...
5
votes
6answers
9k views

Send mail from a Windows script

I would like to send mail from a script on a Windows Server 2003 Standard Edition. I think the server setup is pretty much out of the box. The mail server is an Exchange one, and when you're on the ...
4
votes
1answer
109 views

VB: What is missing in scripting host while it is present in “full” VB?

When programming (scripting) in VB scripting host, how can I learn what is implemented and what not? For example, records (or: the structure keyword) are not implemented, but classes (or: the class ...
4
votes
3answers
1k views

Javascript Object vs JScript Dictionary

Javascript Objects and JScript Dictionary are both associative Arrays obj = new Object ; dic = new ActiveXObject("Scripting.Dictionary") ; My question is... Is there any difference between them in ...
4
votes
3answers
4k views

Setting an environment variable in javascript

How can I set an environment variable in WSH jscript file that calls another program? Here's the reduced test case: envtest.js ---------- var oShell = WScript.CreateObject("WScript.Shell"); var ...
4
votes
1answer
206 views

Is There a Profiler for Windows Scripting Host Code?

Are there any profilers that can profile code that runs under WSH (VBScript, JavaScript, WSF)? Other than hand instrumenting with trace statements, what's a good way to profile code running under WSH? ...
3
votes
2answers
91 views

How do I get the computer name of a system and output it to a file in VBScript

I am trying to get the computer name from the registry and write it to a file. At this point, my function call for obtaining the computer name from registry isn't working. Any advice would be ...
3
votes
2answers
405 views

Is asynchronous call of JavaScript function possible in Windows Sscript Host?

Imagine you have a simple function in Windows Script Host (JScript) environment: function say(text) { WScript.Sleep(5000); WScript.Echo(text); } Is it possible to call say() asynchronously? ...
3
votes
3answers
180 views

How to write a script for organizing my desktop windows? (WinXP)

I would like to write a script that moves the currently open Windows to a certain location. Ideally, my program would look like this: var window = FindWindow("Winamp"); window.setPos(1140, 900, 160, ...
3
votes
2answers
616 views

How to convert an image file to BMP programmatically using native Windows XP capabilities?

Is it possible to convert an image file to BMP format using WindowsXP's native libraries and scripting capabilities? I'm talking about WSH, JScript, VBS, etc... C++ is also good for what I need if it ...
3
votes
2answers
410 views

How to reference a JScript file from another one?

I am writing some server-side scripts using JScript and WSH. The scripts are getting quite long, and some common functions and variables would fit better in a general library script which I included ...
3
votes
4answers
916 views

setTimeout not working in windows script (jscript)

When I try to run the following code in my program setTimeout("alert('moo')", 1000); I get the following error Error: Object expected Code: 800A138F Source: Microsoft JScript runtime error Why? Am ...
3
votes
3answers
296 views

In JScript, is it possible to implement getters and setters that look like object properties from the outside?

While trying to port and generally playing around with some non-browser code, I came across getters and setters that looked like normal object properties. Something like this: js> var o = { a: ...
3
votes
2answers
773 views

JScript Wait function

I have a function written in JScript (Not javascript) I need to suspend until a certain global variable becomes true. The global variable is changed to true when another function is called after an ...
3
votes
2answers
9k views

Can I pick up environment variables in vbscript WSH script?

Is is possible to read system environment variables in a Windows Scripting Host (WSH) VBS script? (I am writing a VBScript using Windows Scripting Host for task for a Cruise Control and want to pick ...
3
votes
3answers
4k views

Using 32-bit COM object from C# or VBS on Vista 64-bit and getting error 80004005

I need some mind reading here, since I am trying to do what I do not completely understand. There is a 32-bit application (electronic trading application called CQG) which provides a COM API for ...
2
votes
1answer
106 views

Getting ActivePython to work with WSH

I've installed ActivePython 2.7.2 and I'm trying to execute a .pys script via the console with wscript/cscript, [i.e. ActivePython (PythonScript with .pys extension) in Microsoft's WSH(Windows ...
2
votes
1answer
93 views

Get line number of an error in JScript run in Windows Script Host

Say, I have the following code that I run as a .JS file using the Windows Script Host: try { ProduceAnError(); } catch(e) { //How to get an error line here? } Is there any way to know the ...
2
votes
0answers
143 views

execute button inside ribbon

I want to write a script (C# or AutoIT or VBScript.. whatever works) which should (1) Get reference of already open outlook application (2) Iterate through ribbons to find a specific button (3) ...
2
votes
2answers
156 views

in JavaScript, when finished with an object created via new ActiveXObject, do I need to set it to null?

In a Javascript program that runs within WSH and creates objects, let's say Scripting.FileSystemObject or any arbitrary COM object, do I need to set the variable to null when I'm finished with it? Eg, ...
2
votes
2answers
649 views

Maximum Array of Strings VisualBasic WSH

I'm writing a WSH script in VB to read a massive directory listing generated with a redirected directory listing via .Run method. The directory listing is about 8400 lines, but every time I run the ...
2
votes
1answer
501 views

WSH / JScript to start and stop services based on time?

Just looking to see if my assessment is correct on the easiest way to do this. Background: we have a software suite which we're running via services. The services need to be shut down between 10pm ...
2
votes
4answers
552 views

How to get the main window handle of a process using JScript?

Is there any method in JScript to get the handle of the main window of a process by providing the process name? The Process.MainWindowHandle property works only in JScript .NET. Is anything similar ...
2
votes
1answer
582 views

Kill explorer.exe with windows title

I'm new with programing and my question is now, how i can close some specific explorer.exe windows. My Problem is, i have a program that call some windows: Option Explicit Dim shell, expl1, expl2, ...
2
votes
4answers
3k views

how can I read a binary file with in javascript (Cscript.exe)?

I think I can't read a binary file with the Scripting.FileSystemObject class. Can I do it with ADODB.Stream? Something else? I want to get an array of bytes. thanks.
2
votes
3answers
531 views

Is using the windows script host, especially the FileSystemObject hereof a good idea?

Recently I have been asked to do some maintenance on a VB6 application. This involves some file IO. I find the IO operations offered by referencing the windows script host and using the ...
2
votes
1answer
294 views

Windows 7 Missing Shortnames

I noticed that if you get a Scripting.File object from certain windows files (Example: any wav in C:\Windows\Media) the Scripting.File.ShortPath property shows the long path. Curious I dropped to the ...
2
votes
3answers
255 views

New scripting language

I am trying to create a scripting language by myself (it doesn't have to be perfect - although that would be great if it was), mostly because i'm doing it for fun and to learn about how they're ...
2
votes
3answers
3k views

Capturing output from WshShell.Exec using Windows Script Host

I wrote the following two functions, and call the second ("callAndWait") from JavaScript running inside Windows Script Host. My overall intent is to call one command line program from another. That ...
2
votes
1answer
265 views

Can I initialize objects written in JScript from VBScript?

I am trying to write a WSH logon script. Administrators throughout the company need to be able to customize the execution of the script, and execute additional scripts, for specific locations and ...
2
votes
3answers
2k views

Is there a way to run a command line command from JScript (not javascript) in Windows Scripting Host (WSH) cscript.exe?

I'm writing a JScript program which is run in cscript.exe. Is it possible to run a commnad line command from within the script. It would really make the job easy, as I can run certain commands instead ...
2
votes
4answers
1k views

Hosting WSH (VBScript, JavaScript) in your delphi application?

I'm looking to execute user supplied scripts from my Delphi application. Is it possible to host the Windows Script Host engine in my application and supply it with scripts to execute? Or, is there a ...
2
votes
1answer
518 views

Unable to access Excel's Application.ComAddIns property if there are no AddIns installed

This code snipped for the Windows Scripting Host displays the number of COM-AddIns currently installed into Excel. It works fine except for when there are no COM-AddIns installed. I believe it ...
2
votes
3answers
5k views

What is the difference between CreateObject and Wscript.CreateObject?

Does anyone know the reasoning behind having the option using: Wscript.CreateObject("some.object") and CreateObject("some.object") within VBScript? when I find documentation or examples that use ...
2
votes
4answers
2k views

Manupulating Excel files from Windows Scripting Host

Is there a fast way to manipulate the contents of an existing XLS file from Windows Scripting Host? We have Excel templates we received from a customer. Our task is to fill these templates with the ...
2
votes
1answer
330 views

How can I send an email using a SMTP server using Windows Script?

I am new to Windows scripting. I saw the post on sending email on an Exchange server from WScript here, but my scenario is a little different. We need to be able to send the mail using any SMTP ...
2
votes
3answers
2k views

Prompt dialog in WSH using JScript?

How to open a prompt dialog box in WSH usig JScript?? The only pop-up dialog I've found in the doc is the WshShell.Popup() method. But I need a way to request the user to enter a string, like the ...
2
votes
2answers
144 views

How can I programatically analyze (and change) the configuration of IIS

I'm relatively new to the Windows Server world (coming from *nix land). I'm used to analyzing a web-server's configuration by grepping through an apache config file. Is there an equivalent ...
2
votes
2answers
6k views

How do I use WScript.Shell SendKeys to send Number Pad key strokes?

I am trying to use WScript.Shell SendKeys method to emulate sending a key press from the Number Pad. I have an application that I am writing automated testing for using QTP. It is a Web Browser ...
2
votes
2answers
1k views

Access DB5 to MySQL automatically

I have a problem, and was hoping I could rely on some of the experience here for advice and a push in the right direction. I have an MS Access file made by propietary software. I only want to take ...
1
vote
0answers
33 views

What arguments needed to exec MSIscsiInitiator_TargetClass:Login?

I trying to connect to iSCSI target via WMI (class WMI\MSIscsiInitiator_TargetClass, which is distributed with Microsoft software initiator), but always get a generic failure (80041001). Here is my ...
1
vote
1answer
90 views

Show Message dialog while executing

I use this snippet in vbscript: Set WSH = CreateObject("WScript.Shell") cmd = "some command" flag = WSH.Run(cmd, 0, true) As it can be noticed, in .Run() call, "WaitOnReturn" is set to "true" as I ...
1
vote
2answers
86 views

How to make an input from command line in JScript?

How can I read input from the command line in JScript, similar to Pascal's readln?
1
vote
2answers
112 views

JSHINT error: Expected 'combine' to have an indentation at 9 instead at 13

I like the idea behind JSLINT but sometimes it is a little too strict, in my opinion needlessly so. Recently I found JSHINT. It's a little more flexible, allows more options to be turned on or off. ...

1 2 3