diff --git a/src/System.Management.Automation/namespaces/FileSystemProvider.cs b/src/System.Management.Automation/namespaces/FileSystemProvider.cs index a53534d60..dcb42ecff 100644 --- a/src/System.Management.Automation/namespaces/FileSystemProvider.cs +++ b/src/System.Management.Automation/namespaces/FileSystemProvider.cs @@ -2449,8 +2449,9 @@ namespace Microsoft.PowerShell.Commands { // The new AllowUnprivilegedCreate is only available on Win10 build 14972 or newer var flags = isDirectory ? NativeMethods.SymbolicLinkFlags.Directory : NativeMethods.SymbolicLinkFlags.File; - if (Environment.OSVersion.Version.Major == 10 && Environment.OSVersion.Version.Build >= 14972 || - Environment.OSVersion.Version.Major >= 11) + + Version minBuildOfDeveloperMode = new Version(10, 0, 14972, 0); + if (Environment.OSVersion.Version >= minBuildOfDeveloperMode) { flags |= NativeMethods.SymbolicLinkFlags.AllowUnprivilegedCreate; } diff --git a/test/powershell/Modules/Microsoft.PowerShell.Management/New-Item.Tests.ps1 b/test/powershell/Modules/Microsoft.PowerShell.Management/New-Item.Tests.ps1 index 9eaf79239..7f49225dd 100644 --- a/test/powershell/Modules/Microsoft.PowerShell.Management/New-Item.Tests.ps1 +++ b/test/powershell/Modules/Microsoft.PowerShell.Management/New-Item.Tests.ps1 @@ -262,7 +262,9 @@ Describe "New-Item with links fails for non elevated user if developer mode not $testlink = "testlink" $FullyQualifiedFile = Join-Path -Path $TestDrive -ChildPath $testfile $TestFilePath = Join-Path -Path $TestDrive -ChildPath $testlink - $developerMode = (Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock -ErrorAction SilentlyContinue).AllowDevelopmentWithoutDevLicense -eq 1 + $developerModeEnabled = (Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock -ErrorAction SilentlyContinue).AllowDevelopmentWithoutDevLicense -eq 1 + $minBuildRequired = [System.Environment]::OSVersion.Version -ge "10.0.14972" + $developerMode = $developerModeEnabled -and $minBuildRequired } AfterEach {