Skip to search.
batchworld · Batch World

Group Information

  • Members: 1062
  • Founded: Mar 5, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 7873 - 7902 of 8697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7873 Morris, Lamar
lamarmorrist... Offline Send Email
May 1, 2008
1:47 pm
I need to find and delete a file (pagefile.pif) on a list of servers the script will need to traverse the subdirectories. I'm dealing with a virus right now...
7874 habs3 Offline Send Email May 1, 2008
1:54 pm
To do this quickly do the following: on the server at a command prompt type: del /s pagefile.pif > c:\del_pif.txt This will search the drive and delete that...
7875 foxidrive Offline Send Email May 1, 2008
1:55 pm
On Thu, 1 May 2008 08:46:24 -0500, "Morris, Lamar" <LamarMorris@...> ... Untested Lamar: Delete the echo if it returns the correct things @echo off for /f...
7876 Morris, Lamar
lamarmorrist... Offline Send Email
May 1, 2008
1:57 pm
Thanks, this will have to be run remotely since the servers in question are NetApp filers (OnTap OS). Lamar ________________________________ From:...
7877 Morris, Lamar
lamarmorrist... Offline Send Email
May 1, 2008
1:57 pm
Thanks. Lamar ________________________________ From: batchworld@yahoogroups.com [mailto:batchworld@yahoogroups.com] On Behalf Of foxidrive Sent: Thursday, May...
7878 Christopher Welch
cbw_1968 Offline Send Email
May 1, 2008
3:43 pm
I have a question if any of you can help. Say you wanted to delete the cached internet files for all subdirectories of C:\Documents and Settings\UserA\Local...
7879 foxidrive Offline Send Email May 1, 2008
4:32 pm
On Thu, 1 May 2008 08:43:24 -0700 (PDT), Christopher Welch ... @echo off setlocal set "var=%SystemRoot%" set var=%var:~0,1% set "d=%var%:\Documents and...
7880 Christopher Welch
cbw_1968 Offline Send Email
May 1, 2008
8:55 pm
Thanks, I will test that out. You are not removing temp files for user B, right? that is the one I don't want to touch. foxidrive <foxidrive@...>...
7881 foxidrive Offline Send Email May 1, 2008
9:17 pm
On Thu, 1 May 2008 13:55:40 -0700 (PDT), Christopher Welch ... It is untested, but run this one and see if userB is listed. It's the same code with the delete...
7882 Gary Kuznitz
docfxit Offline Send Email
May 2, 2008
5:17 am
I'm having a problem running a bat file in XP Pro. I'm running it with: RUNRMTCMD CMD('C:\BATCH\SCAN.BAT 00155900000.TIF') RMTLOCNAME('192.168.1.4' *IP)...
7883 foxidrive Offline Send Email May 2, 2008
8:35 am
On Thu, 01 May 2008 22:16:46 -0700, "Gary Kuznitz" <docfxit@...> ... Does it work if the user SCANS is signed on? ... If I recall correctly the...
7884 Gary Kuznitz
docfxit Offline Send Email
May 6, 2008
2:25 am
Thanks for the reply. ... It did work when I had it configured with a mapped drive. It doesn't work now when I'm signed on with the user SCANS. ... I'm using...
7885 foxidrive Offline Send Email May 6, 2008
9:38 am
On Mon, 05 May 2008 19:26:04 -0700, "Gary Kuznitz" <docfxit@...> ... As it worked with a mapped drive then perhaps irfanview doesn't grok UNC paths. ...
7886 Gary Kuznitz
docfxit Offline Send Email
May 6, 2008
8:30 pm
Thanks for the reply. ... It has the same error. I looked into your suggestion of maybe the network is not available to a user that is not logged in. Someone...
7887 foxidrive Offline Send Email May 6, 2008
9:01 pm
On Tue, 06 May 2008 13:30:10 -0700, "Gary Kuznitz" <docfxit@...> ... Your command syntax looks to be wrong. /PERSISTENT:NO NET USE [devicename | *]...
7888 Gary Kuznitz
docfxit Offline Send Email
May 8, 2008
5:29 am
I am trying a different angle on running a command with a user that is not logged on. The command I am trying is: call runas /user:ATUUSER4\scans...
7889 foxidrive Offline Send Email May 8, 2008
5:47 am
On Wed, 07 May 2008 22:27:20 -0700, "Gary Kuznitz" <docfxit@...> ... Try opening a cmd window and launching the command manually. If the autoit script...
7890 Mark Christopher Lim
ltl_piggies Offline Send Email
May 12, 2008
2:14 am
Right, so we have a network and we are monitoring the reliability of our connection using a ping -t command, one for our local area, one for the gateway and...
7891 Michael Burek
mike_burek Offline Send Email
May 12, 2008
3:10 am
Not that I know of. Maybe you could try saving to the text file and then outputting the file. ping -t yahoo.com > yahoo.txt type yahoo.txt But the -t switch...
7892 Andrew Palm
andrewjpalm Offline Send Email
May 12, 2008
4:47 am
You could look at using the unix 'tail' command that has a port on windows, either in unix world or the MS type (http://malektips.com/xp_dos_0001.html) Tail...
7893 Parag P. Doke
paragpdoke@... Send Email
May 12, 2008
8:01 am
I haven't tried this with the ping output yet, but there also a tool to direct output to 2 streams: http://commandline.co.uk/mtee/index.html Regards, Parag P....
7894 Gary Kuznitz
docfxit Offline Send Email
May 15, 2008
5:25 pm
I have a bat file that is giving me an error when there is a space in the %path_List%. The error is: The system cannot find the file C:\Program. How can I fix...
7895 habs3 Offline Send Email May 15, 2008
5:40 pm
Hi Gary The path needs to be put in quotes. so try"%path_list%" or %"path_list"%. see if that will work. Worth a shot. ... From: Gary Kuznitz...
7896 Michael Burek
mike_burek Offline Send Email
May 15, 2008
5:40 pm
You need double quotes around the path\file name. Try changing set PATH_BIN=%~dp0 to set PATH_BIN="%~dp0" ... [Non-text portions of this message have been...
7897 Morris, Lamar
lamarmorrist... Offline Send Email
May 15, 2008
5:45 pm
You can also use progra~1 instead of program files Lamar ________________________________ From: batchworld@yahoogroups.com [mailto:batchworld@yahoogroups.com]...
7898 Gary Kuznitz
docfxit Offline Send Email
May 15, 2008
6:27 pm
Thanks for the reply. ... This worked. "%PATH_BIN%JKDefragDefrag-list.txt" "%PATH_BIN%%EXE%"...
7899 Gary Kuznitz
docfxit Offline Send Email
May 15, 2008
6:39 pm
When I have this in a bat file: Start /belownormal /wait %EXE% -d %DEBUG_LEVEL% -l "" -q %SPEED% -f 5 -a 6 -u DisableDefaults %hogs% Which actually looks like...
7900 Michael Burek
mike_burek Offline Send Email
May 15, 2008
7:53 pm
For some reason it skips whatever is in the double quotes "". I confirmed that with just some other random programs. Maybe there is something subtle we're...
7901 foxidrive Offline Send Email May 15, 2008
7:55 pm
On Thu, 15 May 2008 11:39:25 -0700, "Gary Kuznitz" <docfxit@...> ... Always add a "" after the start command because the first quoted text is taken as...
7902 Gary Kuznitz
docfxit Offline Send Email
May 15, 2008
8:15 pm
... That worked great. Thank you very much. Gary...
Messages 7873 - 7902 of 8697   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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