1 min read
Win10のShiftコンテキストメニューからcmdが消えた
PowerShellはやめてくれ
PowerShellは消してcmdに置き換える
Windows Registry Editor Version 5.00
// show cmd in directory
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\cmd]
"ShowBasedOnVelocityId"=dword:00639bc8
"HideBasedOnVelocityId"=dword:00000000
// hide powershell in directory
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Powershell]
"HideBasedOnVelocityId"=dword:00639bc8
"ShowBasedOnVelocityId"=dword:00000000
// show cmd at drive
[HKEY_CURRENT_USER\Software\Classes\Drive\shell\cmd]
"ShowBasedOnVelocityId"=dword:00639bc8
"HideBasedOnVelocityId"=dword:00000000
// hide powershell at drive
[HKEY_CURRENT_USER\Software\Classes\Drive\shell\Powershell]
"HideBasedOnVelocityId"=dword:00639bc8
"ShowBasedOnVelocityId"=dword:00000000