Tagged Questions

WScript refers to the Windows Script Host, particularly the Windows-based standalone script host, implemented in Wscript.exe, which is part of every Windows OS. "Windows based" means it can produce an interactive UI that employs graphical windows, dialog boxes and message boxes. The alternative is Cscript.exe, which is a console-based script host. There's a separate tag for that. Wscript can run javascript, vbscript, and scripts in other languages.

learn more… | top users | synonyms

29
votes
5answers
31k views

Windows Xp or Vista: How can I run a batch file in the background (no windows displayed)?

I know I have already answered a similar question (Running Batch File in background when windows boots up), but this time I need to launch a batch: from another batch without any DOS windows ...
7
votes
1answer
137 views

Is it possible to invoke Mathematica's diff functionality from the command line?

TortoiseSVN (as well as other Tortoise clients) include a script to diff notebook files in Mathematica. Diff functionality for Mathematica is implemented in the AuthorTools package (perhaps there is ...
5
votes
1answer
249 views

How to get the associated icon of a file in HTA (HTML/Javascript/VBScript)

I'm building an HTA application in which I need to display a list of file with their associated system icon. I'm using FileSystemObject to list the file but there seem to have no way to get the ...
5
votes
2answers
2k views

WScript.Shell and blocking execution?

I'm using WScript to automate some tasks, by using WScript.Shell to call external programs. However, right now it does not wait for the external program to finish, and instead moves on. This causes ...
4
votes
1answer
161 views

How do I identify a tab if it is open and refresh with the new hyperlink in Vbscript?

I have a script that opens a hyperlink with a variable to pull up the particular account on the intranet. However, if the "module" is open already (80% of the hyperlink is the same), I would like to ...
4
votes
2answers
2k views

Force a VBS to run using cscript instead of wscript

What is the stackoverflow approved (and hence correct) method to force a VBS to run using cscript instead of wscript - irrespective of what the user tries? A quick Google search shows plenty of ...
4
votes
3answers
800 views

Unable to reference UNC paths while using wscript.shell from an ASP script?

I'm having a problem executing a command from a command line through an ASP script using the wscript.shell object. Here is my code: inPath = ...
3
votes
1answer
84 views

How do you split a 64bit number into high 32 bits and low 32 bits in VBScript?

I've got a 64 bit number in VBScript (WScript) that I want to divide into 32 bit high part and low part. The number is represented as a string (in base 10). The largest supported primitive is a 53 bit ...
3
votes
1answer
2k views

VBScript set focus on a window in IE

I'm updating an old piece of code that uses VBScript to pull up a window in IE. For some reason, it likes to open up behind IE. Google gave me the following couple lines for setting window focus in ...
3
votes
7answers
230 views

How to show a popup without a browser

I need an "alert" type feature to troubleshoot an error. I am not using a browser and using javascript as windows administaration purposes. So is their a way to view a varibales value if I am not ...
3
votes
2answers
2k views

File permissions with FileSystemObject - CScript.exe says one thing, Classic ASP says another

I have a classic ASP page - written in JScript - that's using Scripting.FileSystemObject to save files to a network share - and it's not working. ("Permission denied") The ASP page is running under ...
2
votes
0answers
66 views

Using Javascript in HTA file to read/write from Windows registry

I'm currently attempting to write Javascript in order to read and write from the Windows registry in an HTA file. Here is the current code I am using to write: writeInRegistry = function (sRegEntry, ...
2
votes
1answer
248 views

Unicode named Folder shows ? in wscript prompt

I am facing problems with Unicode named folders. When I drag the folder to the script, it doesn't show the path of the folder properly. Simple VBScript (this is just a portion of it): Dim Wshso : ...
2
votes
7answers
3k views

CScript/WScript Prevent an error from being blocking

Currently, WScript pops up message box when there is a script error. These scripts are called by other processes, and are ran on a server, so there is nobody to dismiss the error box. What I'd like ...
2
votes
3answers
5k views

What's a good IDE to edit WScript (.vbs files) that provides intellisense? [closed]

I tried editing it in VB.net 2005 and it's giving me syntax highlighting, but not intellisense.
1
vote
0answers
34 views

What is the difference between creating a COM instance through CreateObject versus ActiveXObject?

This has been touched on here in the second answer but I don't see how it answers the question (nor does the link provided). What can ActiveXObject do that CreateObject cannot, and vice-versa?
1
vote
1answer
56 views

Windows: Cancel WOW6432Node mapping of registry keys when running reg command from 32-bit Java

I tried making registry changes by running WScript that runs reg, but it still gets re-routed to WOW6432Node. Is there a way I can get either a WScript or CMD script (or Java) to force use of the ...
1
vote
0answers
30 views

Keep App in Focus

I use wscript to launch an application on my machine. I then use this app for 30 seconds before I kill it. I do this using python - import win32com.client import time shell = ...
1
vote
1answer
650 views

CMD.exe vs cscript/wscript

So I am trying to run a VBscript via cscript.exe embedded within a powershell script. It keeps erroring out with a permissioning error. While debugging the code, I realized that the exact command will ...
1
vote
3answers
369 views

How to use the Windows scripting host “//E” command line argument?

I am trying to use the windows scripting host command line argumet to run a .js file. However, everytime I run I get this error that it cannot find the script engine irrespective of providing absolute ...
1
vote
1answer
288 views

Programmatically added a shortcut to the All Users desktop and can't remove it

In VB.NET I used wscript.shell to add a shortcut to the desktop. I didn't realize it created the shortcut on the "All Users" desktop, which means I can't delete it. I don't have admin rights as this ...
1
vote
1answer
352 views

VBS: Using WSHNetwork.SetDefaultPrinter without a print server

I'm trying to create a simple VBS logon script that sets the default printer for users logging into Server 2003 through a terminal server environment. The printer is a network printer that is not ...
1
vote
1answer
183 views

How do I access a user's instance of iTunes using WScript run as SYSTEM user?

I am trying to use JavaScript and the iTunes COM interface to add files to my iTunes library. I have written a JavaScript file that successfully adds a file to my library, but only when called from ...
1
vote
2answers
426 views

Javascript wshell.run not working properly

I'm using HTA and in it I have a function that should run a command line with wshell.run , If I'm writing this line in Windows 'Run' util it is working fine, I want it to work also in the HTA with ...
1
vote
2answers
210 views

How can I write a simple JScript input/output program?

I'm planning on using Javascript to enter the BIO tomorrow. However, I can't rely on the examiner having a browser with a decent javascript engine, so I was hoping to use Microsoft's JScript instead. ...
1
vote
1answer
599 views

Whats the best way to display a message box with a timeout value from VBA?

This question is regarding the best workaround available from those listed below, or perhaps another one that you know of. This is the question's background it comes from code like this... Set ...
1
vote
1answer
97 views

how to get the identity with which a .vbs or a .asp file executes from within itself?

I am looking for a way to get the identity of the process which executes a *.vbs file or a *.asp file. How to write code to determine the process identity from within the file itself? Suppose I ...
1
vote
1answer
114 views

Script for run script

Hello everybody I have a script on vbscript Dim WSHShell, WinDir, Value, wshProcEnv, fso, Spath Set WSHShell = CreateObject("WScript.Shell") Dim objFSO, objFileCopy Dim strFilePath, ...
1
vote
3answers
2k views

Script to download file and rename according to date on Windows Vista machine?

I need to daily run a script that will download a file from a fixed location and save it on my computer with an appropriate filename-YYYYMMDD-HHSS.ext timestamp. I need a historical record of what ...
1
vote
3answers
5k views

check if a registry key exists with WScript

im trying to check if a registry key exists and no matter what i try i always get the error message "unable to open registry key for reading" the code im using: keyPath = ...
1
vote
1answer
217 views

Unable to get WAF to run

I am trying to build the Monotooth library on Ubuntu and there is a native component which needs to be compiled. The distro from github has a wscript file and requires WAF to build. However, ...
1
vote
6answers
5k views

How to change cscript.exe to wscript.exe execution for all VBScript files?

After installing the new server, I am facing an issue. I have lot of .vbs files, all need to run in wscript, reason, I use all those command like WScript.Echo "hello" I want to be able to see the ...
1
vote
4answers
40k views

VBScript: Using WScript.Shell to Execute a Command Line Program That Accesses Active Directory

I'm attempting to execute a .NET (3.5) command line program from within a VBScript file which does two main things: Connects to an Active Directory that is on the same domain as the server the ...
1
vote
3answers
5k views

How do I check if wscript/cscript runs on x64 host OS?

I'm running a VBScript that may run under x64 Windows. I need to read a registry key from the 32-bit part of the registry. For that I use path HKLM\Software\Wow6432Node\xyz instead of ...
1
vote
3answers
2k views

How to create a file without a Command Prompt window

I'm using WinRAR SFX module to create an installation, and use its presetup option to run some preliminary tests. Since wscript can only accept vbs file, and not the script itself, I first run "cmd ...
0
votes
1answer
16 views

waf -how to add external library to wscript_build file

I tried to add an external library to my waf: the winmm.lib library it looks like this now: srcs = ['timers.cpp'] LIBS ='winmm.lib'; create_lib('timers', srcs,LIBS) it doesn't work. It says I ...
0
votes
0answers
32 views

Difference between wscript and cscript

what is the difference between cscript and wscript. Which is best for doing telent and ftp automation in windows.
0
votes
0answers
94 views

How to automate telnet and ftp in windows vbscript effectively with using wscript sendkeys

I am running the following VBScript file: set WshShell = WScript.CreateObject("WScript.Shell") WshShell.run("telnet.exe 10.10.10.10") WScript.Sleep 500 WshShell.SendKeys"root" ...
0
votes
0answers
47 views

how to wait for a command to complete its execution in windows script host

I am running the below windows script host in vbscript file. set WshShell = WScript.CreateObject("WScript.Shell") WshShell.run("telnet.exe 10.10.10.10") WScript.Sleep 500 WshShell.SendKeys"root" ...
0
votes
1answer
59 views

WScript.Shell CurrentDirectory returning the location of the calling app not current location

I have two applications. The first one calls the second. The second one needs to know where it is on the local machine. But the CurrentDirectory instruction returns the location of the first ...
0
votes
2answers
39 views

VB Script if statment

I have the code below if (LCase(Config_(C_))) like "show*" Then crt.screen.send Config_(C_) & VBCR crt.screen.WaitForStrings ">", "#" End If but when I run it I get a "Sub not defined on ...
0
votes
1answer
35 views

Is it possible to run CSSLint from WSH on Windows?

There's a CSSLint project on github. It appears to be philosophically inspired by the JSLINT/JSHINT project. It's a Javascript program that checks syntax of CSS files, and throws errors or warnings. ...
0
votes
0answers
59 views

Why doesn't WScript.Quit() work in Chakra?

I am using the Chakra scripting engine from within cscript.exe; I set up the ProgId according to the instructions provided in this answer: What is the ProgId or CLSID for IE9's Javascript engine ...
0
votes
1answer
178 views

wscript.quit parameter not available in batch error level

A simple VBScript containing the single line wscript.quit(2), called from a batch script does not pass the quit parameter value into the batch errorlevel variable as it should - the batch file only ...
0
votes
1answer
96 views

How do you wait for a command to finish executing in HTML Javascript

I am writing an HTML Menu (StartMenu.hta). This menu runs from a DVD, but before it can run it needs to copy a few files to the user's TEMP folder. These files have to be copied before the menu is ...
0
votes
1answer
249 views

handle security popup using vbscript (without QTP/Selenium)

I am automating an application login using vbscript. I am using the code - Dim objIE Set objIE = Wscript.CreateObject("InternetExplorer.Application") objIE.Visible = True objIE.Navigate ...
0
votes
1answer
348 views

WScript.Echo throwing object required error in vbscript

I'm trying to display messages as my vbscript program runs. It runs off a command prompt in xp, for example: cscript.exe test.vbs. I don't want to use msgBox while this is running as I just want it ...
0
votes
0answers
58 views

Windows Scripting can't find reference

I have a windows script file that doesn't work anymore. The script look like this <job> <reference object="Some.Component.1" /> <script language="VBScript"> x = ...
0
votes
0answers
103 views

Calling exe from javascipt throwing error “unknown exception”

I am trying to invoke an exe from javascript using WScript.Shell. This code works for invoking notepad.exe, but not for an exe which I created and installed in the computer. I am getting an error ...
0
votes
3answers
273 views

How to open a pdf with WScript.Shell

I'm creating a HTA application that needs to open PDF document. I cannot assum that the user will have acrobat installed on his PC as in this example The WScript (documentation) allow you to run a ...

1 2