Summary: Learn how to determine if you have a local Windows PowerShell profile.
How can I find if I have a Windows PowerShell profile?
Use the Test-Path cmdlet, and check for the existence of $profile, for example:
test-path $PROFILE
0 comments