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)

0
votes
4answers
60 views

Script to move first 3 characters of filename to the end

I have a directory full of files that I need to rename. For each file, I need to take the first three characters of the filename and move them to the end of the filename before the extension. So ...
1
vote
2answers
38 views

Query Active Directory and Export using VBScript/WSH

I want to query a AD server to get certain fields using VBScript or WSH script These fields DN userid mail company displayName And export/output the fields to a text file. How ...
0
votes
1answer
24 views

WshShell Run Without Waiting But Exec for Status Update (run vs exec issue)

Launching a script via JS in a Windows environment. I need 2 things: No pop-up window (ie. shell.run(cmd, 0)) I can't wait around for thread to finish (ie. shell.exec() or shell.run(cmd, 0, false)) ...
0
votes
0answers
37 views

Invoke IE's “Send to OneNote” from VBScript

I have IE10 & OneNote 2013 installed on my PC. OneNote has "Send to OneNote" item added to IE menu. I'm creating IE application object and opening a web page in VBScript like this: Set objIE = ...
1
vote
1answer
52 views

Can't debug JScript anymore because of an attached debugger (which is not attached!)

Context: Windows Server 2008 R2 SP1, 64bit processor, VS2010 Using the //X technique for script debugging, and debugging JScript, I'm getting Unable to attach to the crashing process. A debugger ...
2
votes
1answer
41 views

GPS metadata with WSH script

I'm trying to extract GPS metadata from collection of images using VBScript. Using Shell.Application object I'm able to get metadata from file, but they contain no GPS information. Is it possible? ...
0
votes
1answer
57 views

json2.js JSON.stringify() generates stack overflow when handling a little bigger value

JSON.stringify(value) can not handle just a little bigger value. It makes "stack overflow" error. Is there a workaround? json2.js is from https://github.com/douglascrockford/JSON-js I am running my ...
7
votes
3answers
104 views

Updating values from external workbook automaticly

I have the following workbook setup: Workbook A has a link to x amount of workbook B's and fetches data from them. The workbooks B have links to some other workbooks and fetches data from them. ...
1
vote
1answer
52 views

Getting Overflow Error at running .NET application from VBA with WshShell

Why am I getting Error 6: Overflow at starting my .NET application (QCSearch.exe) with the following code: Private Sub StartQCSearch() Dim wsh As WshShell Dim waitOnReturn As Boolean: ...
0
votes
2answers
74 views

VBScript Class Private array of classes constantly Empty after assignment

I am having an issue where I have a class with a property that is an array. A Load method resizes the array to the number of entries in a file, creates a new Entry class for that file entry, and ...
0
votes
1answer
113 views

Retrieving Email from pop3 in WSH ?

Is there a way to retrieve emails from a pop3 server in WSH ? My goal is to get attachement from email having specific sender / subject, and parse the file ... I'm using microsoft CDO to send mail, ...
0
votes
0answers
287 views

vbscript how to instantiate a frame object to access textbox & forms within that frame?

Ok here is my problem. I am making a macro to navigate a web-based application and I was able to create an object for all frames throughout the application until it pops up a create work form which ...
0
votes
3answers
82 views

Jscript: is it possible to set the variable dynamically?

In config.txt, I have the following strings: Dispatcher=argo Address=10.5.23.14 User=joe In my script.js, I have the variables: var Dispatcher, Address, User; In script.js, I read config.txt, ...
0
votes
2answers
182 views

execute WshShell command from a batch script

I've got a simple question: What's the best way to execute a single WshShell command from a Windows batch (.bat) script? (hopefully it's not creating a new file with VB code)
1
vote
1answer
111 views

Windows Script Host and JavaScript; I think I'm missing something blatantly obvious

I'm stuck on a "Hello World" program. Not even kidding. alert("Hello World"); I have searched, and I can't find any reason this wouldn't execute in WSH, but it won't; I'm assuming I've screwed up ...
0
votes
1answer
53 views

Force screen redraw

We just got a new win 7 64 computer and one very old program does not display properly on launch - it doesn't draw itself completely until I change the size of its window. I'd like to write a small ...
1
vote
1answer
93 views

How to download a webpage with incorrect character encoding using Windows scripting?

I'm trying to download this test page http://173.192.48.92/test.php using JScript under WSH. I'm using the WinHttp component like this: WinHTTP = WScript.CreateObject('WinHttp.WinHttpRequest.5.1') ; ...
0
votes
1answer
79 views

How to ignore utf-8 encoding errors when using WinHttp under WSH?

I'm using the following script to get the content of a URL: WinHTTP = WScript.CreateObject('WinHttp.WinHttpRequest.5.1') ; WinHTTP.Open( 'GET', theUrl ) ; WinHTTP.Send() ; var content = ...
0
votes
1answer
90 views

Generating Excel files with JScript [closed]

I realised that you can generate excel files using JScript/JavaScript with just a few lines of code. But then it got me wondering; why doesn't anybody ever mention this. All I see online is "Use third ...
2
votes
1answer
192 views

How to know valid script engine names for CScript.exe's //E:engine option?

When you execute a file with .VBS, .JS or .WSF extensions via CScript.exe, they execute correctly: CScript vbsProg.vbs CScript jsProg.js CScript wshScript.wsf However, we may use //E:engine option ...
0
votes
0answers
51 views

Delphi - can simple JS executing program be written using ActiveScript library?

I see ActiveScript library at Delphi site - ZIP. I wonder can I write small program, which is equivalent to cscript.exe program of WSH? the reason why I'm asking is that WSH is blocked (security ...
1
vote
1answer
53 views

Equivalent to window in JScript Runtime

In a normal browser javascript environment, you always have the global window object to fall back on but is there a default accessible global object for the Microsoft JScript Runtime or at least a way ...
0
votes
1answer
273 views

App ignores VBS SendKeys

Trying to automate report generation by sending keystrokes to an application. I can bring the app forward but then it ignores all SendKeys commands. What is the problem? What should I try next? this ...
0
votes
0answers
71 views

Is there a way to run WScript JScript interactively

Python can be run interactively so I was wondering if it is also possible to run WScript Javascript (Microsoft call it JScript) interactively. I see I can run a script like this: cscript hello.js ...
0
votes
0answers
36 views

Using JScript for uninstall script

I am building an installer in VS2010 and want a script to run after uninstall (to remove license files). I have found JScript as a scripting language for Windows 7 and have implemented a simple script ...
3
votes
2answers
405 views

Why WScript.StdOut.Write method behaves differently in VBS vs. JScript?

I have two small programs in VBS and JScript: VBScript.vbs: For i=0 To 255 WScript.StdOut.Write Chr(i) Next JScript.js: for ( var i=0; i <= 255; ++i ) ...
2
votes
2answers
136 views

Dialog box unresponsive with Windows Script Host (Python)

I am trying to modify the Print Setup option found under File > Print Setup. I am using Windows Script Host with Python. I use the Alt + F followed by S to open the appropriate dialogue box: ...
0
votes
1answer
175 views

MYOB - task automation

Is there any tool that can automate exporting all reports from MYOB (AccountRight Plus)? I've tried Autoit and Sikuli but it seams that mouse clicks (and keyboard send/type commands) somehow ignored. ...
2
votes
1answer
82 views

Word Automation: Mailing Labels

I'm trying to automate Word 2010 to create mailing labels in VBScript. So far I have the following: Set word = CreateObject("Word.Application") word.Visible = True word.Documents.Add ...
2
votes
0answers
246 views

Searching in ShellWindows under UAC

I have a JScript application which runs a HTA window to communicate with user. It starts HTA app with specific ID, then searches through shellWindows collection for the window with this ID and gets ...
0
votes
1answer
485 views

hta/ javascript How to execute an application with relative path

I'm building a .hta (with javascript) from which i want to launch several applications. But when i execute my .hta i get the error message can't find file this is the code: <script ...
0
votes
2answers
718 views

excel: how to convert .bas file to vbscript/exe or running from command line?

How to convert .bas file to vbscript/exe or running from command line ? I did script in Excel by MS Visual Basic for Aplications, but i can run this scrip only under Excel. How i can make this script ...
-1
votes
1answer
103 views

How to launch an EXE from Web page with asp.net4

i use this code: <script> function LaunchApp() { if (!document.all) { alert("Available only with Internet Explorer."); return; } var ws = new ...
1
vote
0answers
138 views

'Permission denied' in calling original setTimeout of htmlfile window

I am trying to overwrite timer methods (setTimeout, clearTimeout, setInterval and clearInterval) on an MSHTML instance, so I can track functions that have been added to setTimeout/setInterval and ...
0
votes
0answers
66 views

How do I specify an include file for an WSF script in the parameters?

I have a WSF script which does some setup, includes a JS file, and then runs some tests, like this: <job id="xsrf_nav_test"> <script type="text/javascript"> // setup ...
1
vote
4answers
245 views

scripting with c# desktop application

I have a C# desktop application which supports new C# plugins. I want to change existing C# application capable of accepting scripts as plugin. Scripts may be a JavaScript,Windows script Host ...
2
votes
1answer
56 views

Markdown to HTML: script compatible with WSH

There's a Markdown-to-HTML converter at Pagedown project (JS script). My question is: how can I adapt this JS script to WSH (Windows Script Host) usage? I need e.g. js script which can be called by ...
1
vote
2answers
93 views

Can't access COM array members in WSH/JScript

I'm trying to access the members of an array returned by a COM method from JScript through WSH on Windows 7. The documentation for the method is as follows (given as a C# example): public ...
2
votes
1answer
486 views

WScript.Shell.run launching robocopy doesn't show destination parameters

i'm trying to get a vbscript (cscript/vbs) to copy files from one network location (my tv show downloads folder) to another network location (my pvr). i tried to use xcopy but ended up with "parse ...
3
votes
1answer
146 views

Using ruby in WSH (Windows Scripting Host)

Has anyone experience with using ruby in WSH (Windows Scripting Host)? The following doesn't work, Ruby is installed on the system. <package id = "hello_world"> <job> <script ...
2
votes
2answers
507 views

End of file in JavaScript

I want to read a local file line by line in JavaScript. Ut I can check if it goes to the end of this file. For example: file = new ActiveXObject("Scripting.FileSystemObject"); // Sets the variable ...
0
votes
0answers
84 views

What is the correct way to read all output from a spanwed program in WSH Windows JScript Shell exec?

I want to start a console application and capture all its output. The documentation i found was a little confusing. This is what i have, currently: <object id="shell" progid="Wscript.Shell"/> ...
0
votes
1answer
82 views

FileExists check in WSH script giving object expected error

Why am I getting a runtime error "Object expected" in - If (fs.FileExists(filename)) ? var filename = "d:\\list.txt"; fs = new ActiveXObject("Scripting.FileSystemObject"); If ...
0
votes
2answers
252 views

Get temp folder using WSH script

How to get temp folder path using WSH script ?
0
votes
2answers
401 views

How to disable ECHO DIALOGS for Windows Script Host running a vbs file?

Ran into a problem today. I have a Windows Server 2003 with a bunch of .bat files that essentially start .vbs scripts. Every time an ECH is used in the script I get that annoying dialog box that ...
1
vote
2answers
596 views

Calling Powershell with WshShell.Exec() method hangs the script

I am trying to call Powershell with the Exec method of the WshShell object. I am writing the script in JScript, but I have reproduced the problem in VBScript as well. Both of the following short test ...
0
votes
1answer
600 views

VBS script (VBScript) errors 800A0035 and/or 800A004C only on the first execution of the script

I am pretty new to all this VBS stuff because basically all I need to do is to make one simple VBS script, which I have possibly written, however, my problem is that it gives me 800A0035 or 800A004C ...
2
votes
1answer
699 views

Should we deploy scrrun.dll (Windows Scripting Runtime)?

Our VB6 application relies heavily on the use of scrrun.dll (Windows Scripting Host). Until a year ago we used to deploy this dll with our installer. Since the Windows Scripitng Host is supposed to be ...
1
vote
2answers
236 views

JSHint error “Object doesn't support this property or method” for javascript closures

I have this javascript: (function ($) { // a comment })(window.jQuery); I'm running the wsh version of JSHint with these options: Command: %systemroot%\system32\cscript.exe Arguments: ...
0
votes
1answer
64 views

How to access the commandline from JScript

I am trying to write a windows JS script that iterates through a bunch of folders and deletes each one with a special program because for some reason these folders don't delete normally. My problem is ...

1 2 3 4 5