0
votes
0answers
29 views
Double click on CMD script in Vista does not execute script!!!
I am running Vista Home Premium.
I tried to write a script to do some simple automation.... it does not work!
even the most simple script like:
@echo ON
dir .
does not get exe …
3
votes
2answers
64 views
How to input special character in cmd?
I have written a c program that retrieves arguments from the command line under Windows. One of the arguments is a regular expression. So I need to retrieve special characters such …
0
votes
1answer
38 views
More lines in command window
Is there a possibility to get "more" lines into the command window (Console)?
When I debug my programs I output quite a bunch of lines to the window and the beginning of the ouput …
1
vote
3answers
100 views
How do I append to an environment variable in a batch file?
I don't know how to describe exactly what I'm trying to do but here's an example batch file that demonstrates what I can't figure out.:
I've got a batch file. Inside that batch f …
1
vote
3answers
118 views
How do I make Perl scripts recognize parameters in the Win32 cmd console?
When I invoke my Perl scripts in the Windows environment without invoking perl first, the parameters are not passed to my script.
For example,
C:\> C:\my-perl-scripts\foo.pl b …
1
vote
2answers
39 views
Why does Excel throw an exception on Quit when started from command line?
I have a simple Excel file that queries a database when it opens and then closes automatically.
If I double click the file to open it from within Windows Explorer (I'm running …
1
vote
8answers
131 views
Development Environment in Windows
What are your recommendations for setting up a development environment in Windows, especially when not using an IDE. I am attempting to familiarize myself with Windows, and I feel …
0
votes
2answers
42 views
Windows Shell Script: Can’t make string substitution working in subroutine…
Greetings dear Experts!
Could you please advice me on how to cope with the problem:
@echo off
cls
setlocal enabledelayedexpansion
path=%CD%;%path%
set NumberOfPages=553
rem s …
0
votes
2answers
69 views
How to redirect input in cmd
How i can redirect input for following command zip 1.zip file.txt i want the names to be ziped be taken from the file.txt file
I tried to do zip 1.zip < file.txt and it didn …
0
votes
2answers
28 views
how to pass clipboard to batch in xp
using windows xp i want to copy text (url) to the clipboard
then run a batch file that will use that url.
i know the reverse is possible with the clip.exe floating around.
0
votes
2answers
44 views
Passing a shortcut to a batch script
My bat script accepts a filepath as a parameter, which allows me to drag-and-drop a file onto it from Explorer. Unfortunately when I drop a shortcut onto it, I simply get the filep …
0
votes
3answers
139 views
Using DOS/CMD/batch files how can you show Console output, and redirect the STDOUT and STDERR streams to files?
direct console to ok.log, and errors to error.log for example
0
votes
1answer
30 views
Get server IP of PPP VPN in Windows using VBScript or CMD
Hi all,
Is it possible to use VBScript or commandline to grab the server IP of a PPP VPN under Windows?
Note this is not VPN dialup server IP.
0
votes
1answer
76 views
How do I color some Perl output in a Windows CMD window? [closed]
Possible Duplicate:
How do I color output text from Perl script on Windows?
I want to color parts of text on a Perl program run with Windows CMD but not the entire window. …
0
votes
3answers
50 views
multiple command executing in cmd?
I want to hide multiple files with the attrib <file path> +s +h but it stops after the first folder.
I have this...
@ech off
attrib z:\test +s +h
attrib C:\Documents and S …
