Eintrag

Explorer – sort alphabetic

instead of default – numbers are sorted asc first

1
2
3
4
5
6
$registryPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
$name = 'NoStrCmpLogical'
$value = 1
New-Item -Path $registryPath -Force | Out-Null
New-ItemProperty -Path $registryPath -Name $name -Value $value `
    -PropertyType DWORD -Force | Out-Null
Dieser Eintrag ist vom Autor unter CC BY 4.0 lizensiert.