Link to home
Start Free TrialLog in
Avatar of ahkhands
ahkhands

asked on

Lync Deployment via SCCM

trying to deploy Lync 2010 to machines Via SCCM and it fails every time. Per microsoft i created the package with silverlight and vcc as a pre-req then the advertisement installs Lync. it goes through fine for the 2 pre-reqs but fails when it gets to lync. this has failed for x32 and x64. any ideas?
Avatar of ThorinO
ThorinO
Flag of United States of America image

I'm not too sure about SCCM but we are able to install silently by doing LyncSetup64.exe /silent
Avatar of ahkhands
ahkhands

ASKER

hey ThorinO
did you do that via group policy?
ASKER CERTIFIED SOLUTION
Avatar of Joseph Daly
Joseph Daly
Flag of United States of America 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
thanks xxdcmast, i will give that a try, did you have silverlight installed on these machines already?
some may have had it installed but I think the lync installer detects and installs it if necessary.
sounds good ill get started thanks for the help. you did what MS Premier support is still trying to figure out. thanks
Also if your interest heres a psexec script that will do the same. Just modify for your locations etc.

@echo off
set /p var= Enter Computer Name: 
set /p var2= Enter username: 
set /p var3= Enter Password: 

psexec -u domain\%var2% -p %var3% \\%var% cmd /c copy "\\lync1\lync client\test.cer" C:\

psexec -u domain\%var2% -p %var3% \\%var% cmd /c copy "\\lync1\lync client\certmgr.exe" C:\


psexec -u domain\%var2% -p %var3% \\%var% cmd /c c:\certmgr.exe -add C:\test.cer -s -r localMachine root


psexec -u domain\%var2% -p %var3% \\%var% cmd /c "\\lync1\lync client\en_lync_2010_x86_598490.exe" /install /silent

psexec -u domain\%var2% -p %var3% \\%var% cmd /c taskkill /im communicator.exe /F


pause

Open in new window

thank you sir.
just a quick question: why is a self signed cert required?