Comments on: Enable .NET Framework 3.5 in Windows 10 using SCCM https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/ SCCM | ConfigMgr | Intune | Windows 11 | Azure Thu, 05 Jan 2023 03:12:26 +0000 hourly 1 https://wordpress.org/?v=6.4.1 By: User H https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-41622 https://www.prajwaldesai.com/?p=16877#comment-41622 Tested on Win10 22H2, above worked. Thank you.

]]>
By: Ricardo https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-41462 https://www.prajwaldesai.com/?p=16877#comment-41462 hi.
where is the bat file called?

]]>
By: Chris https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-34795 https://www.prajwaldesai.com/?p=16877#comment-34795 In reply to Chris.

Juste one more for all versions 😉
detection => registre

hive => HKLM
Key => SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5
Value => Install

have to existe

]]>
By: Chris https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-34794 https://www.prajwaldesai.com/?p=16877#comment-34794 Hi everyone,

Juste for information. (I passed long time to resolve versioning of Win10)
I make an application NetFx3.5 with this package as a deployment type.

I use a new personal Global condition for know the version of Windows with this script.

$Build = (Get-ItemProperty ‘HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion’ -Name CurrentBuild).CurrentBuild

switch ($Build) {
#Clients
“18363” { $OS = “Win10_1909” }
“19042” { $OS = “Win10_20H2” }
“19043” { $OS = “Win10_21H1” }
“19044” { $OS = “Win10_21H2” }
“22000” { $OS = “Win11_21H2” }
#Server
“14393” { $OS = “WinSrv_2016” }
“17763” { $OS = “WinSrv_2019” }
“20348” { $OS = “WinSrv_2022” }
#Default
Default { $OS = “Non”}
}
Write-Host $OS

And you just have to create one deployment type by version in your application. (and one
source folder by version)

It works fine for me

Thx Prajwal for this post (and all other)

]]>
By: RoGr https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-24222 https://www.prajwaldesai.com/?p=16877#comment-24222 In reply to Daniel.

Same issue here. Has any of you been able to fix it?

]]>
By: Abdul Hannan https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-16905 https://www.prajwaldesai.com/?p=16877#comment-16905 In reply to Sammel.

you need to have the .net cab files from 1909 iso. If you use older ones it won’t work.

]]>
By: Sammel https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-16867 https://www.prajwaldesai.com/?p=16877#comment-16867 Did anyone find a method of applying .net 3.5 to a 1909 task sequence ?

]]>
By: Justin https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-16428 https://www.prajwaldesai.com/?p=16877#comment-16428 In reply to Daniel.

I have the same issue

]]>
By: Trenton https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-16122 https://www.prajwaldesai.com/?p=16877#comment-16122 I’m having the exact same problem, Daniel. Won’t run in the machine build task sequence as I’ve always had it and it won’t auto after the machine has built. I have had it say ‘Success’, but nothing has happened. If I run the PowerShell manually it works. Which defies the point sadly.

]]>
By: Daniel https://www.prajwaldesai.com/enable-net-framework-3-5-in-windows-10-using-sccm/#comment-15887 https://www.prajwaldesai.com/?p=16877#comment-15887 Not working on 1909. The task sequence finishes without an error but nothing really happens.

]]>