What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
|
|
closed as not constructive by casperOne♦ Nov 27 '11 at 17:34
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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. |
||||
|
|
|
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. |
||||
|
|
|
Quake Style PowerShell http://tech.xster.net/tips/quake-style-drop-down-terminal-for-windows/ i'm totally loving this :) |
||||
|
|
|
You can pipe the results of almost any PowerShell command to Try:
|
||||
|
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. |
||||
|
|
|
Coming to Powershell from bash, I found this article for getting history via .profile useful. Persist Command History |
||||
|
|
|
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:
|
|||||||||||
|
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. |
||||
|
|
|
Easily try out String.Format formats Great article on String.Format formats by SteveX - String Formatting in C#
|
|||||||
|
|
PowerShell as Calculator
|
|||||||||
|
|
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)
|
||||
|
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 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 length of a text - copy & paste text into powershell and get length of string
|
||||
|
|
