Symantec Management Platform (Notification Server)

 View Only
  • 1.  Scripted Install of SIM

    Posted Jun 26, 2012 11:43 AM

    We have a number of servers we are getting ready to build. To ensure consistency we are scripting as much as possible. Here is the PowerShell script we have to install the Symantec Installation Manager. We want to install to the D: drive rather than the default C: drive.

    Does anyone have a solution for changing the install path?

    <#
    Description: Install Symantec Installation Manager
    Date: 01 June 2012
    Author: Dave Wagner
    #>

    # ***** Call SIM Installer *****
    <#
    Modify the path and executable to match your environment.
    #>
    $SIMInstall = "<File Repository>\Altiris\Components\SymantecInstallationManagerSetup.exe"
    &$SIMInstall -qr

    # ***** Wait for the SQL Express install pop-up *****
    Start-Sleep -Seconds 30

    # ***** Send 'N' key to SQL Express install pop-up *****
    $wscript=new-object -com wscript.shell
    $wscript.sendkeys("N")