If profile already exists then
notepad $PROFILE
else use the command below to create new profile
New-Item -Path $profile -Type File -Force
# Creates profile if doesn't exist then edits it
if (!(Test-Path -Path $PROFILE)){ New-Item -Path $PROFILE -ItemType File } ; ise $PROFILE