Search found 19 matches

by Eagle710
25 May 2010 14:04
Forum: DOS Batch Forum
Topic: Redirect Twice
Replies: 5
Views: 7904

Redirect Twice

I am wondering if there is a way to redirect the output to both a text document and the console/command prompt so i can watch the progress. Example: test.bat dir C:\Temp Contents of C:\Temp-----Test1, Test2, Test3 Command Line: test.bat > output.txt --> Place output in txt file and I would also like...
by Eagle710
08 Mar 2010 09:15
Forum: DOS Batch Forum
Topic: Extract Data
Replies: 3
Views: 5705

Extract Data

Is there an easy way to extract data from a command line and display a portion of that data to a user?
by Eagle710
04 Mar 2010 13:07
Forum: DOS Batch Forum
Topic: Import Cert
Replies: 0
Views: 4580

Import Cert

This is a little off topic but here it goes:

How would I import a PFX certificate using command line in Vista? I have tried going through the certutil options but to no avail.
by Eagle710
31 Jan 2010 12:03
Forum: DOS Batch Forum
Topic: Warning message.
Replies: 5
Views: 9033

Re: Warning message.

What I would like is for a series of other commands to run while the user will only sees a MessageBox or warning message saying "please wait". Once the commands are done that msgbox will disappear.
by Eagle710
21 Jul 2009 06:43
Forum: DOS Batch Forum
Topic: Create an empty text document?
Replies: 2
Views: 5769

The way I managed to do it was :

Code: Select all

type nul > Process101.txt
by Eagle710
21 Jul 2009 06:25
Forum: DOS Batch Forum
Topic: Create an empty text document?
Replies: 2
Views: 5769

Create an empty text document?

Does anyone know how to create an empty text document title "Process101.txt"? I dont want to open the text editor just create the document.
by Eagle710
30 Jun 2009 09:35
Forum: DOS Batch Forum
Topic: HELP to a .bat file
Replies: 3
Views: 5865

This will work too.

Code: Select all

@echo off
echo [my text]
timeout /t 4 >nul
echo [my text 2 4 seconds later]
by Eagle710
23 Jun 2009 06:37
Forum: DOS Batch Forum
Topic: [Solved] Make USB key....
Replies: 5
Views: 8233

Thanks. The code worked great.
by Eagle710
21 Jun 2009 08:54
Forum: DOS Batch Forum
Topic: [Solved] Make USB key....
Replies: 5
Views: 8233

I want to ask the person how many times they want to run this code..... wait for a reply then loop through the code until we reach the last number......
by Eagle710
16 Jun 2009 14:13
Forum: DOS Batch Forum
Topic: [Solved] Make USB key....
Replies: 5
Views: 8233

I have the code that will format and copy the files to the USB key. I was wondering if I could pause and wait allow the user to hit enter when the next usb key is plugged in. Any help with pausing until a user hits the enter key.
by Eagle710
16 Jun 2009 14:09
Forum: DOS Batch Forum
Topic: diskpart + batch....
Replies: 3
Views: 7443

What does your code look like now?
by Eagle710
25 May 2009 15:19
Forum: DOS Batch Forum
Topic: [Solved] Make USB key....
Replies: 5
Views: 8233

[Solved] Make USB key....

I want to format a USB key a particular way and copy certain files to it. I would like to automate this because I will be setting up a few USB keys....any ideas on a good way of getting this started? I want to make a master batch file that sets this up.
by Eagle710
22 Apr 2009 12:33
Forum: DOS Batch Forum
Topic: [Solved] Loop Through?
Replies: 8
Views: 53769

I got it to work. Awesome code, I had to remove the /f from the for loop for it to work.

Thanks for your help.
by Eagle710
16 Apr 2009 14:49
Forum: DOS Batch Forum
Topic: [Solved] Loop Through?
Replies: 8
Views: 53769

Which ever one it finds run it... so if drive a... has hello.exe run. However if Hello.exe doesn't exist but bonjour does run bonjour.
by Eagle710
15 Apr 2009 14:35
Forum: DOS Batch Forum
Topic: [Solved] Loop Through?
Replies: 8
Views: 53769

If it doesn't find hello.exe I want it to check t=for the drive that has bonour.exe but instead of running hello... I want it ro run bonjour.exe in that case.