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...
Show off your group to the world. Share a photo of your group with us.

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 2967 - 2996 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2967
Hi, I need a batchfile whitch does the following: It removes from the homedirectories on the servers (Windows NT)all the files with the extentions: exe, dll,...
mrmrsschaap
Offline Send Email
Apr 1, 2003
9:07 am
2968
i got a vbscript that runs in our login script that removes undesirable files from userareas it can also skip certain ones. And it emails me with details of...
Andy Streule
brother_wolf2
Offline Send Email
Apr 1, 2003
9:33 am
2969
What OS? BTW, Filenames cannot contain ":" On Mon, 31 Mar 2003 17:05:07 -0500, "Florio, Jamie"...
Michael Marquart
foxidrive
Offline Send Email
Apr 1, 2003
11:05 am
2970
How would I go about copying the same file to the same location on multiple machines. I would take my the list of machines from an input file? Any help would...
illinigator
Offline Send Email
Apr 1, 2003
6:13 pm
2971
Not tested - NT or higher. filename.txt contains the machine name in \\server\share format. @echo off for /f "delims=" %%a in (filename.txt) do copy file.ext...
Michael Marquart
foxidrive
Offline Send Email
Apr 1, 2003
6:31 pm
2972
Michael, thanks. just to let you know this does work on NT4 which is what I needed it for. much appreciated....
illinigator
Offline Send Email
Apr 1, 2003
8:00 pm
2973
Is it possible to insert a particular type of picture/images say *.eps kept in a directory to automatically insert in MS Word using a batch file? -- Kailash N....
srivastava
goshainganj
Offline Send Email
Apr 2, 2003
7:40 am
2974
This is for NT - ... From: Michael Marquart [mailto:micm@...] Sent: Tuesday, April 01, 2003 6:04 AM To: batchworld@yahoogroups.com Subject: Re:...
Florio, Jamie
jamminator_a...
Offline Send Email
Apr 2, 2003
1:37 pm
2975
For the W2K version of NT, to get rid of spaces in MP3 files. @echo off for %%a in (*.mp3) do call :parse "%%a" goto :EOF ... set name=%1 set name=%name: =% ...
Michael Marquart
foxidrive
Offline Send Email
Apr 2, 2003
2:05 pm
2976
Hello nice fellows, i'm trying to run a batch on which i have to update the contents of a network shared folder. So, i'm doing this. I check if the folder ...
ed_mylonas
Offline Send Email
Apr 3, 2003
7:09 pm
2977
I've caught a bug ont that. It has do finish as "\.", with a dot after the backslash. But the thing now is the deltree is not working. i'm getting a response...
ed_mylonas
Offline Send Email
Apr 3, 2003
7:48 pm
2978
Try using deltree regardless if the directory exists or not. It will silently close if the directory doesn't exist. Check your modulo and remote_path as they...
Michael Marquart
foxidrive
Offline Send Email
Apr 3, 2003
7:55 pm
2979
Just a friendly warning: Be aware that this command is dangerous deltree /Y %remote_path%\%modulo% because if the environment variables do not get set, which...
Michael Marquart
foxidrive
Offline Send Email
Apr 3, 2003
8:21 pm
2980
Thanks. i got it fixed. you're right. i had it mixed. it was the other way around. also, i was running that batch on ny, which doesn't accept deltree. i ...
ed_mylonas
Offline Send Email
Apr 3, 2003
8:22 pm
2981
I'm using xopy to copy an entire folder to a network shared folder. SET modulo=%1 SET remote_path=%2 xcopy C:\Arquivosdeprogramas\cvsnt\checkout\%modulo%...
ed_mylonas
Offline Send Email
Apr 7, 2003
4:55 pm
2982
Hello, What OS are you using to copy to and from? If you are using Windows 2000 (or win nt?) the 'net use' command used to map drives to network shares allows...
Patrick Dylan Donahue
p_donahue
Offline Send Email
Apr 7, 2003
6:49 pm
2983
Hi, For Windows NT/2000/XP you can use the NET USE command. SET modulo=%1 SET remote_path=%2 net use %remote_path% /user:DOMAIN\UID password xcopy...
Sam Wallace
guillaumedep
Offline Send Email
Apr 7, 2003
8:14 pm
2984
Well... i'm trying to xcopy from a nt server to a linux red hat 8. i'm gonna try that anyway. thanks for the answer. Eduardo Mylonas ... Windows 2000 ... ...
ed_mylonas
Offline Send Email
Apr 7, 2003
8:17 pm
2985
I'm trying to map to my network drives over vpn in Windows 98. I'm using a cable modem to connect to the internet and always get a successful VPN connection. ...
jlmathes01
Offline Send Email
Apr 8, 2003
10:50 pm
2986
Shorten the connection to net use G: \\servername\users <file:///\\servername\users> and if it$B!G(Bs shared you should be able to connect. Net use G:...
Lamar Morris
lamarmorrist...
Offline Send Email
Apr 8, 2003
11:44 pm
2987
Disregard the previous, I don't know what happened to the formatting. Shorten the connection to net use G: \\servername\users and if it’s shared you should...
Lamar Morris
lamarmorrist...
Offline Send Email
Apr 8, 2003
11:48 pm
2988
On Mon, 7 Apr 2003 16:17:14 -0400, "Sam Wallace" <guydep@...> ... ...and this isn't really a decent workaround, but it makes the password a little more...
Michael Marquart
foxidrive
Offline Send Email
Apr 9, 2003
11:04 am
2989
well, all of this seems a good way to do that, but there's a little problem with that. the mapped driver only works if i am logged on the machine. the thing is...
ed_mylonas
Offline Send Email
Apr 9, 2003
2:12 pm
2990
how can i make a batch file to name a text file with the system date? Example: set %date%=name md %name%.txt...
knightlupis
Offline Send Email
Apr 9, 2003
5:10 pm
2991
W2k and above: @echo off for /f "tokens=2-4 delims=/- " %%a in ("%date%") do set DAY=%%c-%%b-%%a ... for %%a in (filename.txt) do ren %%a %%~na.%day%%%~xa On...
Michael Marquart
foxidrive
Offline Send Email
Apr 9, 2003
5:23 pm
2992
Dear all, This is all new to me. So I would please like to know if I can set a filename as a variable without the extension being carried accross? EG I have a...
faiyaz_nasib
Offline Send Email
Apr 11, 2003
6:48 am
2993
W2k and above: @echo off for %%a in (QA030411.PGP) do set NAME=%%~na -- Regards, Michael On Fri, 11 Apr 2003 06:48:08 -0000, "faiyaz_nasib"...
Michael Marquart
foxidrive
Offline Send Email
Apr 11, 2003
10:52 am
2994
Hi Michael, I am sorry if this is a little late, but I am reading through this list in digest form. I would have approached the problem of pulling the name...
Sam Wallace
guillaumedep
Offline Send Email
Apr 13, 2003
7:23 pm
2995
On Sun, 13 Apr 2003 15:26:32 -0400, "Sam Wallace" <guydep@...> wrote: Hi Sam. ... Nods. ... This assumes that the file will always have only one...
Michael Marquart
foxidrive
Offline Send Email
Apr 13, 2003
7:54 pm
2996
Hi. I am a novice when it comes to batch files. I am trying to format a 100 Meg Zip disk and then copy some files from various directories on my computer. I...
gertie5578
Offline Send Email
Apr 14, 2003
1:34 am
Messages 2967 - 2996 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