0
votes
3answers
38 views

cmd /C “MyBatch.bat Param1 Param2 Param3” works under WinXP but fails under Win7

This command is in the middle of a large batch file that has worked problem-free for more than 5 years under Windows XP, but when run under Windows 7(32bit) it reports "MyBatch.bat is not recognised ...
0
votes
1answer
57 views

Copying Multiple Subfolders to New Location with Same Layout (XP DOS)

Alright all here at stackoverflow I've frequently visited this site and always found what I was looking for. Unfortunately I think I am in a bit over my head on this one. So I made an account and ...
0
votes
2answers
61 views

How to schedule task with gui programattically

(I'm working under Windows XP) A simplification of the approach I'm taking (which isn't working) is as follows: C:\>schtasks /create /tn "MyTask" /tr "mspaint" /sc daily /st 11:43:00 /ru "System" ...
-1
votes
1answer
37 views

windows xp : running exe from an image [closed]

My friend is doing some college project and he needs to run exe file from an image. I search on the net and tried : D:>copy /b RainyDay.jpg + "vnc viewer.exe" qw.jpg but when i click on qw.jpg, ...
0
votes
1answer
40 views

net view troubles in cmd

Ok so ive been looking online with no luck to find an answer to fixing my net view command issue. The error is as follows: C:\windows\system32>net view_ There are no entries in the list ...
2
votes
1answer
111 views

Not able to run netsh command in Win XP machine

I want to Reserve the port and port binding with programmatically with the following code: private void PortReserve() { try { System.Diagnostics.Process process = new ...
1
vote
2answers
63 views

.bat Works in NT-based Windows But Not DOS or 9x?

I wrote a batch file for a legacy DOS system for games that do not run on Win32. The code works fine under XP x86 but when I run it in 98SE or in DOS I get a Syntax Error after the first prompt. The ...
1
vote
2answers
94 views

CMD For /f loop dropping first char on second (*) token

Any ideas on why the below type'd batch file's for /f loop would be not displaying the first character of the second token (*) on Windows XP (only)? NOTE: set "test=%%a" is to solve the issue with ...
1
vote
3answers
125 views

Capture output command CMD

Platform Windows XP When writing a command file (.bat) how can i "catch" the output from a command into a variable ? I want to do something like this SET CR='dir /tw /-c b.bat | findstr /B "[0-9]"' ...
0
votes
1answer
83 views

Checking for <cr> in if statement in Windows Command Prompt

As per my corrected answer to another question it seems that Windows XP doesn't strip <cr>'s from for /f output. How can I test for the existance of <cr>'s in the output? What I ...
0
votes
1answer
111 views

create a python shell environment launcher to use pyQgis

I am trying to modify the shell launcher found at "http://inasafe.linfiniti.com/html/id/developer-docs/platform_windows.html" so that I can use it to directly launch any shell I'd like (in my case, I ...
0
votes
1answer
103 views

How to recode Windows XP %PROGRAMFILES% for Windows XP and later

How should I recode a Windows XP cmd batch file containing the commands below to work also on later Windows where the two .exes may be in Program Files (x86)? start "GW" /WAIT ...
0
votes
1answer
155 views

How to replace dll files in program files by cmd/bat

I'm trying to do bat file which replaces some dll files under program files\file... I just can't find solution to do this. I have some win xp and windows 7 computers to run this bat and I'm using ...
0
votes
0answers
60 views

Wicked issue when .bat renaming in Windows XP

I need a hand here. I'm running a .bat file in Windows XP that will rename no extension filenames into .csv files. I have four csv files with no extension, and I want to rename them with a ...
1
vote
1answer
78 views

Troubles with opening cyrillic file path from explorer in Windws XP

Operating system: Windows XP SP3 Trying to define commands to open some file-types from context menu or directly from explorer and having the following problem: standard "C:\Program Files\SQLite ...
2
votes
3answers
1k views

Using SAS and mkdir to create a directory structure in windows

I want to create a directory structure in Windows from within SAS. Preferably using a method that will allow me to specify a UNC naming convention such as: \\computername\downloads\x\y\z I have ...
1
vote
3answers
1k views

CMD Batch file: How to use a text file to input commands

I am creating a batch file to siliently install nodejs on a Windows XP machine. I am trying to automate the installation of node module dependencies (npm install). I would normally issue npm ...
0
votes
1answer
645 views

how do I make the txt output from a .cmd file contain the current date and time in the filename?

I have a script that scans computers for a certain registry entry. I want to make it to where after the scan the text file that is created, to include the date and time of day as part of the filename ...
2
votes
1answer
337 views

tasklist output used in pipe is broken

OS: windows XP In a cmd shell, piping the output from tasklist /v does some weird things. I am trying to pipe to grep so I can filter the output, and the results are intermittent and inconsistent. ...
0
votes
1answer
109 views

CMD batch not liking error redirect

I'm learning the ins and outs of batch programming, and I've hit a small snag. I'm trying to recursively loop through a directory (and subdirs) to find suitable .vob files. All is well, except my ...
0
votes
2answers
456 views

Ruby: No such file or directory — C:\Documents <LoadError>

I'm just learning Ruby and making a simple Hello World program, put for some reason the command prompt can not find the directory (which is C:\Documents and Settings\Matt\My Documents\Ruby Testing ...
0
votes
1answer
292 views

How to correctly escape double-percent parameters, i.e. %%x to correctly show them in echo output

What I'm trying to do is to put a simple echo message on the console saying: variable named %%x has value of 'this is text inside the variable so command I must do must escape the percentages that ...
0
votes
3answers
60 views

can get out some data from call to a label in cmd file?

this example isn't working: call :testcall > %output% goto :eof :testcall echo return goto :eof :eof I need that %output% contained return string.
0
votes
1answer
58 views

how to check if given file lies anywhere under given directory by command line in windows xp?

So for example i need to check if file C:\windows\system32\whatever.dll lies in c:\windows. Is it possible in a manner like if not exists ..., but here if %file% lies in %directory% ? edit: I know ...
1
vote
1answer
87 views

is it possible to automatically escape variables in xp bath (cmd) scripts?

so in *.cmd file I have: set /p variable=user input here And now I'm supposed to do sth with this variable, but user may put here anything, even characters that are disallowed if unescaped. So have ...
0
votes
0answers
216 views

Win XP: If NET SEND is disabled, is there still a way to send messages across network via cmd?

I'm working on a project that will popup on a logged in network computer, but hit a stall when I realized that NET SEND isn't enabled on the network. Is there another viable option (assuming regular ...
0
votes
1answer
237 views

c# new Process().Start() doesn't work on windows xp IIS 5.1

I am trying to change the system date and time using cmd. I can run the cmd manually with command prompt and it works. It doesn't work when IIS5.1/XP is hosting it. Here is the method I use to run the ...
6
votes
8answers
18k views

How to create ls in windows command prompt?

I want to use ls in windows command prompt and make it run the dir command. How can I do that?
0
votes
1answer
227 views

Unable to run file using Schtasks , in win 7

Using Schtasks command i create a job. schtasks /create /sc minute /mo 20 /tn "My App" /tr c:\run.bat it created successfully and run also. Inside the run.bat file file i write this code : dir ...
0
votes
1answer
152 views

Command to check the number of pages passed to the printer

I have a batch file that prints a bunch of PDFs, and I want to be able to iterate a command over the amount of pages that the print job has sent to the printer. Is there a CMD command to pull the ...
0
votes
2answers
428 views

Temporarily interrupt SETLOCAL

I have a script that has a lot of use of the SETLOCAL ENABLEDELAYEDEXPANSION command, so I start the script off that way (less headaches). However, it does not allow you to use the ! character without ...
2
votes
2answers
47 views

Is redirection recognized as a argument when executing a script/program?

I have a batch-file program that gets called from another batch-file so I can redirect error output to a file. When you run the commmand START /B "C:\Some\Script" 2>"C:\Some\Log.log" Is the ...
0
votes
2answers
97 views

dir lists up until filenames starting with “c” then says file not found

I have a computer that does not show all of the files in windows explorer or when doing a dir from command line. When browsing in windows explorer - it goes up until file "cat.doc" then no more. If I ...
0
votes
1answer
176 views

Remove the box character when doing a copy file + file

When doing the copy file + file command in windows XP CMD, the file with the appended information will have a box character at the end of the last line. And subsequent copy file + file commands will ...
2
votes
1answer
423 views

XCOPY /d - does it support time as well as date?

XCOPY /d is documented to take a date in the form dd-mm-yyyy but I can't find any mention of similar support for time. Is there (or a workaround even) or do I have to download another command line ...
8
votes
5answers
34k views

IF… OR IF… in a windows batch file

Is there a way to write an IF OR IF conditional statement in a windows batch-file? For example: IF [%var%] == [1] OR IF [%var%] == [2] ECHO TRUE
1
vote
1answer
114 views

“Last modified” time in the title or statusline

What would be the easiest way to display the last modified time of a file (the time at which the file was saved last) in the title or in the statusline? I have a few ideas, but they all require ...
1
vote
2answers
870 views

How do you change file association for .py Python files in XP?

When I type assoc .py I get .py=py_auto_file. When I type ftype py_auto_file I get py_auto_file="C:\Program Files\Adobe\Photoshop 7.0\Photoshop.exe" "%1" How do I make py_auto_file="C:\Python27"?
1
vote
3answers
930 views

“for /f” doesn't set variable using cmd.exe batch file

rmtshare \\server\sharename$ | for /f "tokens=3,4,5 delims=\" %%A in ('find "Path"') DO SET path1=%%A\%%B\%%C echo %path1% It will do everything up to the set area. I want to take out the physical ...
2
votes
4answers
1k views

Batch Script - ECHO into multiple files

How can I echo a line into multiple files in a single command? Example: ECHO Hello World! into file1.log and file2.log EDIT: Windows-XP Batch Script CHALLENGE: Give me a one-liner =D. If it can't be ...
2
votes
3answers
2k views

Batch file to delete all folders in a directory except a specified list

I'm looking for a batch file that will go into C:\Documents and Settings\ and delete all folders except a few that I want to keep.
1
vote
1answer
1k views

Using an OR in an IF statement WinXP Batch Script

Is there a way to pass an OR through an IF statement? Such as: SET var=two IF "%var%"=="one" OR "two" OR "three" ECHO The number is between zero and four.
1
vote
3answers
3k views

How to open a file from network drive/path with default program?

from my application I want to open files (jpg, pdf, ..) with the default windows-program from network drives. I know start, but it doesn't seem to work for network paths. I tried the following ...
1
vote
1answer
534 views

Loop for hidden folderes in Windows

How can I loop through all hidden folders, in windows-cmd? This code FOR /D %i IN (*) DO @echo %i handles only non-hidden folders.
1
vote
1answer
115 views

Trouble copying a file in a Windows batch script

I'm using Windows XP. I have a batch script that contains pushd \\remote.mydomain.com\selenium\ FOR %f IN (selenium*.jar) DO copy %f C:\selenium in which \remote.mydomain.com is a shared ...
1
vote
2answers
2k views

prevent the problem of space in windows folders in the command line

As we know that windows, we can create folders with a name contains spaces(Hello World,New Folder,My Programs). In the commandline if we use start c:\Hello World\mygame.exe , it gives error called ...
0
votes
2answers
346 views

Remove the parent directory name from the echo %cd% command

We know that echo %cd% command print working directory, Assume that it is "C:\test\bin\run" I want to know how to remove "run" from the string. second time "run" directory can be "stop" directory. ...
0
votes
2answers
475 views

How to run external executable (.exe ) in C++

I'm not a developper. We want ( me and our team)to write a tool in C++ that can print a PDF ( Send a PDF to printer). We tried to use external tool, like a command line pdfprint.exe, using ...
0
votes
1answer
455 views

run a command line entry in windows xp on login

I am having issues with credentials being cached on a few of the laptops that area available to students at my university. I have found that if i remove (remove not edit to NULL) a registry entry at ...
2
votes
5answers
980 views

Why do I require multiple EOF (CTRL+Z) characters?

As a little background, I am quite new to the C Programming Language and as such have been attempting to work through some of the exercises in the second edition of the Kernighan & Ritchie manual. ...

1 2