I realize that this tool is not complicated, but I am
trying to create a simple batch file to scan multiple
machines. I cannot get it to see an input file, ARG! I
am using .txt filetype for the input (one target per
line). Here is what I'm trying:
@echo off
kb824146scan /i serverstest.txt
pause
Any help, thanks much.

Re: kb824146scan input file by Bill

Bill
Tue Sep 16 18:21:58 CDT 2003

First glance, and reading at:
http://support.microsoft.com/default.aspx?kbid=827363

looks like you need a : after the /i switch.

Let me test
OK--seems to work for me:

I create ifile.txt as follows:

copy con: ifile.txt
192.168.1.25
192.168.1.8
^z (i.e. I hit F6)

Then: kb924146scan /i:ifile.txt
yields a scan of those two IP's.


"chip" <cfloyd@hntb.com> wrote in message
news:00d301c37c63$3451f9e0$a101280a@phx.gbl...
> I realize that this tool is not complicated, but I am
> trying to create a simple batch file to scan multiple
> machines. I cannot get it to see an input file, ARG! I
> am using .txt filetype for the input (one target per
> line). Here is what I'm trying:
> @echo off
> kb824146scan /i serverstest.txt
> pause
> Any help, thanks much.