Powershell에서 다른 명령을 시도했지만 모두 작동하지 않습니다. 어디에 문제가 있을 수 있습니까?
버전을 확인하는 명령도 실행할 수 없습니다.
C:\Users\ams.ssh>$PSversionTable '$PSversionTable'은 내부 또는 외부 명령, 실행 가능한 프로그램 또는 배치 파일로 인식되지 않습니다.
C:\Users\ams.ssh>$PSversionTable.PSVersion '$PSversionTable.PSVersion'은 내부 또는 외부 명령, 실행 가능한 프로그램 또는 배치 파일로 인식되지 않습니다.
C:\Users\ams.ssh>Get-Host | Select-Object 버전 '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
키스