...
Using DISM:
DISM /online /Enable-Feature /FeatureName:"NetFx3"
...
Or with PowerShell:
Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3"
...
To make sure that the .NET Framework is successfully installed, run the command:
Get-WindowsCapability -Online -Name NetFx3~~~~
...
Enabling IIS on Windows Desktop
You need to ensure that Internet Information Services is enabled. Go to Start->Run type inetmgr and press OK. If you get an IIS configuration screen it is installed, otherwise you will get an error message.
...
If you need to enable it open Control Panel \ Programs and Features and select Turn Windows features on or off.
...
This is important in the final step of logging into the LAN Service for the first time, where we have to connect to the database with a valid user and password.
Other Software Requirements
If you are setting up the machine for the first time, you will also need to ensure the following are also pre-installed;
Check if .NET 4.5.2 is installed. https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed#net_b .
If it is not installed, go here and download/install it www.microsoft.com/en-au/download/details.aspx?id=42643
asp.net needs to be configured and registered with the IIS server using the command line
C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis -iru
...
Installing on Standalone Windows 10
...