[request] All .Nets in one add-on
-
- Posts: 27
- Joined: Thu Aug 24, 2006 10:56 am
[request] All .Nets in one add-on
I had the foxy 1.1 and 2.0 .net installs, but now it seems it is messing with windows update and fails .net 3.0. I am looking for an add-on that has all the .nets in one file...
Maybe a Windows Defender add-on too
Maybe a Windows Defender add-on too
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
I have one that does all 3 of the .net's and includes the Visual C++ 2005 SP1 I just don't have anywhere where I can upload it and I am too darn poor to really afford to pay for hosting 
[Edit]
Forgot to add that it is all done via svcpack @ T-13.

[Edit]
Forgot to add that it is all done via svcpack @ T-13.
Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
-
- Posts: 162
- Joined: Tue Jun 14, 2005 12:02 am
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
while that *may* true, I have seen instances where even if they have 3.0 install Windows Update still prompts for v2.0.Protagonist. wrote:I think you only need 1.1 and 3.0, because I noticed 3.0 includes 2.0 with itself.
Here is the code of what I have used for my add-on:
Code: Select all
cmdow @ /HID
@ECHO OFF
CLS
FOR /f "tokens=3" %%v in ('reg query HKLM\SYSTEM\Setup /v SystemSetupInProgress') do set value="%%v"
IF %value%=="0x1" GOTO SVCPACK
IF %value%=="0x0" GOTO OTHER
:SVCPACK
msistub framework1\netfx.msi /qn
reg delete HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW /f
reg add HKLM\SYSTEM\Setup /v SystemSetupInProgress /t REG_DWORD /d 0 /f
msistub framework2\netfx2.msi USING_EXUIH=1 REBOOT=Suppress /qn
msistub framework3\vs_setup.msi /qn /norestart NOVSUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress
framework3\wcu\WIC\WIC_X86_ENU.exe /quiet /norestart /nobackup
framework3\wcu\XPS\XPSEPSC-x86-en-US.exe /quiet /norestart /nobackup
msistub VCSP1\vcredist.msi /qn
reg add HKLM\SYSTEM\Setup /v SystemSetupInProgress /t REG_DWORD /d 1 /f
GOTO END
:OTHER
msistub framework1\netfx.msi /qn
msistub framework2\netfx2.msi USING_EXUIH=1 REBOOT=Suppress /qn
msistub framework3\vs_setup.msi /qn /norestart NOVSUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress
framework3\wcu\WIC\WIC_X86_ENU.exe /quiet /norestart /nobackup
framework3\wcu\XPS\XPSEPSC-x86-en-US.exe /quiet /norestart /nobackup
msistub VCSP1\vcredist.msi /qn
GOTO END
:END
EXIT
Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
No offense DeathKnight, but are you blind?
http://www.ryanvm.net/forum/viewtopic.php?t=638
I'm offering FREE hosting on all addons. Just take the time to ask
http://www.ryanvm.net/forum/viewtopic.php?t=638
I'm offering FREE hosting on all addons. Just take the time to ask

Get up to $200 off on hosting from the same people who host this website!
http://www.ryanvm.net/forum/viewtopic.php?t=2357
http://www.ryanvm.net/forum/viewtopic.php?t=2357
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
I uploaded my add-on this morning, I am going through some channels to get it hosted so you all can download it. I will keep you informed.
Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
- dumpydooby
- Posts: 530
- Joined: Sun Jan 15, 2006 6:09 am
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
Well it seems to work for me on a VM and I have just recently tested it on a real machine. As soon as I can upload it you can do with it what you want. 

Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
- RogueSpear
- Posts: 1155
- Joined: Tue Nov 23, 2004 9:50 pm
- Location: Buffalo, NY
@dumpydooby, It's possible that this will work. I never tried the /nobackup switch on some of those .NET 3.0 components. It's possible that could alleviate the file lock issue with the .NET 1.1 hotfix. I did have some problems however with not using the setup.exe from .NET 3.0.
I'll be experimenting with it myself (can't believe I'm still screwing around with this stuff).
I'll be experimenting with it myself (can't believe I'm still screwing around with this stuff).
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
LOL, don't try setup.exe. It won't work. I have already tried :p That is why I added the components separately because with the .MSI it doesn't install those 2 components and when scanning on windows updates it considered those 2 components part of 3.0. There may be more components that need to be added but only found that it looks for those 2. I can't tell if the other components are really needed...
Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
- RogueSpear
- Posts: 1155
- Joined: Tue Nov 23, 2004 9:50 pm
- Location: Buffalo, NY
Setup.exe with switches works and in the absence of one of the .NET 1.1 hotfixes, I can do all three in one pass. It's been so long since I've messed with this that I can't remember what the issue was, but installing each part of .NET 3.0 piece by piece gave me more problems than I was willing to troubleshoot.
- RogueSpear
- Posts: 1155
- Joined: Tue Nov 23, 2004 9:50 pm
- Location: Buffalo, NY
Actually upon further inspection I can see why this will work without error. He is not installing the Windows Presentation Foundation - the source of my problems with implementing an AIO .NET package.
Also missing from this setup routine:
EDIT2: My bad, it's WCF not WPF that has the file lock problem. And I made another installer to test out some of the things here I hadn't tried previously. Unfortunately it still doesn't work.
Also missing from this setup routine:
- Windows Communication Foundation
- Windows Workflow Foundation
EDIT2: My bad, it's WCF not WPF that has the file lock problem. And I made another installer to test out some of the things here I hadn't tried previously. Unfortunately it still doesn't work.
Product: Windows Communication Foundation -- Error 1304.Error writing to file: Microsoft.Transactions.Bridge.dll. Verify that you have access to that directory.
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
To be honest I think I fixed the problem with the running it with setup. Now whether or not it installed the 2 components above I am unsure of at this point but I am doing further testing to see what is going on.
Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook
So I made a 42.9MB all-in-one .NET installer today that's svcpack compatible. I need to polish it up a bit, but it works.


Get up to $200 off on hosting from the same people who host this website!
http://www.ryanvm.net/forum/viewtopic.php?t=2357
http://www.ryanvm.net/forum/viewtopic.php?t=2357
- RogueSpear
- Posts: 1155
- Joined: Tue Nov 23, 2004 9:50 pm
- Location: Buffalo, NY
- DeathKnight
- Posts: 24
- Joined: Sun May 21, 2006 1:57 am
- Location: Utah
Good Job RyanVMRyanVM wrote:So I made a 42.9MB all-in-one .NET installer today that's svcpack compatible. I need to polish it up a bit, but it works.

Programming today is a race between software engineers striving to build bigger and better id***-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
- Rich Cook
- Rich Cook