Posted On February 5, 2020

Windows 2012: How To Install DotNet Framework 2.0 & 3.0

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Windows 2012: How To Install DotNet Framework 2.0 & 3.0
  • If there’re HTTPS/TLS issues, run this function: https://blog.kimconnect.com/powershell-enable-tls-1-2-on-legacy-servers/
  • Toggle WSUS registry key to off prior to running this command: https://blog.kimconnect.com/powershell-setting-wsus-registry-setting-on-off-for-client-windows/
# Install DotNet Framework 2.0 and 3.5

PS C:\Windows\system32> DISM /Online /Enable-Feature /FeatureName:NetFx3 /All

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Image Version: 6.3.9600.17031

Enabling feature(s)
[==========================100.0%==========================]
The operation completed successfully.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Remove A-record in Bluecat

$bluecatUri='https://bluecat.kimconnect.com/Services/API' $bluecatUsername='bluecat-service-api' $bluecatPassword='SOMECOMPLEXPASSWORD' $hostRecord='testrecord.kimconnect.com' function loginBluecat{ param( $username, $password, $uri ) $proxy = New-WebServiceProxy -Uri…

Hyper-V: Cloning a Virtual Machine

Update 11/25/2021: There's anther variation of this function at: https://blog.kimconnect.com/powershell-create-hyper-v-guest-vm-from-virtual-disk-vhdx/This function will dynamically detect source…

Linux: Use Lubuntu 20.04, TightVNC Server, NoVNC, WebSockify to Create a Terminal Server Accessible via Any Browser!

Use Case:Imagine a virtual classroom with students using Chromebooks, iPads, and other types of computers,…