Answers for "create powershell profile"

0

Microsoft.PowerShell_profile.ps1

New-Item $profile -Type File -Force
Posted by: Guest on May-15-2021
0

create powershell profile

# Creates profile if doesn't exist then edits it
if (!(Test-Path -Path $PROFILE)){ New-Item -Path $PROFILE -ItemType File } ; ise $PROFILE
Posted by: Guest on April-17-2022

Code answers related to "create powershell profile"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language