Install Roxio 10 Silently – HP Software

The following process has been tested and confirmed working with Roxio version 10 (as provided for HP systems) and Configmgr / SCCM R2.

The installation will:

  • Silently install Roxio 10
  • Excludes the Activation and Drag-to-disc software from being installed
  • Excludes the ‘QuickLaunch’ and desktop icons for Windows XP and Windows 7
  • Disables the product registration page for all new users
  • Ensures the computer won’t automatically reboot after installation
  1. Copy the full install folder to your working folder (or SCCM package source location)
  2. Create a cmd file called “Install.cmd” and copy in the following information
  3. @echo off
    REM========================================================================================
    REM Install Roxio 10 for HP Systems
    REM========================================================================================
    REM .
    REM Script Details:
    REM --------------
    REM This script will:
    REM + silently installs Roxio 10
    REM + excludes the Activation and Drag-to-disc software.
    REM + excludes the 'QuickLaunch' and desktop icons
    REM + disables the product registration page for new users
    REM + and ensures the computer won't automatically reboot after the installation
    REM .
    REM========================================================================================
    :: Installs required software
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0EXPRESSLABELER_322\LABELER.msi" TRANSFORMS="%~dp0EXPRESSLABELER_322\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_AUDIO_HP_38\AUDIO.msi" TRANSFORMS="%~dp0RCP_AUDIO_HP_38\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_COPY_HP_38\COPY.msi" TRANSFORMS="%~dp0RCP_COPY_HP_38\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_CORE_HP_38\RCPCORE.msi" TRANSFORMS="%~dp0RCP_CORE_HP_38\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_DATA_HP_38\BMPLE.msi" TRANSFORMS="%~dp0RCP_DATA_HP_38\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_TOOLS_HP_38\TOOLS.msi" TRANSFORMS="%~dp0RCP_TOOLS_HP_38\1033.mst" DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA"
    :: Opens Windows 7 Default Profile
    reg load HKU\DefaultUser "C:\Users\Default\ntuser.dat"
    :: Opens Windows XP Default Profile
    reg load HKU\DefaultUser "C:\Documents and Settings\Default User\ntuser.dat"
    :: Disables registration page for new users
    reg add "HKU\DefaultUser\Software\Sonic\Registration\Roxio Easy Media Creator 10" /v ShowRegistration /t REG_DWORD /d 00000000 /f
    reg unload HKU\DefaultUser
    REM Return exit code to SCCM
    exit /B %EXIT_CODE%
  4. Copy the install folder and the cmd file to your software package share and create your SCCM package, and use ‘install.cmd’ to run the installation.
  5. For more information on creating SCCM packages see distribute software using SCCM.