Powershell get-childitem env:path returns ellipsed one line, how to have something useful?
Everything in powershell is an object. If you want to get the Value of the Path environment variable you have to access that:
(Get-ChildItem env:path).Value
Below command shows the full PATH info instantly.
PS D:\> $env:path