Install exe with GPO

R

Rami

I have to install in each of my 100 domain client PC's some executable. If
it was an MSI file than I could use GPO but can I do with an exe?

Regards

Rami
 
N

Newell White

Modify your logon script to check for presence on local machine.
If absent, copy the .exe to the local machine.

We have a frequently updated .exe which has to be re-distributed.
The developer just puts new version in shared folder %mysource" on file
server, and the following lines copy the new version to those machines which
have the existing folder and a specific file (this allows us to freeze
version on some machines by deleting the text file).

IF NOT EXIST "%mydest%" GOTO bypass
IF NOT EXIST "%mydest%\version21.txt" GOTO bypass
ECHO Checking for update of Modmaster
ROBOCOPY %mysource% "% dest%" /COPY:DT /xo /r:3 /w:0 /ndl /nfl /njs /njh /np
:bypass
 

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