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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 7143 - 7172 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7143
hi experts, i want to use some batch file which will use msessenger service in it but by default this service is disable in windows XP Profficenal how to...
surendra
suri_anne25
Offline Send Email
Sep 10, 2006
2:48 am
7144
Put this in your batch file... reg ADD "HKLM\SYSTEM\CurrentControlSet\Services\Messenger" /v Start /t REG_DWORD /d 2 /f That resets the service to automatic. ...
kcmjr
Online Now Send Email
Sep 10, 2006
3:44 am
7145
... Disabled or on manual? Try this: NET START "<servicename>" -- Regards, Mic...
foxidrive
Offline Send Email
Sep 10, 2006
3:50 am
7146
You can also use the sc command to manually configure most settings for a service. Patrick ... [Non-text portions of this message have been removed]...
Patrick Donahue
p_donahue
Offline Send Email
Sep 10, 2006
1:37 pm
7147
I have a simple batch file that is scheduled to run every 15 Minutes during working hours, I would like to skip the backup if the file has not changed. Copied...
jwconklin
Offline Send Email
Sep 14, 2006
7:24 pm
7148
... The addition below will check for an archive bit. ... for %%c in ("\\A2100-750\user\data\mdi.nc") do set flags=%%~ac set abit=%flags:~2,1% if "%abit%"=="a"...
foxidrive
Offline Send Email
Sep 15, 2006
12:13 am
7149
Hi Expert, can you help me guys how to filter result in "dir" command? for example, if i list files on a certain directory, i want to remove all files that...
Slacker Jam
xuser_58
Online Now Send Email
Sep 15, 2006
11:57 am
7150
... This will give you filenames that don't contain .vix but will also remove filenames like The.vixen.doc - will that suffice? dir /b |find /v /i ".vix" -- ...
foxidrive
Offline Send Email
Sep 15, 2006
12:52 pm
7151
tnx mic.. the command helped me.. but is there a way that will just look on the extension name? so far, the command that you gave solve my present problem.....
Slacker Jam
xuser_58
Online Now Send Email
Sep 15, 2006
2:03 pm
7152
Thanks, Is there any way to stop the CMD window from popping up? Can you tell me were I can get details so I can understand the code that you used he? Is there...
jwconklin
Offline Send Email
Sep 15, 2006
4:20 pm
7153
... Sure, you can use SED. dir /b |sed "s/^.*\.vix$//I" -- Regards, Mic...
foxidrive
Offline Send Email
Sep 15, 2006
5:04 pm
7154
... Silly me, you can use findstr too. dir /b |findstr /r /v /i "^.*\.vix$" -- Regards, Mic...
foxidrive
Offline Send Email
Sep 16, 2006
1:31 am
7155
... yw. ... You can use cmdow with the /HID switch and @ for the current window. CMDOW [Version 1.4.3] Win32 Commandline Window Utility for NT4/2000/XP. (C)...
foxidrive
Offline Send Email
Sep 16, 2006
1:48 am
7156
Thanks Sir Mic!!! Cool!!! more power.. ... [Non-text portions of this message have been removed]...
Slacker Jam
xuser_58
Online Now Send Email
Sep 16, 2006
11:07 am
7157
Thank you all. I just figured it out. On 17 Sep 2006 at 13:12, batchworld@yahoogroups.com (Gary Kuznitz ... cmd.exe /k "cd\"...
Gary Kuznitz
docfxit
Offline Send Email
Sep 17, 2006
8:40 pm
7158
This : cmd.exe /k cd %1 Seems to get me to: C:\DOCUME~1\GaryT\STARTM~1> How can I get to the root of C:\ I'm actually using it to add a right click menu item...
Gary Kuznitz
docfxit
Offline Send Email
Sep 17, 2006
8:41 pm
7159
Hi, First hi to all, i am new member in this group. working on DOS, DPMI, DJGPP compiler and facing a problem. I am using DJGPP compiler in DOS, want to create...
Nitin Jolly
njollymood
Offline Send Email
Sep 18, 2006
3:45 am
7160
Thanks for pointing me in the right dirrection. If I look at %flags% is see --a------ if archive bit is set, what do the other 8 bytes mean? ... NT4/2000/XP. ...
jwconklin
Offline Send Email
Sep 18, 2006
6:22 pm
7161
... Here are a few - File and Folder permissions might account for the others. @echo off echo file>"%temp%.\dummy.txt" for %%c in ("%temp%.\dummy.txt") do echo...
foxidrive
Offline Send Email
Sep 19, 2006
2:13 am
7162
Hi, I have a BAT file that is asking me to answer a Choice 3 times. I can't figure out why it's going through there three times. Does anyone know how I can...
Gary Kuznitz
docfxit
Offline Send Email
Sep 19, 2006
6:27 pm
7163
Assuming the script is first executed without %1 as GOTO:, the sequence is CLS ... CHOICE ... IF fails ... CALL loops back to the beginning, CLS ... CHOICE...
Marc Peterson
marc351
Offline Send Email
Sep 19, 2006
7:06 pm
7164
I remember seeing 't' for the penultimate flag before, but I don't know what it means. drash--t- Marc...
Marc Peterson
marc351
Offline Send Email
Sep 19, 2006
7:32 pm
7165
... I'm not 100% sure of the 2nd and 3rd last ones but I believe they are: drahscotl d=directory r=read only a=archive h=hidden s=system c=compressed ...
Garry Deane
garrydeane
Offline Send Email
Sep 20, 2006
12:25 am
7166
... Thanks for the list, Garry. -- Regards, Mic...
foxidrive
Offline Send Email
Sep 20, 2006
1:23 am
7167
Just curious: what kind of command is 'CHOICE' ?. Sarah [Non-text portions of this message have been removed]...
Sarah Kopelman
novice012000
Offline Send Email
Sep 20, 2006
3:28 pm
7168
If I type "choice" or "choice ?" it just comes back with the command prompt: C:\DOCUME~1\dbyrne>choice [Y,N]?Y C:\DOCUME~1\dbyrne>choice [Y,N]?N ...
Derek Byrne
theodorik2003
Offline Send Email
Sep 20, 2006
3:50 pm
7169
On 20 Sep 2006 at 11:13, Sarah (Sarah Kopelman <batchworld@yahoogroups.com>) ... Choice.com comes with DOS. ... CHOICE Prompts the user to make a choice in a...
Gary Kuznitz
docfxit
Offline Send Email
Sep 20, 2006
4:41 pm
7170
On 19 Sep 2006 at 13:59, Marc (Marc Peterson <batchworld@yahoogroups.com>) ... I don't understand how all this actually works. So to fix this If I was to guess...
Gary Kuznitz
docfxit
Offline Send Email
Sep 20, 2006
5:07 pm
7171
... <batchworld@yahoogroups.com>) ... ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ... ³ ... ³ ... ³ ... ...
Garry Deane
garrydeane
Offline Send Email
Sep 21, 2006
12:52 am
7172
Choice is a command line utility that was used for creating a batch file that will prompt for the user to choose one of several options . You can define the...
Raz Goren
raz_goren
Offline Send Email
Sep 21, 2006
5:56 am
Messages 7143 - 7172 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