Client Management Suite

 View Only
  • 1.  Need Help

    Posted Jan 21, 2015 07:54 AM
      |   view attached

    Hi Experts

     

    In my reference to previous discussion on below link 

    https://www-secure.symantec.com/connect/forums/software-deployment-issue

    I am able to deploy the InSync client on all my client machine working great , I have a new task with deployment taken care , I have to also ensure its activation is been taken care so I am trying to add a token based command which is TOKENV2='2-60f0666fc1aff6cd8bbcb6893a5db716e17ad49427bf89ea2ec681ac5816f5cf
    ' SERVERLIST="192.168.2.63:6061" 

    I am trying to add this in front of the msiexec command shown in below snap but this is not getting completely added.

     

    Any help on same is welcome.

     

     



  • 2.  RE: Need Help
    Best Answer

    Posted Jan 21, 2015 12:11 PM

    If the TOKENV2 and SEVERLIST are Public Properties of the InSync msi (you can edit the msi file using Orca and look at the Property table to check) you'd need to edit your command line to look like:

    msiexec /i insync.msi /qn ALLUSERS=2 TOKENV2='2-60f0666fc1aff6cd8bbcb6893a5db716e17ad49427bf89ea2ec681ac5816f5cf' SERVERLIST="192.168.2.63:6061"

    I always suppress restarts, and add logging too so you can see if there's any problems:

    msiexec /i insync.msi /qn ALLUSERS=2 TOKENV2='2-60f0666fc1aff6cd8bbcb6893a5db716e17ad49427bf89ea2ec681ac5816f5cf' SERVERLIST="192.168.2.63:6061" /norestart /l*v "%temp%\insync.log"