DotNet 1.1 installation on Windows 7

DotNet 1.1 installation on Windows 7

This post is just in case should I ever need this again, yes I know it’s very old stuff Smile

To create an administrative installation point for .Net 1.1 with SP1 and hotfix, follow this:

 

Commands executed:

image

 

DotNet.Tmp folder after all files is downloaded and extracted:

image

 

  • Create the administrative installation folder with the command c:DotNet.Tmpdotnetfx.exe /c:”msiexec.exe /a netfx.msi TARGETDIR=c:DotNet”
  • Patch the installation folder with SP1 msiexec.exe /a c:dotnetnetfx.msi /p c:dotnet.tmpsp1.msp
  • Patch the installation folder with the hotfix msiexec.exe /a c:dotnetnetfx.msi /p c:dotnet.tmpNDP1.1sp1-KB979906-X86.msp

 

Installation commands executed

image

Now install DotNet 1.1 with the command msiexec /i C:DotNetnetfx.msi /quiet /norestart

If you just start the MSI on Windows 7 you will see this warning:

image

The warning can be bypassed if you set this value in the registry:

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionAppCompatFlags]
“{11F1F8EE-7E7F-4F1D-BE93-B4D310F0760A}”=dword:00000004

image

The installation will also add a RunOnce action, and you might want to remove the entry.

image

[HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionRunOnce]
“NetFxUpdate_v1.1.4322″=-

 

Settings and installation in a vbscript:

Set oShell = CreateObject(“WScript.Shell”)
oShell.Regwrite “HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionAppCompatFlags{11F1F8EE-7E7F-4F1D-BE93-B4D310F0760A}”, 4 ,”REG_DWORD”

RunCommand = “cmd /c start /wait msiexec /i netfx.msi /quiet /norestart”
oShell.run RunCommand,0,TRUE

oShell.Regdelete “HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionRunOnceNetFxUpdate_v1.1.4322”

+ posts

Table of Contents

Share this post
Search blog posts
Search
Authors
Modern Workplace consultant and a Microsoft MVP in Enterprise Mobility.

Modern Workplace consultant and a Microsoft MVP in Windows and Devices.

Infrastructure architect with focus on Modern Workplace and Microsoft 365 security.

Cloud & security specialist with focus on Microsoft backend products and cloud technologies.

Cloud & security specialist with focus on Microsoft 365.

Cloud & Security Specialist, with a passion for all things Cybersecurity

Cloud and infrastructure security specialist with background in networking.

Infrastructure architect with focus on design, implementation, migration and consolidation.

Infrastructure consultant with focus on cloud solutions in Office365 and Azure.

Modern workplace and infrastructure architect with a focus on Microsoft 365 and security.

follow us in feedly
Categories

Follow on SoMe