PowerShell – create and edit profiles

No Comments on PowerShell – create and edit profiles

If you use aliases, functions or variables in PowerShell so they are only available for your active session. As soon as you quit your session, all changes are lost.

To permanently use your custom settings in PowerShell you can work with PowerShell Profiles. Here you can configure aliases, functions and variables. The profile is loaded every time you start a new PowerShell session and so your custom Settings are available to you.

Profiles can be created for single users or for all users of a system. Also, you can copy and deploy profiles to get an consistent PowerShell environment. Especially in large environments this can be very helpful.

Profiles

There are four types of profiles. More specific profiles override the gernal:

  • %windir%\system32\WindowsPowerShellv1.0profile.ps1
      profile for all users and all shells
  • %windir%\system32\WindowsPowerShellv1.0 Microsoft.PowerShell_profile.ps1
      profile for all users but only Microsoft.PowerShell shell
  • %UserProfile%\Documents\WindowsPowerShellprofile.ps1
      profile for current user and all shells
  • %UserProfile%\Documents\WindowsPowerShellMicrosoft.PowerShell_profile.ps1
      profile for current user but only Microsoft.PowerShell shell

Creation

Follow these steps to create a profile:

1
2
3
4
5
6
7
8
9
10
11
# Display the current profile path
$Profile
 
# Test if Profile exists
Test-Path $Profile
 
# create PowerShell profile
New-Item -Path $profile -ItemType file -Force
 
# open profile in Notepad for customization
notepad $Profile

Now you can configure your custom setting… Have a look at the following idea from Jeff Wouters, how to configure PowerShell

Customize PowerShell Prompt

powershell

Dieser Post ist auch verfügbar auf: German

Related Posts

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Back to Top