January 2, 200818 yr How did you slip MSP's into MSI's?I've extracted packages, then I didstart /wait FOR %f IN (*.msp) DO msiexec /p %f /a [name_of_the_msi]in the folder with MSP's.=====edit=====@Tomcat76Maybe you could just code Silent .NET Maker to extract .NET 3.5 redistributable (dotnetfx35.exe with 7 zip and then, to patch MSI's with MSP's.I'm not sure if it's a good idea.. Edited January 2, 200818 yr by spitf1r3
January 2, 200818 yr The point is Silent .NET Maker creates SFXes form standard redistributables, to make it easier for everyone.Using external software makes it even more complicated...What about .NET 3.5?
January 7, 200818 yr With .NET Compact Framework 3.5 Redistributable I do not think any other package is needed is it? Not sure if you still net version 3.0 though.
January 7, 200818 yr I don't think compact framework can do the thing..I've tried .NET compact framework 2, and the normal windows .NET application didn't wanted to start.AFAIK compact framework is for mobile devices...BUT...I might be wrong;D
January 7, 200818 yr Lol it is sorry. I just wish MS would release one package that would be good for all 3.
January 7, 200818 yr They just mess with compatibility, and numbers....3, and 3.5 include 2, but 2 doesn't include 1.Sounds like mess;/That's why TC76 is building this...
January 7, 200818 yr They just mess with compatibility, and numbers....3, and 3.5 include 2, but 2 doesn't include 1.Sounds like mess;/That's why TC76 is building this...========EDIT==========OOOPS!Sorry for double-posting, I've made that by accident..If any moderator is here: could you please delete this post? Edited January 7, 200818 yr by spitf1r3
January 8, 200818 yr Could some one driect me to we I can find these updates. thanks.KB929300 .net 3KB110806 .net 2
January 9, 200818 yr On the internet xDAnd seriously, try The HotfixShare. Edited January 9, 200818 yr by spitf1r3
January 11, 200818 yr To integrate .Net Framework 2.0 SP1, 3.0 SP1, and 3.5 correctly, read GUIDE: Integrating .Net Framework 3.5, 3.0 SP1, 2.0 SP1, on 32-bit Windows XP (written by yours truly). Edited January 12, 200818 yr by DarkShadows
January 24, 200818 yr Hi allI want to use winrar instead of 7-zip to make my sfx ? What can i do please ? i think 'tomcat76' could Help me ?Thank in advance
February 17, 200818 yr Author Just to answer the question that's being asked over and over again.... I didn't abandon this script. It's just that I didn't find a way to silently install .NET 2.0 SP1 and .NET 3.0 SP1 aside from just repacking it. Silent .NET Maker is about creating an administrative install, patching the updates into that, and creating a new install package. This has failed until now and I haven't been able to figure out why. I recently followed someone's advise to extract the .NET 2.0 SP1 executable and to patch the contained MSI with the contained MSP files, but that share always fails to install (can't install from Netfx20a_x86.msi, can't install from vs_setup.msi and can't install from setup.exe), and I've tried many switches. Note that I didn't even try to install at T-13; my attempts only included installs on a real system so the problem is not installation at T-13 but installation in general. I've been trying that for two days straight with no meaningful result apart from the fact that I made a new 7zS.sfx file but I won't release a new version of Silent .NET Maker just for that.If there's any guide that would explain how to make an administrative install of .NET 2.0 SP1 and .NET 3.0 SP1 so that they can be easily patched with future updates *and* can be installed, please share it.@Tomalak:NDP1.1sp1-KB867460-X86.exe = SP1 for .NET 1.1NDP1.1sp1-KB928366-X86.exe = latest cumulative post-SP1 update for .NET 1.1NDP20-KB928365-X86.exe = latest cumulative update for .NET 2.0 SP0So the list is complete as far as .NET 1.1 SP1 and .NET 2.0 SP0 are concerned.
February 17, 200818 yr I experience problems using this with nLite. I read I can use the SVCPACK-method, and I though nLite used it. Created DN11 og DN20.
February 21, 200818 yr If there's any guide that would explain how to make an administrative install of .NET 2.0 SP1 and .NET 3.0 SP1 so that they can be easily patched with future updates *and* can be installed, please share it.@Tomcat76Have you read through Microsoft .NET Framework 3.5 Administrator Deployment Guide (MSDN)? It has a lot of information in it. I haven't had time to play with it yet. It is seems aimed at an active directory environment, but I'm wondering if there isn't a way to leverage some of that into a self-extracting executable?Most notable to me is the example NT Command Script at the bottom of the page. In the very last section of code:REM ------------------------------------------------------------REM create the NETFX30 SP1 x86 admin install pointREM 3.0 SP1 files locationSet fx30=%WORKFOLDER%\ext\wcu\dotNetFramework\dotNetFX30\md %WORKFOLDER%\AIP\NETFX30_x86call msiexec /a %fx30%netfx30a_x86.msi /update %fx30%WCF.msp;%fx30%WCS.msp;%fx30%WF.msp;%fx30%WPF1.msp;%fx30%WPF2.msp;%fx30%WPF_Other.msp;%fx30%XPS.msp;%fx30%WF_32.msp;%fx30%WPF2_32.msp;%fx30%WPF_Other_32.msp USING_EXUIH=1 REBOOT=ReallySuppress /l*v %WORKFOLDER%\logs\netfx30_x86.log TARGETDIR=%WORKFOLDER%\AIP\NETFX30_x64REM create the NETFX30 SP1 x64 admin install pointmd %WORKFOLDER%\AIP\NETFX30_x64call msiexec /a %fx30%netfx30a_x64.msi /update %fx30%WCF.msp;%fx30%WCS.msp;%fx30%WF.msp;%fx30%WPF1.msp;%fx30%WPF2.msp;%fx30%WPF_Other.msp;%fx30%XPS.msp;%fx30%WCF_64.msp;%fx30%WCS_64.msp;%fx30%WF_64.msp;%fx30%WPF1_64.msp;%fx30%WPF2_64.msp;%fx30%WPF_Other_64.msp USING_EXUIH=1 REBOOT=ReallySuppress /l*v %WORKFOLDER%\logs\netfx30_x64.log TARGETDIR=%WORKFOLDER%\AIP\NETFX30_x64EDIT: Also see Microsoft .NET Framework 3.5 Deployment Guide for Application Developers Edited February 21, 200818 yr by DarkShadows
Create an account or sign in to comment