vote up 1 vote down star

When executing the command notepad $profile an instance of notepad opens but I get a warning that the path doesn't exist.

So I'll have to set this manually, does anybody know how? There are a couple of locations, but I'd prefer to put the profile in the correct location.

flag

2 Answers

vote up 3 vote down check

There are multiple profile scripts that can be created according to which hosts and how many users you wish the profile to apply to. The PowerShell 2.0 help has an about_profiles goes into details. The short version (from the docs) is:

Description                Path
-----------                ----
Current User, Current Host $Home\[My ]Documents\WindowsPowerShell\Profile.ps1
Current User, All Hosts    $Home\[My ]Documents\Profile.ps1
All Users, Current Host    $PsHome\Microsoft.PowerShell_profile.ps1
All Users, All Hosts       $PsHome\Profile.ps1

Name                               Description
-----------                        -----------
$Profile                           Current User,Current Host
$Profile.CurrentUserCurrentHost    Current User,Current Host
$Profile.CurrentUserAllHosts       Current User,All Hosts
$Profile.AllUsersCurrentHost       All Users, Current Host
$Profile.AllUsersAllHosts          All Users, All Hosts
link|flag
thanks for the clear description – WebDevHobo Oct 31 at 5:56
this is a wonderful answer, Keith. – Paul Nathan Jan 20 at 21:06
vote up 1 vote down

Here's a PowerShell script you can use to check for the existence of these profiles, and create them if they don't exist.

http://jdhitsolutions.com/blog/2009/11/get-profiles/

link|flag
That is extremely usefull. Thanks for the help. – WebDevHobo Nov 9 at 18:38

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.