Hey man, all is forgotten, you live and you learn, right?
Sorry about my attitude as well...
Paul
Search found 20 matches
- 01 Feb 2012 21:05
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
- 31 Jan 2012 20:48
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
Re: Making Force Close Batch
With all due respect, and I really mean that, you are being childishly infantile.
If you take offense when warned of danger,
you should stop doing things you do not understand.
Yes sir, thanks for your advice.
- 30 Jan 2012 21:09
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
Re: Making Force Close Batch
That said, and no offense intended, but this is one of those cases where I opine that if you have to ask then you probably shouldn't be doing it to begin with
It was taken offensively...thanks for your help when someone is trying to start learning something new....
- 30 Jan 2012 21:06
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
Re: Making Force Close Batch
Thanks for your 2 cents.
- 30 Jan 2012 20:34
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
Re: Making Force Close Batch
@echo Off color A4 :chooseProgram set /p task="Hey, %username% what do you want to close?" goto program :program taskkill /f /im "%task%" if ERRORLEVEL==1 goto chooseProgram :leaving cls echo Y=yes echo N=no set /p task2="Are you done, %username%?" if %task2%==N goto c...
- 30 Jan 2012 19:53
- Forum: DOS Batch Forum
- Topic: Making Force Close Batch
- Replies: 10
- Views: 12173
Making Force Close Batch
Hey guys, making a batch to force any processes I chose to close...I have it running fine...just a simple code.... @echo Off color A4 :chooseProgram echo. set /p task="Hey, %username% what do you want to close?" goto program :program taskkill /f /im "%task%" exit But, I was wonde...
- 15 Sep 2011 18:48
- Forum: DOS Batch Forum
- Topic: Email
- Replies: 9
- Views: 12406
Re: Email
you would think you could just create command that uses local internet connections to send a simple email
- 15 Sep 2011 18:40
- Forum: DOS Batch Forum
- Topic: Email
- Replies: 9
- Views: 12406
How to create a batch file that will send an email to a named address.
- 05 Jun 2011 20:46
- Forum: DOS Batch Forum
- Topic: Having trouble with one thing
- Replies: 2
- Views: 3665
Re: Having trouble with one thing
That worked, thanks guy!
- 05 Jun 2011 20:37
- Forum: DOS Batch Forum
- Topic: Having trouble with one thing
- Replies: 2
- Views: 3665
Having trouble with one thing
i cant seem to get it to run the skype code @echo Off color F0 :chooseTask echo Internet = i echo Program = p echo. set /p task="Hey, %username% what do you want to do?" if "%task%"=="i" goto chooseBrowser if "%task%"=="p" goto chooseProgram :chooseP...
- 02 Jun 2011 17:37
- Forum: DOS Batch Forum
- Topic: message box
- Replies: 8
- Views: 10143
Re: message box
that code didnt work....
- 02 Jun 2011 16:47
- Forum: DOS Batch Forum
- Topic: message box
- Replies: 8
- Views: 10143
message box
how to make a message box in batch?
- 30 May 2011 20:11
- Forum: DOS Batch Forum
- Topic: why doesnt this one work?
- Replies: 4
- Views: 4924
Re: why doesnt this one work?
nevermind i got it @echo Off color FC :chooseBrowswer echo Firefox = f echo Internet Explorer = i echo Google Chrome = g echo. set /p browser="Hey, %username% choose a browser." if "%browser%"=="f" goto firefox if "%browser%"=="i" goto internetexplor...
- 30 May 2011 20:06
- Forum: DOS Batch Forum
- Topic: why doesnt this one work?
- Replies: 4
- Views: 4924
Re: why doesnt this one work?
still doesnt work @echo Off color FC :chooseBrowswer echo Firefox = f echo Internet Explorer = i echo Google Chrome = g echo. set /p browser="Hey, %username% choose a browser." if "%browser%"=="f" goto firefox if "%browser%"=="i" goto internetexplore...
- 30 May 2011 19:58
- Forum: DOS Batch Forum
- Topic: why doesnt this one work?
- Replies: 4
- Views: 4924
Re: why doesnt this one work?
would you say set %browser% = iexplore.exe
or set browser = iexplore.exe
?
or set browser = iexplore.exe
?