/build/static/layout/Breadcrumb_cap_w.png

Roxio 10 silent install

Does anyone know how I can create a package for an unintended/silent install for Roxio 10
If i go to the run command and search for the setup file and put /? at the end, it comes up select your installation language.
Also is there a service pack 1 for Roxio 10

0 Comments   [ + ] Show comments

Answers (8)

Posted by: anonymous_9363 13 years ago
Red Belt
3
All the Roxio products (you don't say which one you're wrestling with) which I've encountered are supplied as MSIs already. Yours may be wrapped in an EXE stub. Run it until you see the first screen and then search the %TEMP% folder or a new folder beneath %AppData% which contains an MSI.
Posted by: mekaywe 13 years ago
Brown Belt
0
sford

Roxio applications installs many MSI's so you can wrap all the the MSI's according to your requirement
Posted by: sford517 13 years ago
Senior Yellow Belt
0
I ran setup and at the first screen went to %TEMP% folder and also %AppData% folder. I didn't see either folder.
I opened the Roxio folder and did a search for *.msi. I found nothing.
Posted by: akhlaque 13 years ago
Orange Senior Belt
0
Did you try /q?
"/q REBOOT=ReallySuppress" worked for me
Posted by: RPM666 13 years ago
Yellow Belt
0
I had created a package for Roxio Creator 10.3 to install silently.

Using the following the program installs with no user intervention

setup.exe /qn RX_EULA_ACCEPTED=1

You can suppress the reboot if you'd like by adding the above "REBOOT=ReallySuppress" but I did not.

Once the program is installed there are a few registry keys that are written on the programs initial opening. These keys are written under HKCU and are for the product registration. To disable this, per user, write a reg file to run after the install.

Mine looked something like this:

[HKEY_CURRENT_USER\Software\Sonic\Registration\Roxio Central Core 3.0]
"ShowRegistration"=dword:00000000
"RemindAfer"=dword:00000000
"RemindForNLaunches"=dword:00000000

And it ran after the initial installation with the basic command:

"regedit.exe /s NoRegRoxio.reg"

This will only disable the product registration for the current user, to have it for every user I believe you'll have to look into a VBS to apply the registry values to any and all "Current users". I found some information on it here:

VBS Set All Reg users
Posted by: anonymous_9363 13 years ago
Red Belt
0
I believe you'll have to look into a VBSNot necessarily. A user feature set up as a parent of a feature which contains an advertised entry-point will trigger self-healing. Seek out John McFadyen's Windows Live blog on self-healing for details.
Posted by: jsamick@midsouth.ualr.edu 7 years ago
White Belt
0
you can create a reg file like this if your using the same version, to find out export a folder from the registry and right click>edit click run for UAC. it will be your first line, it needed to be included for mine to work.

new txt file > 
paste :
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Sonic\Registration\Roxio Central Core 3.0]
"RemindForNLaunches"=dword:00000000
"RemindAfter"=dword:00000000
"ShowRegistration"=dword:00000000
"ReminderCount"=dword:00000000

Save as something.reg
then issue a cmd line: regedit.exe /s "\\path\something.reg"

I use PDQ to remotely install using parameters : /qn RX_EULA_ACCEPTED=1 REBOOT=ReallySuppress
then the next step is a remote command line with the above and done.


Posted by: 31mike 12 years ago
Yellow Belt
-1
This is what I did to run a silent install and disable registration for new users. The key for disabling the registration prompt was to add a key in the default user hive

REM Run Roxio Install Script
"%~dp0setup.exe" /qn ADDLOCAL=All RX_EULA_ACCEPTED=1 Reboot=ReallySuppress

REM Load Default user Hive
REG LOAD HKU\DefaultUser "c:\Users\Default\NTUSER.DAT"

REM Add registry key
REG ADD "HKU\DefaultUser\Software\Sonic\Registration\Roxio Central Core 3.0" /V ShowRegistration /t REG_DWORD /d 00000000 /f
REg UNLOAD HKU\DefaultUser

Comments:
  • Mike, I'm trying to install Roxio as a post installation task and using your script but it doesn't seem to be working. Are you running that entire script as a batch/cmd file and just calling it the command line for an application install? - manuelt 11 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ