6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PowerShellで関数を実行したら、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください。となった時の対応方法

Posted at
  • 環境
    • Windows10 Pro 64bit バージョン1803
    • PowerShell 5.1.17134.858

事象 : 初めて関数を書いて実行したら怒られた

hoge.ps1
get-sheet-name

function get-sheet-name() {
    # 処理...
}
> ./hoge.ps1
get-sheet-name : 用語 'get-sheet-name' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください。
発生場所 C:\path\to\hoge.ps1:1 文字:1     get-sheet-name
+     ~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (get-sheet-name:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

原因 : 呼び出しより前に関数を定義していないから

あ・・・そうなんだ・・・

対応 : 呼び出すより前に関数を定義する

hoge.ps1
function get-sheet-name() {
    # 処理...
}

get-sheet-name
> ./hoge.ps1
動いた!
6
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?