crypticus Well-Known Member Messages 1,664 Reaction score 461 Nov 22, 2025 #1 nuhi Can we add support for Force Using Lastest .Net Desktop Runtime setx /M DOTNET_ROLL_FORWARD FLAG thanks Last edited: Nov 22, 2025
nuhi Can we add support for Force Using Lastest .Net Desktop Runtime setx /M DOTNET_ROLL_FORWARD FLAG thanks
G garlin Moderator Staff member Messages 8,239 Reaction score 4,003 Nov 22, 2025 #2 For technical reference: https://learn.microsoft.com/en-us/dotnet/core/versions/selection#precedence
crypticus Well-Known Member Messages 1,664 Reaction score 461 Nov 22, 2025 #3 I think it should be added since we already have uselatestclr option they are basically same thing for 2 different framework groups reg add "HKLM\SOFTWARE\Microsoft\.NETFramework" /v OnlyUseLatestCLR /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\.NETFramework" /v OnlyUseLatestCLR /t REG_DWORD /d 1 /f
I think it should be added since we already have uselatestclr option they are basically same thing for 2 different framework groups reg add "HKLM\SOFTWARE\Microsoft\.NETFramework" /v OnlyUseLatestCLR /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\.NETFramework" /v OnlyUseLatestCLR /t REG_DWORD /d 1 /f
G garlin Moderator Staff member Messages 8,239 Reaction score 4,003 Nov 23, 2025 #4 Code: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment] "DOTNET_ROLL_FORWARD"="LatestMajor" Code: [HKEY_CURRENT_USER\Environment] "DOTNET_ROLL_FORWARD"="LatestMajor"
Code: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment] "DOTNET_ROLL_FORWARD"="LatestMajor" Code: [HKEY_CURRENT_USER\Environment] "DOTNET_ROLL_FORWARD"="LatestMajor"