What essential things (functions, aliases, start up scripts) do you have in your profile?
|
|
I often find myself needing needing some basic agregates to count/sum some things., I've defined these functions and use them often, they work really nicely at the end of a pipeline :
To be able to get time and path with colors in my prompt :
The following functions are stolen from a blog and modified to fit my taste, but ls with colors is very nice :
And some shortcuts to avoid really repetitive filtering tasks :
|
|||
|
|
|
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"
}
|
|||
|
This iterates through a scripts PSDrive and dot-sources everything that begins with "lib-".
|
||||
|
|
|
Here's my not so subtle profile
|
|||||||
|
|
|||||||||
|
|
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. |
|||||
|
|
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> |
|||
|
|
|
apropos. Although I think this has been superseded by a recent or upcoming release.
|
||||
|
|
|
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 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---------------------------------------------------------------------------
|
|||
|
|
You will benefit i you ever searched for a stupid Typo eg. outputting $varsometext instead $var sometext |
|||
|
Useful for working with xml, such as output from svn commands with --xml. |
|||
|
|
|
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:
|
|||
|
|
|
You can see my PowerShell profile at http://github.com/jamesottaway/windowspowershell If you use Git to clone my repo into your Documents folder (or whatever folder is above 'WindowsPowerShell' in your $PROFILE variable), you'll get all of my goodness. The main I quite like the I also like overriding the My other favourite is being able to do a |
|||
|
|
|
||||
|
|
|
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 |
|||
|
|
Only a sagaciously-lazy individual would tell you that If you wanted, you could take it a step further and make it somewhat useful:
For satisfying survivalist-paranoia:
|
||||
|
|
|
I'm glad this thread exists, very cool! I rock a few functions, since I'm a module author I typically load a console and desperately need to know whats where.
Die hard nerding
the mandatory anything I can powershell I will functions go here...
I am STILL an administrator so I do need...
Sometimes I want to start explorer as someone other than the logged in user...
This is just because its funny.
I also have one for me, since WIN+L is too far away..
Few filters? I think so...
I also have a few I cant post yet, because they're not done but they're basically a way to persist credentials between sessions without writing them out as an encrypted file. |
|||
|
|
|
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.
|
|||
|
|
|
amongst many other things:
opens an explorer window in the current directory
gets rid of everything in my temporary asp.net files (useful for working on managed code that has dependencies on buggy unmanaged code)
edits $x in notepad++ |
|||
|
|
|
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. |
|||
|
|