右键单击 Powershell 文件时“编辑”上下文操作消失了

右键单击 Powershell 文件时“编辑”上下文操作消失了

我好像失去了右键点击编辑用于启动 Powershell ISE 的 *.ps1 文件的操作。我该如何恢复它?

我认为这一定是在我安装和卸载后发生的图形界面

答案1

我也遇到过这种情况。将以下内容导入为 .reg 文件以修复此问题。我做了一个调整,使默认 shell 操作(双击)使用编辑命令(ISE)而不是打开(notepad.exe)。如果您不介意,只需将第 7 行更改为@="Open"

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\DefaultIcon]
@="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe\",1"

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell]
@="Edit"

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Edit]

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Edit\Command]
@="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe\" \"%1\""

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open]

[HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command]
@="\"C:\\Windows\\System32\\notepad.exe\" \"%1\""

相关内容