What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
|
feedback
|
closed as not constructive by casperOne♦ Nov 27 '11 at 17:34
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
Easily try out String.Format formats Great article on String.Format formats by SteveX - String Formatting in C#
| |||||||
feedback
|
|
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):
| |||||||||
feedback
|
|
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:
| |||||||||
feedback
|
|
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. | |||||||||
feedback
|
|
Find an ASCII code for a character or vice versa
| |||||
|
feedback
|
|
You can pipe the results of almost any PowerShell command to Try:
| ||||
|
feedback
|
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. | ||||
|
feedback
|
|
PowerShell as Calculator
| |||||||||
feedback
|
|
Find out length of a text - copy & paste text into powershell and get length of string
| ||||
|
feedback
|
|
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)
| |||||||||||
feedback
|
|
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. | ||||
|
feedback
|
|
Install some good quality third-party modules to add functionality. I've found these to be quite useful: Bonus Tip: when downloading modules in .zip files, make sure to "unblock" them before unzipping. To do this: right-click on the .zip file icon in Windows Explorer, then choose Properties... | General | Unblock. | ||||
|
feedback
|
|
Coming to Powershell from bash, I found this article for getting history via .profile useful. Persist Command History | ||||
|
feedback
|
|
Quake Style PowerShell http://tech.xster.net/tips/quake-style-drop-down-terminal-for-windows/ i'm totally loving this :) | ||||
|
feedback
|
|
If you're coming to PowerShell from Python or other languages that support multi-line strings the rules for here-strings in PowerShell may be different than what you're used to:
The newlines are REQUIRED. This differs from, say, triple-quotes in Python:
which do not require newlines. | ||||
|
feedback
|
|
Using "ActiveRoles Management Shell for Active Directory" a freeware set of PowerShell commands (CMDLETs) that can be downloaded and used for free to perform administrative tasks within Active Directory. | ||||
|
feedback
|
