all about computer information and technology
RSS icon Email icon Home icon
  • How to Install .net framework 1.1 in Windows 7 64-bit?

    Posted on October 2nd, 2015 admin No comments

    This has been known forever, from Vista through to Windows 7.
    The solution to it is simple.

    Create a new folder named DotNetin C:\ drive (C:\DotNet is used in this guide, you can change to any folder you prefer, but ensure that you use correct path in the following steps).

    Download Microsoft .NET Framework 1.1 Redistributable Package (dotnetfx.exe ). Make sure the setup file is saved as dotnetfx.exe .
    Download Microsoft .NET Framework 1.1 Service Pack 1 (NDP1.1sp1-KB867460-X86.exe ). Make sure that the file is renamed and saved as dotnetfxsp1.exe , so that the rest of the steps can be followed easily.

    Move both installation files into the same directory (i.e. C:\DotNet), if you’re not saving them together.
    Open command prompt as Administrator .

    Change to the directory where the two installation setup files for .NET 1.1 are saved (i.e. C:\DotNet).

    Run the following commands one by one, press Enter after each one.

    dotnetfx.exe /c:”msiexec.exe /a netfx.msi TARGETDIR=C:\DotNet”

    Then click on “Yes” when prompted to answer “would you like to install Microsoft .NET Framework 1.1. Package?”

    dotnetfxsp1.exe /Xp:C:\DotNet\netfxsp.msp

    msiexec.exe /a c:\DotNet\netfx.msi /p c:\DotNet\netfxsp.msp

    Install Microsoft .Net Framework 1.1 with slipstreamed/integrated Service Pack 1 by running netfx.msi created in the working folder.

    Comments are closed.