Link to home
Start Free TrialLog in
Avatar of metalfubar
metalfubar

asked on

2012 server msi deploy log me in by gpo

I need instructions for this and examples of the cmd file so I have a base script to work from.  I don't need to modify login scripts?

It's a single site, single 2012 ad domain and he's the basic path:

https://secure.logmein.com/welcome/webhelp/EN/CentralUserGuide/LogMeIn/t_central_deploy_silent_install.html

script:  

@ECHO OFF
IF EXIST "C:\Program Files (x86)\LogMeIn" GOTO end
IF EXIST "C:\Program Files\LogMeIn" GOTO end

msiexec.exe /i \\DC\LMIMSI\logmein.msi /quiet DEPLOYID=00_s9hirc63byhvgdfmbh4yjwi2vhwf615fcchh0 INSTALLMETHOD=5 FQDNDESC=1
:end

net user  administrator XXXXXXXXXX /add
net localgroup Administrators administrator /add

thanks metal fubar!
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Based on what you have listed it looks fine for your script. You need to put that in a .bat or .cmd file format. From there test to make sure that that script does work correctly. Once the applicaiton has installed properly, you need to create a GPO and setup a computer startup script.

Once you have done that link the GPO to the OU where the computers reside.

Make sure that the bat/cmd file is in a network location where authenticated user have read/execute

See the TechNet below.
https://technet.microsoft.com/en-us/library/cc779329%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396


Will.
Avatar of metalfubar
metalfubar

ASKER

thanks will for the quick response.  

so i can leave the script format exactly as is and save as .cmd and perform the aboves tasks?

thanks
where do i add the change user?
that works Will accept its prompting me for UAC?  I want it to silently install so the local admins creds are not working?

this is great and i can now rollout to all clients.
ASKER CERTIFIED SOLUTION
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada 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
i'll need the syntax for the 2012 server?  also, won't I have to reboot 3 times per workstation to  reenable it with LMI which also requires a reboot?

what about psexec in the script?