PowerShell: List profiles in USE March 13, 2019 9:42 am \ by John Perry # List profiles in USE $PROFILE | get-member -MemberType noteproperty| %{ $ProfileName = $_.Name; $ProfilePath = ($_.Definition).Split('=')[1] if (test-path $ProfilePath) { write-host "$ProfileName `t$ProfilePath" } } Posted in: PowerShell