Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 657 Bytes

create-powershell-profile.md

File metadata and controls

31 lines (28 loc) · 657 Bytes
aliases archive_links category classification date date_modified draft id image links local_archive_links pinned print series tags title type
create-powershell-profile
powershell
public
2020-06-19 04:57:42 -0700
2020-06-19 04:57:42 -0700
false
20200619115742
false
false
powershell
profile
windows
Create a PowerShell Profile
tech-note
# Check if profile already exists:
Test-Path $profile

# Create a profile if above returns false:
New-Item -path $profile -type file –force

# Profile created at below path, ready for editing:
C:\Users\<username>\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1