batch file run once from windows 2000 server to client

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???
 
J

Jerold Schulman

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
 
R

Ray at

Stick to the first thread you started about this. YOu have at least three
replies.

Ray at home
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top