My Windows 7 Laptop came with the PowerShell $HOME set to a network drive (Z:\). I want to permanently change this to be my Dropbox folder (C:\Users\username\Dropbox). How do I go about that?
My solution would be:
Add the following line to your profile.ps1 script. (should be in your powershell folder)
$env:homepath = "C:\Users\username\Dropbox"