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 ...

learn more… | top users | synonyms

0
votes
0answers
39 views

Update XLSM (macros) via VBS, Current Directory

I am trying to run an excel macro via a scheduled task. I found a good working method here. My version of that vbs is here: Option Explicit On Error Resume Next ExcelMacroExample WScript.Echo ...
0
votes
0answers
16 views

Generating the Computer name in SharePoint 2010 Form

Good Morning- I am trying to find a way to return the Machine Name in a SharePoint column. I have tried using a calculated column and the below function but have not had any success. Any help would ...
0
votes
1answer
45 views

How can I execute exe file (which writes a txt file) in classic asp

I want to have a server page which executes a exe file compiled based on C the exe file is filew.exe generated by filew.c; filew.c> #include <stdio.h> int main () { FILE * fp; fp = ...
0
votes
3answers
83 views

.vbs script won't run batch / how to run batch silently

I have a batch file that I want to run silently. So, i was goolging around and come up with following code... invMybatchfile.vbs Dim curPath curPath = ...
0
votes
0answers
77 views

SendKeys not working in Windows 7

I am using this code in windows 7 ultimate and it is not working to allow me to sign in to a site. Does anyone see anything wrong with it? set WshShell = WScript.CreateObject("WScript.Shell") ...
0
votes
1answer
42 views

Rename a vbscript process

When we run a *.vbs file, in processes, we used to get "wscript.exe". We can change this "wscript.exe" to our custom name by creating a shortcut and executing the shortcut. Is it possible to display ...
0
votes
1answer
66 views

PHP script stopping right after “$com = new Com('WScript.shell');”

I'm trying to debug a huge php script file that when reaches this line $com = new Com('WScript.shell'); The whole script just dies and stops working. I'm debugging in using Eclipse PDT. I tried ...
1
vote
0answers
37 views

javascript library which emulates Windows' WScript object?

I'm looking for an emulation, in javascript, of the WScript object. I've started by creating such an object and defining methods and properties that work like the WScript object. My goal is to wrap ...
0
votes
0answers
112 views

how to return data from ActiveXObject(“WScript.shell”) to javascript code

I want to return data from my custom program that is called with JavaScript added to my website. The following sample code calls my program, but I don't known how to return message from a C# .NET ...
0
votes
1answer
53 views

Scheduling task in Windows involving SCP, SSH

I am running the following script in Windows 8 using Git Bash; works fine when run manually--scp, ssh, etc. all work fine. But it does not work when put into Task Scheduler. The Task Scheduler ...
2
votes
1answer
141 views

How to install script language documentation locally for Visual Studio 2012

I can only find documentation of VBScript, JScript and the Windows API scripting support (WScript etc.) online. No matter what I install locally, apparently it's not the documentation set that ...
0
votes
0answers
23 views

Update Reference in WSC using PerlScript

I set up a Windows Script Component (wsc) in which I use Perlscript as a language. Similiar to the code below : ... <public> <method name="changeRef"> <parameter ...
0
votes
0answers
164 views

Win2003 WScript.Shell works with cmd but not through ASP

Thanks for reading this. I've been stuck for hours and I'm sure I'm missing something simple. Its a Win2003 server, I log in through RDC as a member of the administrators group. Windows Script Host ...
0
votes
2answers
448 views

Using HTA in vbscript

While using HTA userform for VBscript, I found that HTA doesn't support WScript and its objects/methods. Is there any alternate way of creating userform or is thery any way to make HTA support ...
1
vote
1answer
443 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) ...
0
votes
1answer
40 views

Cannot find the type library for this reference

I'm having troubles registering windows script file. When I'm trying to do so it says "Cannot find the type library for this reference Some.Reference" Basically, behaviour is very similar to one ...
0
votes
0answers
97 views

“Make New Folder” on a Microsoft Shell.Application.BrowseForFolder window - doesn't rename the folder on the filesystem

So I have the following code to wrap the Shell.Application.BrowseForFolder() method. It's adapted from ...
1
vote
1answer
63 views

Print binary data WScript

I am using the last example on this page in WMI to print out some Windows System Log information: http://msdn.microsoft.com/en-us/library/aa394593(VS.85).aspx I would also like to print out the ...
0
votes
3answers
134 views

converting windows based script file to exe file

I had created WScript file, and I need to make it .EXE file so nobody can access my code, is there is anyway to do that ? I just want to hide my code from other users who may use the script file.
1
vote
2answers
187 views

How can we recognize two excel.exe proceeses opened by different object?

I have an .vbs file which is working on an Excel workbook. now suppose a situation arsie where in the system 3 EXCEL.EXE processes are running.So now is there any way to find out which one is opened ...
0
votes
2answers
1k views

Automatically close MsgBox in vbscript?

I am using VBScript to code some automation on excel. I have a MsgBox() within the code, and am looking for a way to close the pop-up window created by MsgBox() automatically without human ...
0
votes
1answer
201 views

Can VBScript run on protected sheet of an Excel?

I am using VBScript to make lots of calculations on different sheets on the same workbook. Now one concern is if somehow someone deleted any of the sheet, the script would then lead to massive data ...
0
votes
2answers
155 views

Is it possible the Serialization in .vbs script?

I have combined some of my codes into the below: Option Explicit Dim oShell : Set oShell = WScript.CreateObject ("WScript.Shell") Dim FSO : set FSO = ...
0
votes
2answers
959 views

can .vbs file be a scheduled script?

I have written a .vbs script which presently is run manually by users. How can I make this script schedule itself in Task Scheduler (to run at a fixed time each day automatically) on Windows XP and ...
0
votes
4answers
228 views

Can we convert such 20:72:84(hh:mm:ss) duration to 21:13:24 (hh:mm:ss) format Without Loop?

Is it Possible in VBScript to convert such 20:72:84(hh:mm:ss) duration to 21:13:24 (hh:mm:ss) format? Yes obviously we can Loop through it but I want to avoid such Loopy technique. CODE As per the ...
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 ...
-1
votes
1answer
243 views

In VBScript is there any way to get the fullpath to a file which can be present in any directory?

Currently I am using hard-code PATH to a .EXCEL file in my Scripting language,Like as below: Set objExcel1 = CreateObject("Excel.Application") strPathExcel1 = ...
1
vote
2answers
207 views

IsEqual object available in VBScript for the ArrayList classes?

Please find the below code: Option Explicit Dim TempArr Dim ArrListChildDetails : Set ArrListChildDetails = CreateObject("System.Collections.ArrayList") Now I have assigned some Range object to ...
0
votes
1answer
83 views

Does dictionary objects allows to add key as null at the rumtime addition or throw exceptions or skip them?

Suppose I do have an array list say: Dim Set myQueue= CreateObject("System.Collections.ArrayList") Dim Set Dic = CreateObject("Scripting.Dictionary") Now I perform the below: ...
0
votes
1answer
245 views

Can we Assign an ArrayList like an normal 1D array to the Excel range?

Consider the below ArrayList: Dim myAL As New ArrayList() myAL.Add("The") myAL.Add("quick") myAL.Add("brown") myAL.Add("fox") myAL.Add("jumped") myAL.Add("over") ...
8
votes
1answer
542 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
110 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. ...
1
vote
1answer
53 views

How to search for a variable in a text file using VBS

Need help with a piece of code I'm writing. I'm new to scripting so please forgive. Basically in the code below I have intBusyThreads increment by 1 everytime it finds the text "Busy working Thread ...
0
votes
0answers
287 views

How to make wscript.shell to run safe

We have a classic ASP Web application which is configured to run under Anonymous Access. Application runs under a specific Account created specifically for the application. On the Login page we have ...
0
votes
2answers
626 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 ...
1
vote
1answer
646 views

VBS WScript.Shell Run for a .htm File Hangs IE

I am trying to use WScript.Shell.Run to open a file. The file isn't always the same type and I want to rely on Windows using the default program to open the file. For .txt with Notepad set it works ...
0
votes
1answer
694 views

VBscript Unable to Run Shell Command

I have set up the following Sub to run shell commands quickly and easily. This script works for the login scripts at my company without fail. I am currently developing a script to add a large batch ...
1
vote
0answers
54 views

Read Message from Error Message Dialog Box using WScript

Problem Definition : Write wscript to click "OK" button of a Error Message DialogBox and get/read what the Error message is given in the DialogBox. Error Message is generated from validation of Excel ...
0
votes
0answers
74 views

Working with ADSI WinNT Provider (WinNT://) from Silverlight

From JScript, I can instantiate an instance of ADSI's WinNT provider: var oGroup = GetObject("WinNT://./Administrators,group"); Is there a way I can work with this provider from a Silverlight 5 ...
2
votes
1answer
475 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 ...
0
votes
0answers
719 views

wscript.exe - Windows XP vx Windows 7

I have several vbs scripts which use wscript.exe as a way for us to pass the administrator password so that the users (all off-site users) never have to see it. These work fine in Windows XP, but I ...
1
vote
0answers
39 views

800a0ad error in VBS, Windows 7 32

I wrote a simple ActiveX Dll object with C++ & ATL (VS2010) for using in VBS scripting engine embedded in a SCADA system. It's just a code carcass now, just interfaces with stubs, no dependencies. ...
0
votes
0answers
159 views

How can I edit the configuration settings of a web application using the IIS7 WMI Provider?

I'm trying to automate the creation of an IIS Web Application using the IIS7 WMI Provider and Windows Script. I can create the application itself, but so far I have been unable to subsequently amend ...
0
votes
1answer
615 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 ...
1
vote
0answers
239 views

VxWorks: Need to redirect output to null

-> version VxWorks (for Company MMC-C PPC82XX F2000) version 5.5.2. Kernel: WIND version 2.6. Tornado version seems to be tornado2.2.2_PPC. Please bear with me as VxWorks is ...
1
vote
1answer
72 views

silverlight-4 com-interop Cannot invoke a non-delegate type

This silverlight code throws an error "Cannot invoke a non-delegate type" var WshShell = AutomationFactory.CreateObject("WScript.Shell"); var WshSysEnv = ...
1
vote
2answers
2k views

How can I determine if a file is locked using VBS?

I am writing a VB Script to update some files on the network. Before beginning, I want to know if any of the files are locked. I'd like to do this before I actually do any updates. I am aware that I ...
0
votes
3answers
265 views

Unable to resolve user environment variable correctly

I am trying to resolve %USERPROFILE% using WScript.Shell. When I create a vbs file and run directly from Windows, I get the correct path for the logged-in user C:\Documents and Settings\Administrator ...
1
vote
1answer
98 views

how to set IIS6 logfile location

I have tried this: c:\inetpub\AdminScripts\adsutil.vbs set w3svc/1/logfiledirectory d:\logfiles\iis6 on our Windows Server 2003 machine but there is an error : Windows Script Host ...
0
votes
1answer
189 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 ...

1 2 3 4