Jump to content

RTK999

Member
  • Posts

    40
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Chile

Posts posted by RTK999

  1. You could extract the whole package and remove the unwanted toolbar and idrive ( They are in the Prerequisite folder as i remember ). The whole package is about 400MB compressed but once uncompressed it is 1.8GB so you might need to re-compress it after cleaning.

    How to re-compress it and make it work as before (without the toolbar)?

    idrive is a different software - not related to nero. Im trying to find a way to avoid its launch

    you can follow some instructions about nero here:

    and here:

  2. will work anyway but if you have another functions or batch files in the same script could interfere with those functions 'cause setlocal will continues until find endlocal command.

    Well, that is a possibility :), but since it is right before an EXIT (which in my view is also not *really*needed :ph34r: ) and right after a SHUTDOWN command :whistle: , I doubt the specific batch won't "work properly". :blink:

    jaclaz

    yes but sometimes i'm going adding new code to the script, that 'cause, but whatever, anyone could make thing the way they like it.

  3. do you want to run a restart in the middle of app install and then after continue the remaining app install?.

    yes

    you can make a batch file to run the remaining app.

    Example:

    FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\sources\install.wim SET CDROM=%%i:

    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY% /V TITLE /D "Installing Applications" /f

    REG ADD %KEY%\01 /VE /D "messenger" /f

    REG ADD %KEY%\01 /V 1 /D "%systemdrive%\Software\Live2011_setup.exe" /f

    REG ADD %KEY%\02 /VE /D "adobeflash" /f

    REG ADD %KEY%\02 /V 1 /D "%systemdrive%\Software\adoflash.exe" /f

    REG ADD %KEY%\03 /VE /D "framework" /f

    REG ADD %KEY%\03 /V 1 /D "%systemdrive%\Software\Net4.exe" /f

    REG ADD %KEY%\04 /VE /D "micro office" /f

    REG ADD %KEY%\04 /V 1 /D "%systemdrive%\Software\Office14\SETUP.EXE /config %systemdrive%\Software\office14\proplus.WW\CONFIG.XML" /f

    REG ADD %KEY%\05 /VE /D "Remaining APP" /f

    REG ADD %KEY%\05 /V 1 /D "%systemdrive%\Software\REMAPP.cmd" /f

    REG ADD %KEY%\06 /VE /D "riavvio sistema" /f

    REG ADD %KEY%\06 /V 1 /D "%systemdrive%\Software\reboot.exe" /f

    EXIT

    BATCH FILE "REMAPP.cmd"

    @Echo Off

    SetLocal enableextensions

    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY%\08 /VE /D "avast" /f

    REG ADD %KEY%\08 /V 1 /D "%systemdrive%\Software\avastfree.exe" /f

    REG ADD %KEY%\09 /VE /D "bootskin" /f

    REG ADD %KEY%\09 /V 1 /D "%systemdrive%\Software\boot.exe" /f

    EndLocal

    EXIT

    the bash file will load the keys into runonceex reg key and install after restart like setupcomplete does.

    also you dont need this line "FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\sources\install.wim SET CDROM=%%i:" if you're not installing app from CD/DVD Drive.

  4. @ECHO OFF & SETLOCAL ENABLEEXTENSIONS
    TITLE Windows XP SP3 - Unattended Installation

    (SET CDROM=%~d0)

    CLS

    ECHO=
    ECHO=Installing Unikey 4.0
    ECHO=Please wait...
    START /WAIT %CDROM%\Apps\UKEY4.0\Unikey4.0.exe /s

    ECHO=
    ECHO=Installing WinRAR 3.2
    ECHO=Please wait...
    START /WAIT %CDROM%\Apps\winrar3.2\winrar3.2.exe /s

    ECHO=
    ECHO=Installing Foxit Reader 3.0
    ECHO=Please wait...
    START "" /WAIT "%CDROM%\Apps\Foxit Reader3\FoxitRead3.exe" /s

    ECHO=
    ECHO=Installing Copy File name 3.1
    ECHO=Please wait...
    START /WAIT %CDROM%\Apps\CopyFilename31\copyfilenames31.exe /s

    ECHO=
    ECHO=Restarting the PC in 30 seconds...
    SHUTDOWN.EXE -r -f -t 30 -c "Windows XP will now restart in 1/2 minute"

    EXIT

    you miss EndLocal to work properly.

  5. you didnt put the variable to find cdrom its like in runonceex when you put "SET CDROM=%%i:"

    use SetLocal enableextensions to local variables.

    Ohers.cmd

    CLS

    @echo off

    TITLE Windows XP SP3 - Unattended Installation

    SetLocal enableextensions

    SET CDROM=%~d0\Apps\

    ECHO.

    ECHO Installing Unikey 4.0

    ECHO Please wait...

    start /wait %CDROM%UKEY4.0\Unikey4.0.exe /s

    ECHO.

    ECHO Installing WinRAR 3.2

    ECHO Please wait...

    start /wait %CDROM%winrar3.2\winrar3.2.exe /s

    ECHO.

    ECHO Installing Foxit Reader 3.0

    ECHO Please wait...

    start /wait %CDROM%Foxit Reader3\FoxitRead3.exe /s

    ECHO.

    ECHO Installing Copy File name 3.1

    ECHO Please wait...

    start /wait %CDROM%CopyFilename31\copyfilenames31.exe /s

    ECHO.

    ECHO Restarting the PC in 30 seconds...

    shutdown.exe -r -f -t 30 -c "Windows XP will now restart in 1/2 minute"

    EndLocal

    EXIT

  6. in fact i do regfile with aimp2 to associate file and with aimp3 i deploy the content but i have issues with playlist it erase from aimp3 after close it so i will wait to a RC or for further beta.

    Anyway thanks to answer.

  7. It's possible to create a custom installation of Stardock ObjectdockPlus preconfigure it with every links of my programs and with my favorite theme

    Solved

    How did you do it then? I would like to know.

    well configure objectdock as you want then go to configure dock -> themes -> save current dock then goto Documents\Stardock\ObjectDock Library\Backed Up Themes

    then you got to do a silent install of objectdock with /s and copy the backup theme.

    you can put all your stuff in a sfx .rar or 7zip file you can find about that in the board.

  8. It's a combination of using reparse points and registry tweak, better than just resgistry tweak, which may be unrecognized by some apps and may be result in some unexpected compatibility issues, Camtasia Studio (also Snagit) is an example, it still save files under c:\users\username\Documents even if you have changed the documents path in registry. The advantage of using reparse points is that for application itself it did not know the actual path has been changed.

    To clarify I didn't simply delete the shell folders, i replaced them with junction points, which could be treated as and "visual folder".

    And, this is a batch script, not vbs ;)

    i meant i use "a" vbs script not "this" sorry.

  9. this is my code in OOBE.


    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Other</NetworkLocation>
    <ProtectYourPC>3</ProtectYourPC>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    </OOBE>

    and the select pop up never showed.

    if it doesnt work should be something wrong in unattend.xml <NetworkLocation>Other</NetworkLocation> skip the network selection for sure.

    I was made aware of this misconception and tried it explicitely with both <NetworkLocation>Other</NetworkLocation> and <ProtectYourPC>3</ProtectYourPC>. I had the friggin window showing up again, no difference to Work/2, Home/1.

    (If I omit the attribute <SkipMachineOOBE>, the "select network location" window won't appear, instead I'm nagged for entering data for a new user account which I don't want either as it breaks my unattended installation.)

    Edit: Attached latest Autounattend.xml

    <SkipUserOOBE> and <SkipMachineOOBE> are deprecated by microsoft so there is no need to use them still works but you can use others methods to avoid user creation like in localccounts create a new user:


    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Other</NetworkLocation>
    <ProtectYourPC>3</ProtectYourPC>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    </OOBE>

    and this in useraccounts:



    <UserAccounts>
    <AdministratorPassword>
    <Value>password-value</Value>
    </AdministratorPassword>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value>password-value</Value>
    </Password>
    <Description>testing</Description>
    <DisplayName>test-user</DisplayName>
    <Group>Administrators</Group>
    <Name>test-user</Name>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>

    try this.

    you can create a script to delete or disable any user you create in localaccounts after install windows if you dont want any other accounts.

  10. but some reason even put <NetworkLocation>Home</NetworkLocation> windows launch the select network pop up but if you put <NetworkLocation>Other</NetworkLocation> windows dont launch the select network well this work for me if you have a home network or work you can adjust settings in control panel after first logon.

    I tried it with every option, the windows shows up anytime.

    this is my code in OOBE.


    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Other</NetworkLocation>
    <ProtectYourPC>3</ProtectYourPC>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    </OOBE>

    and the select pop up never showed.

    if it doesnt work should be something wrong in unattend.xml <NetworkLocation>Other</NetworkLocation> skip the network selection for sure.

  11. Easiest way is to specify a network location in your XML.

    <OOBE>

    <NetworkLocation>Home</NetworkLocation>

    </OOBE>

    Original source

    but some reason even put <NetworkLocation>Home</NetworkLocation> windows launch the select network pop up but if you put

    <NetworkLocation>Other</NetworkLocation> windows dont launch the select network well this work for me if you have a home network or work you can adjust settings in control panel after first logon.

  12. do you want to install the whole suite or just some components.

    well anyway i download the trial and make some experiments.

    to install the nero whitout modified anything try this:

    Nero-MS-10.0.13100.exe /s /v"/qn"

    works but will stop to ask for ask bar install i dont know if the retail version come with ask bar request.

    How to make unattended installer of nero.

    1- installer.

    2.-modified installer.

    ********************************************************** 1.-Part

    Program to use.

    7Zip. www.7zip.org

    7zSD module. http://7zsfx.info/en/

    1.1 Launch the original setup until it end the extract and launch de setup then cancel the setup.

    Goto start and run the command %temp%

    In the temp folder search for NERO20100326135034074 folder, name may change i dont know but look for a nero folder.

    Copy the folder a location you know as C:\MyNeroInstaller.

    Nero Folder

    1.2 open the nero folder and look for setup.ini and open in notepad or other editor.

    in setup.ini look for [iSSetupPrerequisites] at the end of file delete the next lines or put a ; at the begining.


    PreReq15= LightScribe System Software.prq
    PreReq16= Ask Toolbar.prq
    PreReq17= Reboot Validator.prq

    1.3 you will find problem with VC Redist and vs_piaredist files sometimes these didnt installed so you can delete the lines or make an unattended package of these files to replace the original, these files are just for x86 system if you have x64 just delete all the prerequistes but PreReq2= MSI 4.5 for Windows6.0 (x64).prq and rename the line PreReq0= MSI 4.5 for Windows6.0 (x64).prq

    at the end at the post i'll tell how to replace these files if you have a x86 based system.

    You can delete all prerequisites and install'em after install nero, some requistes as VC Redist are needed to start nero in x86 system otherwise you will see a crash.

    Save the setup.ini

    Setup.ini

    1.4 open the notepad and put the following command in it.


    @Echo off
    Setup.exe /s /v"/qn"
    Exit

    this command launch setup.exe silent and pass the command to the msi to start the installation in quiet mode without gui.

    Save as run.cmd and put it in the nero folder.

    1.5 select all the files inside nero:


    applications folder
    ISSetupPrerequisites folder
    all ini files
    all mst files
    run.cmd file
    nero.multimediasuite.msi
    setup.exe
    setup.ini

    and make a compression with 7zip and save it like NERO20100326135034074.7z

    Compress

    1.6 now put the compression file in other folder to make the thing more clear in the folder along with NERO20100326135034074.7z put the 7zSD module, open the notepad and put this.


    ;!@Install@!UTF-8!
    GUIMode="2"
    RunProgram="run.cmd"
    ;!@InstallEnd@!

    save as config.txt and put it in the folder along NERO20100326135034074.7z and 7zSD module.

    open again notepad and put this.


    copy /b 7zSD.sfx + config.txt + NERO20100326135034074.7z NERO_MS_10.exe

    save as command.cmd and put it along NERO20100326135034074.7z, 7zSD module and config.txt

    you will have:


    NERO20100326135034074.7z
    7zSD
    config.txt
    command.cmd

    Installer

    now double click over command.cmd and this will make NERO_MS_10.exe installer and that's it.

    ********************************************************** 2.-Part

    program to use

    orca or superorca msi editor. http://www.technipages.com/download-orca-msi-editor.html

    7zip.

    7zip module.

    now with orca we're gonna delete some features from nero ms 10 in the nero folder open with orca nero.multimediasuite.msi

    2.1 select the component table, in the right will find all the components of nero, in the condition row fill with a 0 (zero) all the features you dont want, this will disable the feature.

    Dont disable controlcenter, corecomponents, burnrights, installreg, burningrom, regnerolanguage and dummy these are needed for nero.

    Components

    2.2 select the feature table, in the right panel you will find all the features, in the level row fill with 0 (zero) all the features you disabled in components table.

    dont disable main, hiddenfeatures, common these are needed for nero.

    Feature

    2.3 Select featurescomponents table, in the right panel you'll find all the features, select all the features you disable in feature table and drop the rows.

    dont drops common, controlcenter and corecomponents rows.

    featurescomponents

    3.3 select ischainpackage table, in the right panel you'll find the features install source dir, select all the feature you disable in components and drops the rows.

    ischainpackage

    4.4 select iscomponentextended table, in the right panel youll find the features, select all the features you disable previously and drops the rows.

    Dont drops regnerolanguage and dummy are part of nero main installer.

    iscomponentextended

    5.5 Now you can delete all the folders inside the aplications folder you disable with orca example if you disable backitup and backituphelpchm feature delete these folder 'cause they are not part of nero now.

    aplications folder

    Go to part 1 to make a silent package.

    ****************************************** 3 part

    To replace some files of Prerequisites go to ISSetupPrerequisites folder look for:

    {2AE04573-CA1C-46BC-8430-E226B823BB8C} > vs_piaredist.exe

    {B56633A3-7ADC-4CE5-A320-ACA0B65DA04B} > vcredist_x86.exe

    {C597C3FC-2110-451E-832E-9352964E56F9} > vcredist_x86.exe

    {D37C1D8F-C930-4005-BCD8-3715028461C0} > vcredist_x86.exe

    for some reason sometines install theirselves but for some reason they didnt these are the only with i had problem.

    open with 7zip vs_piaredist.exe and extract it to vs_piaredist

    open notepad and put this code:


    @Echo off
    vs_2005_pia.msi /qn /norestart
    Exit

    save as run.cmd and put it inside vs_piaredist folder.

    compress all the files inside vs_piaredist with 7z you will have vs_piaredist.7z now go to the part 1.6 of the first part.

    now rename the installer .exe to vs_piaredist.exe copy, paste and replace over the old one.

    with this when nero try to install the file will install without error.

    open with 7zip vcredist_x86.exe and extract it to vcredist_x86

    open notepad and put this code:


    @Echo off
    vcredist.msi /qn /norestart
    Exit

    save as run.cmd and put it inside vcredist_x86 folder.

    compress all the files inside vcredist_x86 with 7z you will have vcredist_x86.7z now go to the part 1.6 of the first part.

    now rename the installer .exe to vcredist_x86.exe copy, paste and replace over the old one.

    open with 7zip vcredist_x86.exe and extract it to vcredist_x86 do the same as above.

    open notepad and put this code:


    @Echo off
    vc_red.msi /qn /norestart
    Exit

    do the same with the rest

    with {C597C3FC-2110-451E-832E-9352964E56F9} > vcredist_x86.exe you will have to extract the contend of the inside compression.

    I try to install silent the whole suite without modified anything but always the installer found error installing Prerequisites so i wrote above you can delete all the Prerequisites in the setup.ini and install them after nero suite.

    these files are needed for nero x86 system for some reason if you have installed another vcredist nero even crash seem to just work with these vcredist files.:

    vs_piaredist.exe

    vcredist_x86.exe

    vcredist_x86.exe

    vcredist_x86.exe

    all the 3 vcredist.

    i made this all by myself so i dont know if it right or wrong really, so feedback for others would be nice.

  13. Hi everyone.

    I have a X7 x-710 mouse a4tech usb. i had no problem in windows xp 32 bits now i'm using w7 32 bits and i have an annoying issue with the scrolling button when i scroll up sometimes its go down then up when i scroll down its go up and then go down sometimes its does fine but sometimes doesnt.

    I want to know if other one have the same problem or could be a mouse config problem or its a w7 problem or whatever.

    in windows xp it doesnt happen.

×
×
  • Create New...