What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
|
|
FYI, PowerShell Community Extensions was written to be the MKS Toolkit/cygwin add-on for PowerShell. It's focus is slight more towards developers than it is admins. |
|||
|
|
|
PowerShell as Calculator
|
|||
|
|
|
|
Add a "PowerShell at Solution" to VS's tools menu: Tools | External Tools... and as follows: Title: PowerShell at SolutionM Set-Title is a helper function in my profile (simplified version):
|
||||||||
|
|
|
I use PowerShell to explore and test the functionality of DLL's I've not used before. Loading an assembly in PowerShell and using Get-Member to examine it is a quick way to dig into different types. |
||||
|
|
|
I find PowerShell quite handy when I need to test if my regular expression matches the text.
Keith Hill added some code that uses some conversion to base 64. So, it's what I have in my profile as well:
|
||||||
|
|
|
I just found out a couple of days ago that PowerGUI comes with a source-level debugger. I had been ignoring PowerGUI because it appears to be mostly a sysadmin tool that isn't very useful to me, but the debugger that comes with it is awesome. |
|||
|
|
|
|
Find an ASCII code for a character or vice versa
|
|||
|
|
|
Find out Assembly Qualified Name of a type (Assembly should be loaded into AppDomain for this to work for assemblies that are not in GAC) Update: Simpler version (by Richard in the comment)
|
||||
|
|
|
Find out length of a text - copy & paste text into powershell and get length of string
|
|||
|
|
|
|
Easily try out String.Format formats Great article on String.Format formats by SteveX - String Formatting in C#
|
||||||
|
|
|
Start PowerShell from SQL Server Management Studio 2008
|
|||
|
|

