Introduction

備忘録。
こういうことです。

before

after

How to do?

下記の手順で実行可能で、効果は現在のユーザのみ。
いずれも管理者権限を持った Powershell で実行。

数値による並び替えの有効化

1
2
3
$ New-Item 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
$ Remove-ItemProperty -LiteralPath 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoStrCmpLogical'
$ New-ItemProperty -LiteralPath 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoStrCmpLogical' -PropertyType 'DWord' -Value 1

数値による並び替えの無効化

1
2
3
$ New-Item 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
$ Remove-ItemProperty -LiteralPath 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoStrCmpLogical'
$ New-ItemProperty -LiteralPath 'HKCU:Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoStrCmpLogical' -PropertyType 'DWord' -Value 0