Jump to content

My .NET Framework 2.0 silently can not complete installer from SVCPACK


Recommended Posts

My .NET Framework 2.0 silently can not complete installer from SVCPACK????

When it reaches its final stage of the installation starts to back down, meaning it is not the process of installing the program!

Why????

look to photos::::

final stage of installation

4wl166xniabila9g8nk4.jpg

back down stage of installation

9u34maedges9hawckr16.jpg

Link to comment
Share on other sites


there are same registry keys that must be changed:

reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "0" /f

reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f

reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f

reg delete "HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW" /f

rem Now your the .msi-based setup can run

setup.exe

rem clean up, please do this not if Windows is already installed

reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "1" /f

reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

Link to comment
Share on other sites

how i'll do that ..... copy this code to notepad and save it as .reg???? :wacko:

ok...in after that can i change msi program to .exe with WinRaR , and add it to SVCPACK.. it work normaly or not ?

Edited by anti1986
Link to comment
Share on other sites

As you create a silent SVCPACK installer I thought you would know what a batch file is. :huh: (save the text as *.bat or *.cmd)

This allow and force a Windows Installer Package to installed

reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "0" /f
reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f
reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f
reg delete "HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW" /f

This is where the normal setup of NET Framework start

change setup.exe to dotnetfx.exe /q:a /c:"install.exe /q" or how ever you start the .net setup

rem Now your the .msi-based setup can run

setup.exe

rem clean up, please do this not if Windows is already installed

If Setup is finished these Settings should changed back to normal

reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "1" /f
reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f
reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

you can pack the files with winrar and let Winrar start the the Batchfile

Link to comment
Share on other sites

Its not work...... :wacko:

when i tried your code in Svpack stage (setup stage)

1-Netframwork.exe has not work

2- the ""exe"" silent programs not work

look what happend with my pc i cant open any program:::

post-225589-1236611588_thumb.jpg

i tried to back it normal with this code

reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "1" /f

reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

cant to back normal

Link to comment
Share on other sites

Oh, what have you done? Maybe I've to get my hands dirty.

Here is a Installer for .NET Framework 2.0 SP2, running on SVCPACK Stage, RunOnceEx or normal Windows without problem.

Ready to use just copy to SVCPACK Folder and add it to SVCPACK.inf under [setupHotfixesToRun].

Just a thing I assume you have XP SP3, then nothing to care about. But if you have SP2 or older you have to prior integrate Windows Installer 3.1 or later.

http://www.mediafire.com/?sharekey=990741c...04e75f6e8ebb871

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...