23
votes
10answers
2k views
How to get started with PowerShell?
I played with one of the early beta's of Powershell V1, but haven't used it since it went "gold". What is the best way to get started using Powershell? Which version of Powershell should I be using …
20
votes
12answers
3k views
PowerShell vs. Unix Shells
I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.
The benefit of PowerShell would be that the scripts could be more easily used by …
16
votes
13answers
2k views
How do you use PowerShell?
Windows PowerShell came out last year and got great reviews from many .net bloggers (Hanselman comes to mind). It seemed to be touted as a great new utility that somehow made everything that you would …
14
votes
8answers
3k views
What tutorial do you recommend for learning PowerShell?
I would like to learn PowerShell in my spare time.
I already know a bunch of stuff in that line (Perl, Ruby, Python, bash, cmd.exe) so a tutorial leveraging that would be awesome.
Also, since I am …
12
votes
7answers
585 views
A better Linux shell?
I use bash, and have done so for over a decade - but occasionally I wonder whether there has been any significant new developments in the world of Linux shells.
A few years back Microsoft released …
12
votes
16answers
2k views
Can anyone recommend a good modern alternative to bash?
Bash is getting a little long-in-the-tooth. Windows has PowerShell (formerly known as Monad), which is capable of dealing with richer objects than just lines of text. Is there any equivalent new …
11
votes
7answers
1k views
What are some of the most useful yet little known features in the PowerShell language
A while back I was reading about multi-variable assignments in PowerShell. This lets you do things like this
64 > $a,$b,$c,$d = "A four word string".split()
65 > $a
A
66 > $b
four
Or …
11
votes
17answers
1k views
What’s in your Powershell profile.ps1file?
What essential things (functions, aliases, start up scripts) do you have in your profile?
10
votes
12answers
2k views
What’s a good alternative Windows console?
UPDATE (solution)
Months later someone turned me on to an awesome solution to this. If you install Git for Windows, it comes with this console app called Git Bash that does exactly what I descibed. I …
9
votes
6answers
2k views
Is there a Windows command shell that will display Unicode characters?
Assuming I have fonts installed which have the appropriate glyphs in them, is there a command shell for Windows XP that will display Unicode characters? At a minimum, two things that should display …
9
votes
5answers
818 views
Vim with Powershell
I'm using gvim on Windows.
In my _vimrc I've added:
set shell=powershell.exe
set shellcmdflag=-c
set shellpipe=>
set shellredir=>
function! Test()
echo system("dir -name")
endfunction
…
8
votes
11answers
1k views
PowerShell Tips & Tricks for Developers
What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
8
votes
8answers
642 views
Is PowerShell a good upgrade for a batch file?
I package our server releases into zip files using a batch file (Windows), running the command-line version of WinZip. Previously we did this sort of thing "by hand" but I developed the process of …
8
votes
4answers
391 views
Why would I choose Powershell over WMI to develop management interfaces?
We are discussing development of an improved management infrastructure for our distributed system.
We use COM, web services and .NET components. Since we're based on Microsoft Windows Server XP/2003, …
8
votes
4answers
1k views
How do I recycle an IIS AppPool with Powershell?
I haven't really done any Windows scripting at all, so I am at a loss on how to pull this one off. Anyway, basically what we want to do is have a script that will take an argument on which IIS …
