MSFN Forum: Installing .NET Framework 2.0 from SVCPACK - MSFN Forum

Jump to content



  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Installing .NET Framework 2.0 from SVCPACK Rate Topic: -----

#1 User is offline   Pete_ 

  • MSFN Freak
  • Pip
  • Group: Members
  • Posts: 53
  • Joined: 17-August 06

Posted 22 August 2006 - 01:22 PM

Hi!

How to install .NET Framework 2.0 silently from SVCPACK,
i put the dotnetfx.exe to SVCPACK but i guess there have to be some syntaxs?

Cheers,

pete


#2 User is offline   Pete_ 

  • MSFN Freak
  • Pip
  • Group: Members
  • Posts: 53
  • Joined: 17-August 06

Posted 22 August 2006 - 01:37 PM

Or do you recommend installing from RunOneEx ? :)

#3 User is offline   legionaire 

  • Newbie
  • Group: Members
  • Posts: 43
  • Joined: 16-May 06

Posted 22 August 2006 - 01:43 PM

Why do you people never extract dotnetfx? Don't you have a few MB left on your CD? It's so much faster to install and less of a hassle with the syntax:
dotnetfx.exe /q:a /c:"install.exe /qb"


Now, if you extract dotnetfx first, it all comes down to
install.exe /qb


On a side note, I'd recommend doing an administrative installation of the dotnet framework and integrating KB917283 into it.

Edit: Yes, I do recommend RunOnceEx - leave svcpack for the updates.

This post has been edited by legionaire: 22 August 2006 - 01:45 PM


#4 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 22 August 2006 - 03:08 PM

.NET 2.0 can't be run from svcpack.inf... there was a workaround somewhere.

#5 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 22 August 2006 - 04:07 PM

View PostT D, on Aug 23 2006, 12:08 AM, said:

.NET 2.0 can't be run from svcpack.inf... there was a workaround somewhere.

Yup! It's installable under SVCPACK with a reg workaround. Tested it, myself.

#6 User is offline   RickSteele 

  • Rick Steele
  • PipPip
  • Group: Members
  • Posts: 259
  • Joined: 13-October 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 22 August 2006 - 04:15 PM

View PostT D, on Aug 22 2006, 03:08 PM, said:

.NET 2.0 can't be run from svcpack.inf... there was a workaround somewhere.


here:

http://www.msfn.org/...showtopic=59614

for this:

Microsoft .NET Framework All-in-One

to run all of the released DotNet including all hotfixes/updates from svcpack.inf; I am typing this on such an install

This post has been edited by RickSteele: 22 August 2006 - 04:18 PM


#7 User is offline   Dumpy Dooby 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 424
  • Joined: 16-May 05

Posted 22 August 2006 - 05:34 PM

 
@echo off 
SETLOCAL ENABLEEXTENSIONS 
FOR /F "tokens=2* delims=    " %%A IN ('reg query "HKLM\SYSTEM\Setup" /v SystemSetupInProgress') DO SET SSIP=%%B 
IF /I '%SSIP%'=='0x0' SET SSIP=0 
IF /I '%SSIP%'=='0x1' ( 
   SET SSIP=1 
) ELSE ( 
   SET SSIP=1 
) 
IF /I '%SSIP%'=='1' ( 
   reg delete HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW /f 
   reg add HKLM\SYSTEM\Setup /v SystemSetupInProgress /t REG_DWORD /d 0 /f 
) 
hidec.exe /w msiexec /i netfx2.msi /qn 
reg add HKLM\SYSTEM\Setup /v SystemSetupInProgress /t REG_DWORD /d %SSIP% /f 


I wrote this. Been using it for a while. It works. Note the second to last line, hidec.exe /w msiexec /i netfx2.msi /qn. I am using that hidec.exe that RogueSpear includes in all of his silent installers. If you don't want to use that, just modify the syntax of that line. Save this script as a .cmd and put it in with your dnfw2 SFX. ;)

#8 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 22 August 2006 - 11:08 PM

You run PreNTFX.reg before installing .NET Framework 2.0 and PostNTFX.reg after installing it.

Silent command: You can extract the EXE and create a SFX with the following arguments:

Setup=install.exe /q /1033
TempMode
Silent=1
Overwrite=1

Or: You can use the original EXE to install .NET Framework 2.0 by its MSI directly:

dotnetfx.exe /q /c:"msiexec.exe /i netfx.msi ADDEPLOY=1 /qn"

The reference for MSI idea.

PreNTFX.reg said:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\Setup]
"SystemSetupInProgress"=dword:00000000

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW]


PostNTFX.reg said:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\Setup]
"SystemSetupInProgress"=dword:00000001


The reg entries were provided by GreenMachine, if I remember correctly.

#9 User is offline   Pete_ 

  • MSFN Freak
  • Pip
  • Group: Members
  • Posts: 53
  • Joined: 17-August 06

Posted 23 August 2006 - 12:19 AM

Thank you guys, yes I thought the extraction myself, but well didn't figure it out, :blushing: How do you think what's the best order for installing, .NET Framework first or last? :)

#10 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 23 August 2006 - 03:14 AM

View PostPete_, on Aug 23 2006, 09:19 AM, said:

How do you think what's the best order for installing, .NET Framework first or last? :)

I install it after WMP11. But, AFAIK, either order is no problem.

#11 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 23 August 2006 - 04:36 AM

I'd do it near the beginning, juz make sure any .NET built programs run after installation.

#12 User is offline   Pete_ 

  • MSFN Freak
  • Pip
  • Group: Members
  • Posts: 53
  • Joined: 17-August 06

Posted 23 August 2006 - 06:00 AM

Yes, i put it in the beginning, another good example was Sony Ericcsson Sync software, it needed Outlook, and my Office was after Sony installation so it didn't find it, but was easy to fix, just swap these to

#13 User is offline   master888 

  • Group: Members
  • Posts: 5
  • Joined: 23-August 06

Posted 24 August 2006 - 07:22 AM

hi friends,

i ahve a question pls do help me or guide me in this i have tried to make my own xp cd and all goes fine. i have integrate sp2 latest version and even wm10 but the prob now is the net frame v 2.0 i want to know how to integrate this netframe and guide or step by step tutor for this i have download a netframe v2.0 7 zip set up file but i dont know how to integrate that into N lite any1 here can let me know it would be mucly appreciate

Thanks

Maran

#14 User is offline   ricktendo64 

  • Group: Banned Members
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,120
  • Joined: 06-June 06
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 24 August 2006 - 12:13 PM

You integrate it in the Integrate Hotfixes and UpdatePacks section

And RogueSpear has all the dot net addons you need http://www.msfn.org/...showtopic=59614

This post has been edited by ricktendo64: 24 August 2006 - 12:14 PM


#15 User is offline   master888 

  • Group: Members
  • Posts: 5
  • Joined: 23-August 06

Posted 26 August 2006 - 09:35 AM

finally i am donoe with my xp cd all the addons are integraded anyway thank you guys for the help and the one who reply my post u are grt man thanks to the link i get that addon and its working.

during my cd installation i always have to enter computer name and user thats can it be done unatteded and one more is the workgroup domain thing its so anoying how to by pass it without entering anything during installation

Any1

Thanks

maran

#16 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 27 August 2006 - 11:02 AM

I've created a very nice slim installer, it installs .Net 1.1 + all updates & 2.0 + the hotfix. It can be run in 3 ways:
- just double click, then with 1 click it will install everything (One-Click Installer).
- install silently, with or without progressbars, you can even choose (not) to keep the extraction progressbar.
- install silently @T13 (SVCPACK or RunOnceEx or whatever, I use RunOnceEx@T13).

If anyone is interested, after wednesday I'll put it on my site, Dutch and English version, incl 1.1 or only 2.0 (so 2 versions in Dutch and 2 in English language), so you can use it. It's a fast and clean method, just extract and install, no bul***** :)

This post has been edited by ZileXa: 27 August 2006 - 11:03 AM


#17 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 27 August 2006 - 02:45 PM

View PostZileXa, on Aug 27 2006, 08:02 PM, said:

I'll put it on my site

I'm interested. What's your site?

Do I need a workaround at T-13?

#18 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 28 August 2006 - 05:53 AM

Aserone at ryanvm forums made a s/less installer of .net 2 and 1.1.
http://www.msfn.org/...showtopic=75109
Sorry for giving an alternative link than to what you worked at ZilaXa.

#19 User is offline   embe 

  • Junior
  • Pip
  • Group: Members
  • Posts: 81
  • Joined: 04-August 06

Posted 25 September 2006 - 05:14 AM

Guys,

why if I run silent instalation of Net framework 2.0 from RunOnceEx my system doesn`t start. It normally boots and very close to showing my desktop I get error message "System not completely installed, please run setup again" I know what it causes as explained here: Framework 2.0 but I need to know what to do to eliminate it...

This post has been edited by embe: 25 September 2006 - 07:11 AM


#20 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 25 September 2006 - 04:49 PM

Just last night, I used RougeSpear's package. I installed it from SVCPACK with no workarounds, just by itself.

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy