the_one_that_cant Posted May 24, 2011 Posted May 24, 2011 I am trying to install Flowol via AD/GP yet it doesn't install on the machines. its spewing up an error relating to the above update. Does anyone have it as an msi file (can only find .exe files on the net). Mucho Gracias to the person that can help me :-)
mac_shinobi Posted May 24, 2011 Posted May 24, 2011 I am trying to install Flowol via AD/GP yet it doesn't install on the machines. its spewing up an error relating to the above update. Does anyone have it as an msi file (can only find .exe files on the net). Mucho Gracias to the person that can help me :-) Download details: .NET Compact Framework 3.5 Redistributable I know its not the SP 1 version but am sure via wsus / windows updates its easy enough to update it If not I know there is a switch for the exe to extract the msi out of the exe - will have to google for it.
mac_shinobi Posted May 24, 2011 Posted May 24, 2011 I am trying to install Flowol via AD/GP yet it doesn't install on the machines. its spewing up an error relating to the above update. Does anyone have it as an msi file (can only find .exe files on the net). Mucho Gracias to the person that can help me :-) Download details: .NET Compact Framework 3.5 Redistributable I know its not the SP 1 version but am sure via wsus / windows updates its easy enough to update it EXE setup file setup.exe /a or setup.exe -a Depends what made the exe as to what switch(es) to use
the_one_that_cant Posted May 24, 2011 Author Posted May 24, 2011 I tried using the Compact version, but the software doesn't like it. I am a newb at pinching the msi's outta exe files, I need a dummies guide to it :-(
K.C.Leblanc Posted May 24, 2011 Posted May 24, 2011 I tried using the Compact version, but the software doesn't like it. I am a newb at pinching the msi's outta exe files, I need a dummies guide to it :-( Either run the .exe from a command prompt using the /a switch. Or open it using something like 7-Zip
Arthur Posted May 24, 2011 Posted May 24, 2011 This is the version you need... http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d0e5dea7-ac26-4ad7-b68c-fe5076bba986 (Direct Link)
mac_shinobi Posted May 24, 2011 Posted May 24, 2011 (edited) This is the version you need... Download details: Microsoft .NET Framework 3.5 Service pack 1 (Full Package) (Direct Link) Found this although the above seems to be the exe still Unattended : .Net Framework 3.5 SP1 Redistributable quote from the above link states to extract it use : DotNet.exe /x Obviously substitute DotNet.exe with the actual full executable name Edit - the exe arthur posted is the correct exe ( ignore my compact .net framework ) Edited May 24, 2011 by mac_shinobi
Michael Posted May 24, 2011 Posted May 24, 2011 This is the script I wrote to install Microsoft .NET Framework 1.1, 2.0, 3.0, 3.5 + 4.0. You can just copy the bits you need. In future I'd recommend you install it manually before taking an image. It saves a lot of time! @echo off setlocal set PATHTOFIXES=C:\logistixonline.com\NET_Framework TITLE Installing Microsoft .NET Framework 1.1, 2.0, 3.0, 3.5 + 4.0... echo. echo Installing .NET Framework 1.1 SP1... start /wait dotnetfx1.exe /q:a /c:"install.exe /q" echo. echo Installing .NET Framework 1.1 SP1 Update 1... start /wait NDP1.1sp1-KB867460-X86.exe /q /i echo. echo Installing .NET Framework 1.1 SP1 Update 2... start /wait NDP1.1sp1-KB2416447-X86.exe /q /norestart echo. echo Installing .NET Framework 2.0 SP2... start /wait dotnetfx2.exe /q:a /c:"install.exe /q" echo. echo Installing .NET Framework 3.0 SP2... start /wait dotnetfx3.exe /q /norestart echo. echo Installing .NET Framework 3.5 SP1... start /wait dotnetfx35.exe /q /norestart echo. echo Installing .NET Framework 2.0 SP2 Update 1... %PATHTOFIXES%\NDP20SP2-KB979909-x86.exe /q /norestart echo. echo Installing .NET Framework 2.0 SP2 Update 2... %PATHTOFIXES%\NDP20SP2-KB2418241-x86.exe /q /norestart echo. echo Installing .NET Framework 2.0 SP2 Update 3... %PATHTOFIXES%\NDP20SP2-KB2446704-v2-x86.exe /q /norestart echo. echo Installing .NET Framework 2.0 SP2 Update 4... %PATHTOFIXES%\NDP20SP2-KB958481-x86.exe /q /norestart echo. echo Installing .NET Framework 3.0 SP2 Update 1... %PATHTOFIXES%\NDP30SP2-KB977354-v2-x86.exe /q /norestart echo. echo Installing .NET Framework 3.0 SP2 Update 2... %PATHTOFIXES%\NDP30SP2-KB982168-x86.exe /q /norestart echo. echo Installing .NET Framework 3.0 SP2 Update 3... %PATHTOFIXES%\NDP30SP2-KB958483-x86.exe /q /norestart echo. echo Installing .NET Framework 3.5 SP1 Update 1... %PATHTOFIXES%\NDP35SP1-KB958484-x86.exe /q /norestart echo. echo Installing .NET Framework 3.5 SP1 Update 2... %PATHTOFIXES%\NDP35SP1-KB963707-x86.exe /q /norestart echo. echo Installing .NET Framework 3.5 SP1 Update 3... %PATHTOFIXES%\NDP35SP1-KB2416473-x86.exe /q /norestart echo. echo Installing .NET Framework 4.0... start /wait dotnetfx4.exe /q /norestart echo. echo Installing .NET Framework 4.0 Update 1... %PATHTOFIXES%\NDP40-KB2416472-x86.exe /q /norestart echo. echo Installing .NET Framework 4.0 Update 2... %PATHTOFIXES%\NDP40-KB2446708-x86.exe /q /norestart echo. PAUSE EXIT
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now