Search the web
Sign In
New User? Sign Up
batchworld · Batch World
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8090 - 8119 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8090
Hi All First thanks for all the help in the past this is really a great group.. I have a task where i have to go through a few process to kill one so i was...
habs3
Offline Send Email
Jul 6, 2009
4:32 pm
8091
... Try this (untested): @Echo Off ... set INPUT= set /P "INPUT=Enter Process Name to kill (filename.exe): " if not defined input goto :start set allowed=0 for...
foxidrive
Offline Send Email
Jul 6, 2009
5:04 pm
8092
Hi Thanks for the quick response. this works but kills any process i put in. I only want the ones that are in the list. ________________________________ From:...
habs3
Offline Send Email
Jul 6, 2009
5:33 pm
8093
... change if allowed EQU 0 goto :error to if %allowed% EQU 0 goto :error and it could fix it. If not then put in echo pskill %input% pause and see what is...
foxidrive
Offline Send Email
Jul 6, 2009
6:27 pm
8094
Thanks Again I did the output with the pause and it does show the right process after pskill. I added notepad to the script to test with. It states that it...
habs3
Offline Send Email
Jul 7, 2009
2:14 pm
8095
... This works here under XP: @Echo Off ... set INPUT= set /P "INPUT=Enter Process Name to kill (Filename.exe) : " if not defined input goto :start set...
foxidrive
Offline Send Email
Jul 7, 2009
2:59 pm
8096
Excellent... This works for me now as well. I think the issue was on my part why doing a copy and paste into notepad. there seems to have been an extra space...
habs3
Offline Send Email
Jul 7, 2009
7:23 pm
8097
To the moderator or anyone that knows him: A member has alerted me that new registrations to batchworld are not being processed - if someone knows the...
foxidrive
Offline Send Email
Jul 8, 2009
7:43 pm
8098
Hi, I am using this batch file to create another batch file in %tmp% which will delete "C:\webserver" ... cd /d "%TMP%" "%TMP%.\Uninstall_EasyWebServer.cmd" My...
Aristos Vasiliou
aristos_vasi...
Offline Send Email
Jul 12, 2009
9:18 am
8099
On Sun, 12 Jul 2009 12:17:29 +0300, "Aristos Vasiliou" ... %temp% is normally the place rather than %tmp% There may be a permissions issue because it is in the...
foxidrive
Offline Send Email
Jul 12, 2009
3:23 pm
8100
As always, you're the best Mic :) Thanks ________________________________ From: batchworld@yahoogroups.com on behalf of foxidrive Sent: Sun 7/12/2009 6:23 PM ...
Aristos Vasiliou
aristos_vasi...
Offline Send Email
Jul 12, 2009
4:43 pm
8101
You can always reverse the original string, and then process the reversed string front to back for what you need to accomplish. Sample code which will reverse...
giskier
Offline Send Email
Aug 8, 2009
3:35 pm
8102
Be careful with the URLs below - I don't think nabble.com it affiliated with batchworld at all. They could be links with malware exploits. On Sat, 8 Aug 2009...
foxidrive
Offline Send Email
Aug 8, 2009
3:51 pm
8103
Cheers mate ;o) 2009/8/8 foxidrive <foxidrive@...> ... [Non-text portions of this message have been removed]...
Theodorik OBroin
theodorik.obroin@...
Send Email
Aug 8, 2009
5:28 pm
8104
You can use a command in the form for /f %p in (myfile.txt) do call :ProcessLine %p goto :EOF ... rem Add code here to reverse the line (which is %* since its...
giskier
Offline Send Email
Aug 8, 2009
8:32 pm
8105
In your code to process each line you add the following (which will take the first five letters of the variable and compare to zero. (including period)). As...
giskier
Offline Send Email
Aug 9, 2009
3:16 pm
8106
The link is not malicious. I am simply informing you of a great tool for batch files in a forum for batch files. If you don't want to click, just do a search...
giskier
Offline Send Email
Aug 9, 2009
3:17 pm
8107
On Sun, 9 Aug 2009 08:14:26 -0700 (PDT), giskier ... How are these posts getting to batchworld? Are you gating them yourself? Do you have permission from...
foxidrive
Offline Send Email
Aug 9, 2009
3:59 pm
8108
I missed the closing quote: %str:~0,5% Good Luck GISkier ... -- View this message in context:...
giskier
Offline Send Email
Aug 9, 2009
6:14 pm
8109
... set HelpVar=%1 if /I "%HelpVar:~0,5%" == "zero." ...etc... GISkier ... -- View this message in context:...
giskier
Offline Send Email
Aug 10, 2009
4:00 am
8110
There are 2 ways to return from a call 1) goto :EOF 2) exit /B X In way 2, X is a number, and the errorlevel variable will be set to X. Example for %p in...
giskier
Offline Send Email
Aug 11, 2009
4:27 am
8111
Hello, Is there a way to add some kind of progress indicator in a batch file? Maybe stars, or something going like this \|/-\|/- You know something like a...
Aristos Vasiliou
aristos_vasi...
Offline Send Email
Aug 12, 2009
2:46 pm
8112
Hi, Cheers for getting me to look at this again. I find the easiest way is to update the title - that way you don't have to do a CLS all the time. The reason...
Theodorik OBroin
theodorik.obroin@...
Send Email
Aug 12, 2009
4:48 pm
8113
Check out this post on stack overflow: How to code a spinner for waiting processes in a batch file? ...
Josh Fitzgerald
aphoric
Offline Send Email
Aug 12, 2009
5:12 pm
8114
Hi, Thanks for your reply. This is my batch file so far. @ECHO off title Installing Software ECHO. ECHO Instaling Net Framework dotnetfx35.exe /qb /norestart ...
Aristos Vasiliou
aristos_vasi...
Offline Send Email
Aug 12, 2009
7:58 pm
8115
Hi, Cheers to Josh for his link. I've taken the batch file listed there, and together with your script, have created a different script. I dunno about you, but...
Theodorik OBroin
theodorik.obroin@...
Send Email
Aug 13, 2009
1:01 am
8116
Hi All, This is my first email in this group. even though i got lots of usefull resources from this group, but recently getting into the batch files. at the...
Omer Mohammed
omer_161
Offline Send Email
Aug 27, 2009
3:43 am
8117
Hello Omer.Try something on the lines of: type PrintMe.txt >> prn Where you need to print the entire contents of the file directly. However, if you wish to...
Parag P. Doke
paragpdoke
Offline Send Email
Aug 27, 2009
4:33 am
8118
Just to let you know you have encountered a defect in your nas product, Windows OS from 2000 on employ a time stamp with a 64 bit value, some samba based NAS...
bslasch
Online Now Send Email
Aug 28, 2009
4:52 am
8119
Batchworld MkII continues the good work of the Batch World group, where the moderator has disappeared and locked the group. I am the moderator of the new...
foxidrive
Offline Send Email
Aug 31, 2009
5:39 am
Messages 8090 - 8119 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help