What essential things (functions, aliases, start up scripts) do you have in your profile?
|
16
|
|||
|
|
|
Useful for working with xml, such as output from svn commands with --xml. |
||
|
|
|
|
apropos. Although I think this has been superceded by a recent or upcoming release.
|
||
|
|
|
|
|||
|
|
|
|
To setup my Visual Studio build environment from PowerShell I took the VsVars32 from here. and use it all the time.
###############################################################################
# Exposes the environment vars in a batch and sets them in this PS session
###############################################################################
function Get-Batchfile($file)
{
$theCmd = "`"$file`" & set"
cmd /c $theCmd | Foreach-Object {
$thePath, $theValue = $_.split('=')
Set-Item -path env:$thePath -value $theValue
}
}
###############################################################################
# Sets the VS variables for this PS session to use
###############################################################################
function VsVars32($version = "9.0")
{
$theKey = "HKLM:SOFTWARE\Microsoft\VisualStudio\" + $version
$theVsKey = get-ItemProperty $theKey
$theVsInstallPath = [System.IO.Path]::GetDirectoryName($theVsKey.InstallDir)
$theVsToolsDir = [System.IO.Path]::GetDirectoryName($theVsInstallPath)
$theVsToolsDir = [System.IO.Path]::Combine($theVsToolsDir, "Tools")
$theBatchFile = [System.IO.Path]::Combine($theVsToolsDir, "vsvars32.bat")
Get-Batchfile $theBatchFile
[System.Console]::Title = "Visual Studio " + $version + " Windows Powershell"
}
|
||
|
|
|
I keep a little bit of everything. Mostly, my profile sets up all the environment (including calling scripts to set up my .NET/VS and Java development environment). I also redefine the prompt() function with my own style (see it in action), set up several aliases to other scripts and commands. and change what $HOME points to. Here's my complete profile script. |
||
|
|
|
|
|
|||
|
|
|
|
This iterates through a scripts PSDrive and dot-sources everything that begins with "lib-". ---------------------------------------------------------------------------Load function / filter definition library---------------------------------------------------------------------------
|
|||
|
|
|
|
This creates a scripts: drive and adds it to your path. Note, you must create the folder yourself. Next time you need to get back to it, just type "scripts:" and hit enter, just like any drive letter in Windows.
|
||
|
|
|
|
This will add snapins you have installed into your powershell session. The reason you may want to do something like this is that it's easy to maintain, and works well if you sync your profile across multiple systems. If a snapin isn't installed, you won't see an error message. ---------------------------------------------------------------------------Add third-party snapins---------------------------------------------------------------------------
|
||
|
|
|
|
Here's my not so subtle profile
|
||
|
|
|
|
I put all my functions and aliases in separate script files and then dot source them in my profile: . c:\scripts\posh\jdh-functions.ps1 |
||
|
|
|
|
start-transcript. This will write out your entire session to a text file. Great for training new hires on how to use Powershell in the environment. |
||
|
|
|
|
The function to view the entire history of typed command (Get-History, and his alias h show default only 32 last commands):
|
||
|
|
|
|
i add this function so that i can see disk usage easily:
|
||
|
|
|
|
My prompt contains:
Which gives me a divider between commands that's easy to see when scrolling back. It also shows me the current directory without using horizontal space on the line that I'm typing on. For example: C:\Users\Jay ---------------------------------------------------------------------------------------------------------- [1] PS> |
||
|
|
|
|
I keep my profile empty. Instead, I have folders of scripts I can navigate to load functionality and aliases into the session. A folder will be modular, with libraries of functions and assemblies. For ad hoc work, I'll have a script to loads aliases and functions. If I want to munge event logs, I'd navigate to a folder scripts\eventlogs and execute
I do this because I need to share scripts with others or move them from machine to machine. I like to be able to copy a folder of scripts and assemblies and have it just work on any machine for any user. But you want a fun collection of tricks. Here's a script that many of my "profiles" depend on. It allows calls to web services that use self signed SSL for ad hoc exploration of web services in development. Yes, I freely mix C# in my powershell scripts.
|
||
|
|
|
|
I tried to set this up on Windows XP (32-bit) with Visual C++ 2008 Express (SP1, I think). The problem is, the InstallDir string value doesn't exist at that path. So I manually created it. I looked through the registry under '9.0', but couldn't find any InstallDir value. It took me a little while to understand that I hope this helps someone that stumbles upon here that is wondering why it isn't working for them. Peace. |
||
|
|
|
|
You will benefit i you ever searched for a stupid Typo eg. outputting $varsometext instead $var sometext |
||
|
|
