Get-Service、Get-Module、Get-ChildItem が PowerShell で認識されない

Get-Service、Get-Module、Get-ChildItem が PowerShell で認識されない

Powershell でさまざまなコマンドを試しましたが、どれも機能しません。どこに問題があるのでしょうか?

私が試したコマンドのスクリーンショット

バージョンを確認するコマンドも実行できません:

C:\Users\ams.ssh>$PSversionTable '$PSversionTable' は、内部または外部のコマンド、操作可能なプログラム、またはバッチ ファイルとして認識されません。

C:\Users\ams.ssh>$PSversionTable.PSVersion '$PSversionTable.PSVersion' は、内部または外部のコマンド、操作可能なプログラム、またはバッチ ファイルとして認識されません。

C:\Users\ams.ssh>Get-Host | Select-Object Version 'Get-Host' は、内部または外部のコマンド、操作可能なプログラム、またはバッチ ファイルとして認識されません。

答え1

これらはコマンド プロンプト エラーです。cmd.exe から PowerShell コマンドを実行しようとしています。PowerShell エラーは次のようになります。

PS C:\...\keith>get-bob
get-bob : The term 'get-bob' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.
At line:1 char:1
+ get-bob
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (get-bob:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

キース

関連情報