Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
5answers
123 views

Where does scripting fit in today

I was wondering what place scripting has in today's world of IDEs and GUIs. I'm new to programming and am wondering at what point I should, if at all, open up the PowerShell terminal for a particular ...
4
votes
1answer
195 views

How can script source position determined from inside an automation call?

I have a script host which runs JScript. There are some cases when I have to trace if a method of my exposed objects is called and from where it got called. For that I need to determine where is the ...
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
1answer
284 views

Getting Working Processes within IIS App Pools

I am looking for a way to enumerate through the Virtual Directories (Windows Server 2003) in an App Pool and get diagnostic data (specifically WorkingSet, Private Bytes, and Virtual Bytes). I've ...
3
votes
2answers
636 views

Adding a logoff script

I have some scripts that I would like to run every time a user logs off. I would like to create something that programatically sets up the logoff scripts. For example, an exe or a cmd file that can be ...
3
votes
2answers
945 views

Getting USB Storage Device Instance ID (unique ID) programmatically

Whenever user plug a USB mass storage device, how to get the Device Instance ID (unique ID) of that particular device programmatically?
3
votes
1answer
2k views

using Windows Script Host

I am using windows script host for some kind of installer application and I'm creating shortcuts in start menu with it. This problem came up when I switched to x64 environment (win7 ultimate ...
3
votes
2answers
2k views

Problem creating simple “windows script components” on Windows 7

I'm trying to get a Windows Script Component working on and x64 development machine. Works fine on x32 bit. But can't seem to get it running, I have the same problem with both JScript and VBScript. ...
3
votes
1answer
458 views

FTP files in Windows Scripting Host?

What is the recommended way to transfer files via FTP and manage (rename, move, delete) files in an FTP server programmatically in a Windows Scripting Host script file (JavaScript/VBScript)? ...
2
votes
3answers
367 views

Do MS-DOS built-in commands return an error\exit code?

I have not found a way to get the error code, if returned, of rmdir. It seems like the MS-DOS internal commands do not return an error code. Can someone confirm that? How does a script that uses ...
2
votes
1answer
438 views

How do I reliably determine folder size using FileSystemObject.Size?

Trying to compute the size of a folder that could be very large, I used FileSystemObject.Size: #! perl use strict; use warnings; use 5.10.0; use File::Spec; use Win32::OLE; my $_fso; sub ...
2
votes
1answer
101 views

How does one close an opened file with a Windows script?

I want to set up a script to be run daily as a Windows Scheduled Task. The script should open an Excel spreadsheet, wait for it to run a macro (which is set up to run every time the spreadsheet is ...
2
votes
4answers
487 views

Command Line Script to Delete Header Row from a number of TXT files

What's the best method to delete the first line of text from a large (10k+) group of text files.
2
votes
2answers
234 views

svn update: can I iterate the results?

I'm using svn in a script (Windows scripting .cmd file). Currently it checks out all files to a folder, then iterates that folder adding all the files to a master file as part of a build process. ...
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 ...
1
vote
2answers
222 views

I am unable to delete a file on the Desktop (All Users) but I could delete without the script

It crashes on wshShell.Run. You can see that I run a WScript.Echo and it does print the location of the file name. When I run it, it says the "The system could not find the file specified" I tried ...
1
vote
1answer
257 views

vbs all user desktop folder

Set objFS = CreateObject("Scripting.FileSystemObject") Set objShell = CreateObject("WScript.Shell") strCurrentDirectory = objShell.SpecialFolders("AllUsersDesktop") Set objShell = ...
1
vote
3answers
99 views

Mouse shows color

i am trying to make an application which would show which color my mouse is pointing to, i dont mean in my own application but anywhere in windows on any screen, kind of like a tag beside my mouse ...
1
vote
1answer
247 views

How to get the size of a HTA window?

You can SET the size of a HTA window but I can't find a way to GET its size. All I can think of is reading document.body.offsetWidth and .offsetHeight, but those give you the viewport size not the ...
1
vote
2answers
182 views

When to choose developpment of a PowerShell Module over PowerShell Script

I am about to write a PowerShell Script for Windows Administrators, in order to help them in certain tasks related to deployement of a web application. Is there any reason I should favour or exclude ...
1
vote
1answer
52 views

How secure is the WSC (Windows Script Components) model?

How secure is WSC? Does it always assume that it's running in a trusted environment? Will the technology persist or is there the chance that MS will kill it sometime soon?
1
vote
2answers
410 views

How Can I Script Oracle Wallet Changes?

I use the Oracle wallet to store passwords for the databases I connect to. Our password policy requires us to change our passwords frequently enough that I would like to script the changes. I have a ...
1
vote
3answers
480 views

.bat If Then Statement

I need help with writing a batch script for if file newfile.txt exists then del "InDesignData.txt" ren "newfile.txt" "InDesignData.txt" Thanks in advance, Joe
1
vote
3answers
334 views

.bat Find and Replace text

I have some files that contain some of if not all of the following: Program RxBIN RXPCN RxGroup MemberID not all files will have all of those headers but the ones that do I will need to replace ...
1
vote
3answers
137 views

Remove all redundant files in a directory

I have directoryA that gets populated as a replica of directoryB, and some files are changed or added. I want to automate the process of deleting all files from directoryA that have redundant copies ...
1
vote
4answers
162 views

Unable to parse variable length string separated by delimiter

I have a problem with parsing a string, which consists only of directory path. For ex. My input string is Abc\Program Files\sample\ My output should be Abc//Program Files//sample The ...
1
vote
1answer
125 views

How can I run a Windows shell script prior to launching an application?

Is there a way to configure an application shortcut so that a Windows shell script is run prior to kicking off the application? In my case, I want to back-up some files before the application runs. ...
1
vote
3answers
826 views

PSEXEC, access denied errors

While I'm using PSEXEC.exe getting 'Access denied' error for remote systems. Any idea about how to solve this?
1
vote
1answer
188 views

Best method to obtain current memory configuration in VBA

I am attempting to get the current users RAM configuration. I would like to use VBA to look this up and then store it in a table. I need the number of chips along with the amount of RAM on each chip. ...
1
vote
6answers
250 views

Good IDEs for windows scripting

There are any good IDE for windows scripting (VBS)?
1
vote
0answers
524 views

IWshShortcut Target Resolution in Windows 7

I've got some code to read shortcuts using the Windows Script Host, but it appears to have a problem in Windows 7. When reading shortcuts, if there is an environment variable in the target path, it ...
0
votes
1answer
13 views

can we redirect output of a batch file to a pdf file

Is it possible to redirect the output of a batch file to a pdf file? I have a batch file that runs "ss diff" (source safe command to get the differences) on all the files in a project. Right now, it ...
0
votes
2answers
33 views

parse the source safe history output and run the diff command

I am fairly new to writing batch scripts. I am trying to write a script file to achieve the following task. I have a source safe command below to get the list of files changed between two dates ...
0
votes
2answers
51 views

Scripting in Windows to create excel sheets

I have a txt file that contains data which I need to input to Excel. The problem is I have several of those files and I want to create an excel file for each. So I was thinking of scripting. Can ...
0
votes
1answer
151 views

How to capture the Return Value of a ScriptBlock invoked with Powershell's Invoke-Command

My question is very similar to this one, except I'm trying to capture the return code of a ScriptBlock using Invoke-Command (so I can't use the -FilePath option). Here's my code: Invoke-Command ...
0
votes
0answers
93 views

VBS Function with Parameters

Class GetTime Private internal_Time Private internal_isTurnedOn Private internal_CurrentUser Public Property Let isTurnedOn(ByRef vLine) internal_isTurnedOn = vLine ...
0
votes
1answer
39 views

Automatically run the curl for every entry in a text document

I am trying to eliminate entering each individual choice manually and have the curl read from a text document and run the curl automatically for every choice listed in the document. This is the basic ...
0
votes
1answer
60 views

How to stop a vb script running in windows

I'm using windows 7 I wrote a script to check whether My Laptop is running in Battery or AC current. I googled it and succedded in that. dim a a=1 Do While a=1 If IsLaptop( "." ) Then ' ...
0
votes
1answer
40 views

make a vbs script ever running in windows?

I have a vb script (say myScript.vbs) which is used to monitor a file size (say A file) and trigger mail if it hits threshold size. I made this scipt to run on my computer. But problem in this is, if ...
0
votes
1answer
28 views

windows command config file?

I'm running a few different windows command scripts that all reference the same directory. The directory I want to reference changes from day to day depending on what I'm working on. I've looked into ...
0
votes
2answers
32 views

Running Tasks Automatically on Windows 7 Desktop

I have a CSV that my computer downloads every 15 minutes automatically. I then want to automatically upload this CSV to my Google Docs account using their API. I figure I can write a simple ...
0
votes
1answer
65 views

Cygwin: How to pass parameter for a windows program?

I have a small problem with cygwin and passing parameters to a windows program. My knowledge about windows shells and so on is pretty small. A friend of mine wrote a program for windows to do some ...
0
votes
0answers
19 views

Scripting IIS 5 on windows xp

What I need to do is automate the creation of virtual directories on workstations. Basically, I need to make it so that the default configuration to a windows workstation properly sets up a .net MVC ...
0
votes
2answers
51 views

How to stop the limit the search of a DIR /S after it found something

I'm trying to look for a file in a drive in BATCH and so I used the following command: DIR c:\directory* /s/b | FIND "filename.txt" the problem is once I find the file, it still searches... So I was ...
0
votes
1answer
114 views

How to evaluate Xpath when DOCTYPE present in XML declaration

I have problem with evaluation XPath expression in Windows Script Host using JScript when is present on top of document. When I remove DOCTYPE parsing doesnt break. Here is sample of code that I am ...
0
votes
1answer
93 views

Windows programming - send email script

Looking for a simple script that would run on windows 2003 server that would basically send me an email. What I plan to do us the windows services auto recovery manager to trigger the script. I did ...
0
votes
2answers
92 views

javascript fill array from .txt

I've got an array in a .js file, but I would like to be able to create my arrays in a .txt file by single lines (no commas). So an array looks like: pickWords = [ "Hi!", "Welcome!", "Hello!" ] ...
0
votes
2answers
128 views

Writing a Windows Command Script to automate a C# code

I am writing my very first command script as part of a work project. I have written a Visual Studio 2008 C# code that will grab data from a MS Access table then imputs the data into an Oracle table. ...
0
votes
3answers
66 views

Windows shell scripts in C#

I was pretty sure that some months ago I read about the possibility to launch Windows scripts not only the usual .bat, but also .js, .vbs and .cs ! I was willing to try windows scripts in .cs this ...

1 2