Deployment Solution

 View Only
  • 1.  MS Lync Deployment through Altiris

    Posted Apr 02, 2013 03:10 PM

    Has anyone found a way to deploy Microsoft Lync through Altiris.  The only way I know how to do this is by finding out what the admin swtiches are and then create the package.  There are no admin swithes built into this software or at least none that I have found or heard of.  Any help would be appreciated.



  • 2.  RE: MS Lync Deployment through Altiris

    Trusted Advisor
    Posted Apr 02, 2013 05:20 PM

    Two conditions, one for x86 and one for x64.  I'll share our x86 condition and scripts here:

    Step 1:

    REM Kills Outlook

    \\Server\Share\pskill.exe outlook.exe

    cls

     

    Step 2 (Run this as a service account, not as the SYSTEM user):

    REM Installs MS Office Online Sign-In Assistant

    msiexec.exe /I \\Server\Share\Microsoft\Lync\OnlineServices\SignInAssistant\7.250.4259.0\x86\msoidcli.msi /qb! ALLUSERS=1

     

    Step 3 (Run this as a service account, not as the SYSTEM user):

    REM Installs Lync Online Client

    \\Server\Share\Microsoft\Lync\2010\4.0.7577.280\x86\LyncSetup.exe /Install /Silent



  • 3.  RE: MS Lync Deployment through Altiris
    Best Answer

    Posted Apr 03, 2013 02:44 AM
    In case you talk about Lync 2013, there's a sperate download available on the MS licensing site. Extracting that, will present you with tboth, the x86, and the x64 version. Both contain their own Setup bootstrapper and allow the SETUP.EXE /ADMIN command with which you can customize Lync. The alternative is to use a CONFIG.XML for which you also get the respective references on the TechNet. We deploy the Lync 2013 client using a very similar command as HighTower does: \\<WHATEVER PATH TO INSTALL SOURCE>\Setup.exe /ADMINFILE C:\DisneyIT\IDSM_Lync_2013.MSP Since we perform the installation locally, we wrap the source into a WIM and copy that down to clients, extract it and then run the installation... -BBC


  • 4.  RE: MS Lync Deployment through Altiris

    Posted Apr 03, 2013 08:49 AM
    Thanks for the input guys! I will give these a try.