このチュートリアルを使用して、PowerShellISEにメニュー項目を追加しようとしています。
Function My-Custom-Function {
Write-Host “Running my very own function!”
}
$psISE.CustomMenu.Submenus.Add(“Run Custom Function”, {My-Custom-Function}, “Shift+Ctrl+f”)
しかし、何らかの理由でこのエラーが発生します。
You cannot call a method on a null-valued expression.
At line:5 char:31
+ $psISE.CustomMenu.Submenus.Add <<<< (“Run Custom Function”, {My-Custom-Function}, “Shift+Ctrl+f”)
+ CategoryInfo : InvalidOperation: (Add:String) [], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull
Windows 7 Enterpriseを実行し、PowerShellISEを管理者として実行しています...
この問題について何か考えはありますか?