The following process has been tested and confirmed working with Roxio version 10 (as provided for Dell 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
- Copy the full install folder to your working folder (or SCCM package source location)
- Create a cmd file called “Install.cmd” and copy in the following information
@echo off REM======================================================================================== REM Install Roxio 10 for Dell 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 all 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="%~dp0dp0EXPRESSLABELER_322\1033.mst" RX_EULA_ACCEPTED=1 DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA" MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_AUDIO_DELL_37\AUDIO.msi" TRANSFORMS="%~dp0RCP_AUDIO_DELL_37\1033.mst" RX_EULA_ACCEPTED=1 DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA" MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_COPY_DELL_37\COPY.msi" TRANSFORMS="%~dp0RCP_COPY_DELL_37\1033.mst" RX_EULA_ACCEPTED=1 DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA" MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_CORE_DELL_37\RCPCORE.msi" TRANSFORMS="%~dp0RCP_CORE_DELL_37\1033.mst" RX_EULA_ACCEPTED=1 DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA" MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_DATA_DELL_37\BMPLE.msi" TRANSFORMS="%~dp0RCP_DATA_DELL_37\1033.mst" RX_EULA_ACCEPTED=1 DESKTOPICON=never QUICKLAUNCHICON=never USERNAME="IT Support" COMPANYNAME="DEDTA" MSIEXEC.EXE /qb REBOOT=Suppress /I "%~dp0RCP_TOOLS_DELL_37\TOOLS.msi" TRANSFORMS="%~dp0RCP_TOOLS_DELL_37\1033.mst" RX_EULA_ACCEPTED=1 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 window for new users reg add "HKU\DefaultUser\Software\Sonic\Registration\Roxio Central Core 3.0" /v ShowRegistration /t REG_DWORD /d 00000000 /f reg unload HKU\DefaultUser REM Return exit code to SCCM exit /B %EXIT_CODE%
- 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.
For more information on creating SCCM packages see distribute software using SCCM.