Get-Service, Get-Module, Get-ChildItem werden in PowerShell nicht erkannt

Get-Service, Get-Module, Get-ChildItem werden in PowerShell nicht erkannt

Ich habe verschiedene Befehle in Powershell ausprobiert, aber keiner funktioniert. Wo könnte das Problem liegen?

Screenshot der Befehle, die ich ausprobiert habe

Ich kann nicht einmal den Befehl ausführen, um die Version zu überprüfen:

C:\Users\ams.ssh>$PSversionTable „$PSversionTable“ wird nicht als interner oder externer Befehl, ausführbares Programm oder Batchdatei erkannt.

C:\Users\ams.ssh>$PSversionTable.PSVersion „$PSversionTable.PSVersion“ wird nicht als interner oder externer Befehl, ausführbares Programm oder Batchdatei erkannt.

C:\Users\ams.ssh>Get-Host | Select-Object Version „Get-Host“ wird nicht als interner oder externer Befehl, ausführbares Programm oder Batchdatei erkannt.

Antwort1

Dies sind Eingabeaufforderungsfehler. Sie versuchen, PowerShell-Befehle von cmd.exe aus auszuführen. Ein PowerShell-Fehler sieht folgendermaßen aus:

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

Keith

verwandte Informationen