batch file run once from windows 2000 server to client

  • Thread starter Thread starter Cedric
  • Start date Start date
C

Cedric

Hi,

I have one Windows 2000 Domain Controller server and 10
windows 2000 clients. I need to run a batch file once on
all my workstations. I would like to do this when the
workstations first boot up. I do not want to have to
manually do this from each of the workstations. I would
love to be able to run the batch file as a group policy
are a start up script, but only once.

How can this be done???
 
Hi,

I have one Windows 2000 Domain Controller server and 10
windows 2000 clients. I need to run a batch file once on
all my workstations. I would like to do this when the
workstations first boot up. I do not want to have to
manually do this from each of the workstations. I would
love to be able to run the batch file as a group policy
are a start up script, but only once.

How can this be done???

Configure a startup script using domain group policy.
In the script, start with the following:

@echo off
if exist C:\scriptOK.txt goto :EOF
REM The rest of your script here
@echo.>C:\scriptOK.txt

Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Stick to the first thread you started about this. YOu have at least three
replies.

Ray at home
 
Back
Top