Link to home
Start Free TrialLog in
Avatar of Jack Dee
Jack Dee

asked on

Want to push .exe install using Group Policy Editor

Hello.  I have a .exe file that basically installs some custom fonts.  I would like to be able to use Group Policy Editor to push this install out to end users on our network.  I know Microsoft would rather me do this via a .MSI file, but we do not want to spend the money for packaging software such as InstallShield.  What is the easiest way to do what I want to do via a .exe file?  Would a .bat login file work?  If so, how do I go about setting it up?  Also, most domain users are in the local power users group on their WinXP Pro machines.  Will local admin access be needed to install the pushed software?  Thanks.
Avatar of John Gates, CISSP, CDPSE
John Gates, CISSP, CDPSE
Flag of United States of America image

winstle is the windows installer packager and is free it is on the install CD in support tools.  You can do an exe the best way would be to apply a vbs script to the GPO and shell the exe to run from there.  For group policy software installation the MSI package is the only suggested method for best results.


Hope this helps!
D
Avatar of SamuraiCrow
SamuraiCrow

Here is the Microsoft link that describes the utility that Dimante mentioned.  I would suggest that this only be used for simple executables.  The packaging is somewhat limited when compared to other enterprise apps.  On the other hand it is free (or at least it comes with windows 2000).

http://www.microsoft.com/technet/prodtechnol/windows2000serv/howto/winstall.mspx

Winstle is limited but can perform adequite functions.  I like Wise installer but it costs $1100 too :-(


D
ASKER CERTIFIED SOLUTION
Avatar of jhautani
jhautani
Flag of Finland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jack Dee

ASKER

Boy! That Winstle program is a MAJOR PAIN!!  If only there were a simple .EXE to .MSI conversion program I would be set.
Thanks jhautani.

After a little more research, here is what my script looks like.  It works and it runs very well.

@ECHO off


IF EXIST %systemdrive%\"Fonts Logos_Templates" GOTO END
IF NOT EXIST %systemdrive%\"Fonts Logos_Templates" GOTO NEXT

:NEXT

net use B: /d
net use B: \\servername\share
CD\
CD B:
B:\application.exe

net use B: /d GOTO END

:END

EXIT
I suggest you look at the link i originaly provided. It whould be simple enough. You will have better control of what PC you want to run the program. Since you have active directory, that's what GPO is for and you will have to live with it, why not try it out. For this one, you can put the exe in a batch file. Then create a GPO>Computer Serttings>Windows settings>Script>Startup script for your batch file. Once this GPO is linked to the OU where your computers placed, it will install upon the reboot of the computer.
opps, wrong thread...
MSI is the best option rather than group policy.

There is a free version for creating msi.Try Wix.