aliases | category | classification | date | date_modified | draft | id | image | links | local_archive_links | pinned | series | tags | title | type | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
powershell |
public |
2020-06-19 04:57:42 -0700 |
2020-06-19 04:57:42 -0700 |
false |
20200619115742 |
false |
false |
|
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