CScript refers to the Windows Script Host, particularly the console-based stand-alone script host, implemented in cscript.exe, which is part of every Microsoft Windows OS. CScript can run JavaScript, VBScript, and other scripting languages.

learn more… | top users | synonyms

0
votes
2answers
42 views

How to create a file from Wscript.Echo strLine

Just starting with VBScript: This script retrieves a file path from a text file and displays the output on the screen: Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = ...
1
vote
1answer
23 views

How do I set the timezone from command line ?

How can I set the timezone in Windows from command line or from a batch file? Do I need to use powershell or cscript?
1
vote
1answer
29 views

CScript:Timestamp since epoch in miliseconds?

I need to get the current time-stamp in mili-seconds since the Unix epoch. I got WScript.Echo DateDiff("s", "01/01/1970 00:00:00", Now()) from answer to this question: Is there a way to get ...
-3
votes
0answers
28 views

Stdin for a vbscript via cscript from cmd? [closed]

I'm a bit stuck on this, but I imagine it's fairly simple. In the following command stdin doesn't seem to get passed to the script, giving "file not found". Can anyone help to correct my command? ...
2
votes
1answer
37 views

Redirect output processed via vbscript (cscript) to file

Issue with command output: I am attempting to have a continuous ping report back to a text file. Started with: ping 127.0.0.1 -t >> C:Textping.txt Works great I also want to have ...
7
votes
2answers
475 views

Start excel from Task Scheduler was working, now fails

I've been running my excel 2000 vba program with Task Scheduler and cscript and vbscript for about a year now. A few days ago it stopped working. I can run the program manually. Whenever Task ...
0
votes
1answer
195 views

VBS Remove Readonly attribute recursivelty

I'm very new to VBS and experimenting with removing the read only attribute from a directory recursively. It's removing the read only attribute for files but not for the directories. Also The files ...
0
votes
1answer
75 views

Phonehap-Cordova error message using the create command

I have done all the necessary installations, the android sdk, java sdk, and so on. Everything runs fine when I test them, java, android, javax, ant and so on. But when I try to run the Create ...
1
vote
1answer
471 views

Copy folder contents to a created .zip file: 'file not found or no read permissions'

I'm trying to create a .zip file from an existing folder using JScript and it seems that my copyHere function is not copying to the .zip folder. Instead I get a popup box titled 'Compressed (zipped) ...
2
votes
1answer
178 views

Unable to set the default printer on a remote machine using prnmngr.vbs

I am using WMI to connect to my lab machine as a domain admin. I then run this command line to create a printer: cscript C:\Windows\System32\Printing_Admin_Scripts\en-US\prnmngr.vbs -a -p Test002 -m ...
0
votes
1answer
194 views

Cscript. How to make a multi-colored text

I'm trying to get a multi-colored text to the console using Cscript. WScript.Echo('\033[31m' + 'Some Text' + '\033[0m'); This solution does not work. Is there any way to get the multi-colored text ...
0
votes
1answer
162 views

Code improvements for counting the pages of PDF files

How can I get the value of the total pages of all PDF into the folder? I would also that the output is written into a .txt file. So, I need to know how can I get the number of the pages of all PDF ...
0
votes
0answers
174 views

WSF script which calls telnet won't run in task scheduler

If have a wsf file which remote logs into another machine via telnet, executes a command, and logs out. I have it set up in task scheduler to execute once a day. If I manually run it in task ...
0
votes
1answer
952 views

'cscript' is not recognized inside a batch

I need to call a .bat that calls a .vbs. When i run FindDir.vbs from command prompt is ok, but when i try to call it from CallingVbs.bat i got the error message. 'cscript' is not recognized as an ...
0
votes
0answers
39 views

Unable to invoke function explicitly added to global `this`

A while back I created a .NET wrapper library around CScript for running JavaScript unit tests as a part of a continuous integration build process. Today I was asked to help troubleshoot why a ...
8
votes
1answer
560 views

How do I use jQuery in Windows Script Host?

I'm working on some code that needs to parse numerous files that contain fragments of HTML. It seems that jQuery would be very useful for this, but when I try to load jQuery into something like ...
0
votes
0answers
111 views

CScript Unicode flag doesn't work in a Python program in Windows 8

I have an application that uses Python 2.5 on Windows. It shells out to a WScript to get some data. The returned data could have content in many languages, so I need to support obtaining Unicode data. ...
0
votes
2answers
672 views

There's any way to run vbscript directly to wscript or cscript command line

I want to run a vbs command from command line as I would in batch calling cmd.exe /c "echo.Hello World! & pause" Obviously this doesn't work wscript /C MsgBox("Hello world") I could print ...
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 ...
1
vote
2answers
1k views

How to execute cscript using windows task scheduler?

The problem: When I double click the .bat file it executes as expected. When I schedule it in Windows Task Scheduler it executes except the line that has cscript. Content of .bat file: @echo off cls ...
0
votes
1answer
626 views

vbscript pass the current directory as named argument

I'm trying to pass the working directory to vbscript as a named argument. The system normally expands "." to the current path, but when I check the named argument I just get the string "." Here's ...
0
votes
1answer
68 views

Change the executing path of external process

I have an external application that is run through a jscript (with cscript). The problem is that this external app reads its cfg from its executing path. For example if I click the exe it might be ...
0
votes
0answers
255 views

How to consume web service with WSDL file in Vbscript

I do not have much experience working with web services. I have a WSDL file (not a link but the file locally) and I need to consume the service in VBScript. I searched online on the topic but did not ...
0
votes
1answer
130 views

Iterating through user profiles on Windows 7 cscript.exe

i'm trying to iterate through users profiles and log each profile on a system. for /d %%X in (C:\Users\*) do ( echo %username% >> C:\%computername%.log ) The problem i'm having is i have to ...
0
votes
1answer
191 views

vbscript not working from within nsis installer but it works when i manually run it

I have a VBscript that searches for a string in an sqlite file (plaintext). It is run by my NSIS installer to determine install parameters. When i run the script from the command line it all works ...
2
votes
2answers
296 views

Windows Scripting to call other commands?

I was trying my hand at Windows shell scripting using cscript and Javascript. The idea was to take a really long Python command that I was tired of typing into the command line over and over. What I ...
1
vote
1answer
2k views

Windows Server 2008 R2 32-bit Task Scheduler

Trying to schedule a task on a Windows Server 2008 R2 box. I have a vbscript connects to an oracle database to pull data, and I want this to run at intervals. The vbs is working standalone on the ...
3
votes
1answer
267 views

How can I use JScript to create a shortcut that uses “Run as Administrator”

I have a JScript script that runs using cscript.exe. It creates a shortcut on the desktop (and in the start menu) that runs cscript.exe with parameters to run another JScript script. It looks, in ...
1
vote
3answers
2k views

cscript.exe opens a window

I have a vbs file that need to be run in 32-bit, even though I am running Windows 7 64-bit. I can launch this file with the command C:\Windows\SysWOW64\cscript.exe my-file.vbs and that works fine, ...
0
votes
0answers
130 views

cscript.exe executing myphp file. Will php redirect work there?

I have a vbs file having this code. Option Explicit Dim objIEA Set objIEA = CreateObject("InternetExplorer.Application") objIEA.Navigate ...
0
votes
2answers
3k views

How to pass a command with spaces and quotes as a single parameter to CScript?

I'm using CScript to run a VBScript file, and I need to pass a command line to the script where the parameter includes both spaces and quotes. The entire command needs to be passed as one parameter ...
4
votes
1answer
100 views

How can I package an “external” text file into an elisp module?

I'm writing an elisp module that requires an external text file. For the curious, the module integrates the interactive JS REPL for Cscript.exe with shell mode in emacs. It allows me to run an ...
0
votes
1answer
116 views

Can I create an instance of a COM struct in javascript?

I'm writing a script in Javacript that is run from the command line using cscript.exe. I have the following struct defined in a .NET assembly exposed to COM. Definition in IDL: typedef ...
5
votes
4answers
713 views

Debugging Javascript in Visual Studio (or other JS debugger)

I have a .js file that normally gets executed by cscript.exe (i.e. is not run in the browser and cannot be run there). I know, that I can feed cscript.exe the //X parameter in order to get asked for ...
0
votes
1answer
356 views

Create 32-bit COM object from 64-bit cscript script

I have a JScript script which is called by cscript. That script creates Visual Source Safe ActiveX object using new ActiveXObject("SourceSafe") code in it's internals. Everything was ok on 32-bit ...
0
votes
1answer
599 views

run vb script using script.exe

I want to run vbscript file using cscript.exe. i searched a lot but did'nt found any way while i can run my script using cmd with cscript.exe this is my code Process p = new Process(); ...
4
votes
1answer
5k views

Difference between wscript and cscript

What is the difference between cscript and wscript. Which is best for doing telnet and ftp automation in Windows.
1
vote
1answer
222 views

cscript.exe crashes after script is executed on vista 64

I use a .vbs script that works fine on windows xp. Migrating to vista 64 or windows server 2008, my script does what it has to, but after the script is done, cscript.exe crashes. I use the 32 bit ...
1
vote
2answers
273 views

Pass string with quote into a VB application with cscript.exe

I have a VB script that takes in several parameters that could include spaces using cscript, and I make the call using: nsExec::exec 'cscript.exe "$PATH_TO_FILE\program.vbs" "Something with spaces" ...
1
vote
1answer
168 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 the syntax of CSS files, and throws errors or ...
0
votes
1answer
330 views

cscript crashes when starting a process from ASP.NET Application

I´m having a problem with my ASP application. I´m getting an error from the cscript when I run a process on the server. When I debug locally the page just works fine and the process is executed ...
0
votes
1answer
114 views

Have PDF-Creator suppress warning dialog not to halt build process

I have a msbuild script that includes creation of a few PDF's using PDF creator. It's the Convert2PDF.vbs that's being used, converting doc's to PDF's, and a while ago it stopped working and none ...
0
votes
1answer
475 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 = ...
3
votes
5answers
4k views

Running Javascript with CScript?

I'm trying to learn how to run Javascript (instead of VBScript) using CScript.exe, but when I try, I get an error: cscript temp.js Input Error: There is no script engine for file extension ".js". I ...
13
votes
1answer
2k views

What is the ProgId or CLSID for IE9's Javascript engine (code-named “Chakra”)

Using .NET, I can write an app that hosts a scripting engine that complies with Microsoft's IActiveScript conventions. This includes JScript and VBScript from Microsoft, and also PerlScript, ...
1
vote
1answer
226 views

Is it possible to programatically change an msi's database on Linux

I know you can change it using cscript.exe on Windows. Is there a Linux program providing cscript-like functionality? Or is there some other way I can change the database in Linux?
0
votes
1answer
125 views

Delete a printer with the REG ADD command. Minor syntax

TO add this command using reg add cscript %windir%\system32\Printing_Admin_Scripts\en-us\prnmngr.vbs -t -p "\\ipp://dc2.Mydomain.com\2F26P" My Syntax is wrong, do you see my glaring failure? REG ...
1
vote
0answers
2k views

VBScript WSHell.Run Multiple Processes

Does anyone know how I can accomplish the following: I have a script that will run and get all users from AD with a homedir assigned and reset the permissions on this folder and everything under it. ...
1
vote
1answer
323 views

Showing running script progress in winform progressbar

I have the following code: Process scriptProc = new Process(); scriptProc.StartInfo.FileName = @"cscript"; scriptProc.Start(); scriptProc.WaitForExit(); scriptProc.Close(); And I want to hide that ...
0
votes
1answer
307 views

SWbemServices.ExecQuery - “Invalid Parameter” when adding a WHERE clause

I have the following JavaScript to execute a WMI query on a remote Windows host: var wmiLocator = WScript.CreateObject("WbemScripting.Swbemlocator"); var wmiService = wmiLocator.ConnectServer(host, ...

1 2