Tagged Questions
Windows PowerShell is a new Windows command-line shell designed especially for system administrators. The Windows PowerShell includes an interactive prompt and a scripting environment that can be used independently or in combination.
90
votes
7answers
59k views
Determine What Version of PowerShell is Installed?
How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
Thanks, MagicAndi
75
votes
10answers
14k views
How can I run PowerShell with the .NET 4 runtime?
I am updating a PowerShell script that manages some .NET assemblies. The script was written for assemblies built against .NET 2 (the same version of the framework that PowerShell runs with), but now ...
70
votes
13answers
16k 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 ...
67
votes
16answers
28k 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 ...
66
votes
8answers
21k 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 ...
54
votes
12answers
25k views
47
votes
1answer
25k views
powershell 2.0 try catch how to access the exception
This is try catch in powershell 2.0
$urls = "http://www.google.com", "http://none.greenjump.nl", "http://www.nu.nl"
$wc = New-Object System.Net.WebClient
foreach($url in $urls)
{
try
{
...
46
votes
15answers
5k 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 ...
39
votes
17answers
6k views
PowerShell Tips & Tricks for Developers [closed]
What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
38
votes
4answers
22k views
Setting windows powershell path variable
So I've found out that setting the PATH environment variable affects only the old command prompt, powershell seems to have different environment settings. How do I change the environment variables for ...
36
votes
22answers
5k views
What's in your Powershell profile.ps1file?
What essential things (functions, aliases, start up scripts) do you have in your profile?
33
votes
7answers
3k views
Equivalent of *Nix 'which' command in Powershell?
Does anyone know how to ask powershell where something is?
For instance "which notepad" and it returns the directory where the notepad.exe is run from according to the current paths.
31
votes
9answers
4k 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
...
27
votes
5answers
3k views
How do I delete all untracked files from my working directory in Mercurial?
Is it possible to delete all untracked files from my working directory? Let's say I added a bunch of files to my working directory, didn't add them via hg add, and now want to get rid of those new ...
26
votes
2answers
8k views
How to check if PowerShell snap-in is already loaded before calling Add-PSSnapin
I have a group of PowerShell scripts that sometimes get run together, sometimes one at a time. Each of the scripts requires that a certain snap-in be loaded.
Right now each script is calling ...
23
votes
6answers
7k views
How to start PowerShell from Windows Explorer?
Does anyone know of a way to start PowerShell in a specific folder from Windows Explorer, e.g. to right-click in a folder and have an option like "Open PowerShell in this Folder".
It's really ...
22
votes
9answers
2k 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 ...
22
votes
13answers
4k 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 ...
21
votes
4answers
7k views
Anyone found a PowerShell Syntax highlighting or IntelliSense plugin for Visual Studio?
Has anyone found a plugin for Visual Studio to allow for PowerShell syntax highlighting or IntelliSense? If not, does anyone have any idea why not? I keep hoping someone else with copious free time ...
20
votes
2answers
6k views
Unix tail equivalent command in Windows Powershell
I have to look at the last few lines of a large file (typical size is 500MB-2GB). I am looking for a equivalent of Unix command tail for Windows Powershell. A few alternatives available on are,
...
20
votes
7answers
1k 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 ...
19
votes
6answers
9k 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 ...
19
votes
7answers
13k views
get file version in powershell
How can you get the version information from a .dll or .exe file in PowerShell?
Specifically interested in File Version, though other version info (i.e. Company, Language, Product Name, etc) would be ...
18
votes
3answers
47k views
How to pass command-line arguments to a PowerShell ps1 file
For years, I have used the cmd/dos/windows shell and passed command-line arguments to batch files. E.g., I have a file, "zuzu.bat" and in it, I access %1, %2, etc. Now, I want to do the same when I ...
18
votes
3answers
10k views
Referencing system.management.automation.dll in Visual Studio
I am beginning to look into the PowerShell model and snap-in development. The first thing I notice is to reference System.management.automation.dll. However in Visual Studio, the .NET tab does not ...
18
votes
3answers
802 views
18
votes
5answers
17k views
What can I do with C# and Powershell?
I have a decent understanding of C# and a very basic understanding of powershell. I'm using Windows PowerShell CTP 3, which has been really fun. But I want to go beyond writing scripts/functions. Is ...
18
votes
4answers
21k views
Does Windows Powershell have a Try/Catch or other error handling mechanism?
In a script, when a command-let or other executable statement errors out, is there a try/catch type of mechanism to recover from these errors? I haven't run across one in the documentation.
17
votes
6answers
3k views
Equivalent to C#'s “using” keyword in powershell?
When I use another object in the .net-Framework in C# I can save a lot of typing by using the using directive.
using FooCompany.Bar.Qux.Assembly.With.Ridiculous.Long.Namespace.I.Really.Mean.It;
...
...
16
votes
5answers
12k views
How to get current username in Windows Powershell?
How to get the current username in Windows Powershell?
16
votes
1answer
2k views
How can I display my current git branch name in my PowerShell prompt?
Basically I'm after this but for PowerShell instead of bash.
I use git on windows through PowerShell. If possible, I'd like my current branch name to displayed as part of the command prompt.
16
votes
4answers
9k views
How can I uninstall an application using PowerShell?
Is there a simple way to hook into the standard 'Add or Remove Programs' functionality using PowerShell to uninstall an existing application? Or to check if the application is installed?
16
votes
16answers
6k 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 ...
16
votes
10answers
3k views
Windows Powershell book - any good experiences?
fellows :) !
I'm currently looking for a recommendable book about psh which seems to be very a feature rich new shell. Therefore I'm looking for some kind of pragmatic documentation, aiming a little ...
15
votes
4answers
16k views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ...
15
votes
2answers
10k views
What exactly is “exit” in Powershell?
You can exit Powershell by typing exit. So far so good. But what exactly is this?
PS Home:\> gcm exit
Get-Command : The term 'exit' is not recognized as the name of a cmdlet, function, script ...
15
votes
5answers
17k views
How to redirect the output of a PowerShell to a file during its execution
I have a Powershell script for which I would like to redirect the output to a file. The problem is that I cannot change the way this script is called. So I cannot do:
.\MyScript.ps1 > output.txt
...
15
votes
3answers
8k views
How to write a Powershell script that accepts pipeline input?
I am trying to write a Powershell script that can get pipeline input (and is expected to do so), but trying something like
ForEach-Object {
# do something
}
doesn't actually work when using the ...
15
votes
4answers
8k views
Include relative files in PowerShell
I would like to include script files with such pseudo syntax:
Include '.\scripA.ps1'
But the only thing I have found is some thing like this:
$thisScript = Split-Path -Path ...
15
votes
4answers
1k views
Future of cmd & powershell
We were just today discussing it, so I went on a little search but found nothing, zip, nada.
What is the future of ms's cmd shell? Do they intend to replace it completely with powershell in the ...
15
votes
5answers
5k 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 ...
14
votes
3answers
400 views
Whats the better (cleaner) way to ignore output in PowerShell
Let's say you have a method or a CMDlet that returns something, but you don't what to use it and you don't want to output it. I found this two ways:
Add-Item > $null
[void]Add-Item
Add-Item | ...
14
votes
7answers
2k views
Is there a Language Reference Manual for PowerShell?
I'm evaluating Windows PowerShell as a replacement for cmd.exe for basic process automation for command-line code (e.g. setup, execution, and post-processing of large numbers of Fortran jobs.) I know ...
14
votes
1answer
2k views
What is the recommended coding style for PowerShell?
Is there any recommended coding style how to write PowerShell scripts? It's not about how to structure the code (how many functions, if to use module, ...). It's about 'how to write the code so that ...
14
votes
5answers
3k views
Can I get intellisense in powershell?
Just starting out with powershell, I would love to have intellisense support for writing powershell scripts. Tab-completion works great so you would think it would exist somewhere, but the only thing ...
14
votes
7answers
2k views
Is PowerShell worth learning?
I played around with PowerShell yesterday, and it seemed pretty nice ( the GUI at least ). Is it worth getting to know the language? I'm pretty proficient in Ruby/Python/Perl/Groovy when it comes to ...
14
votes
4answers
2k views
Where to put PowerShell scripts?
(I can't believe I'm actually asking this, but I am out of brainpower for the day.)
I just wrote my first serious PowerShell script, and I'm really happy with it. I plan to use it every day or so. I ...
14
votes
4answers
5k views
How to Remove ReadOnly Attribute on File Using PowerShell?
How can I remove the ReadOnly attribute on a file, using a PowerShell (version 1.0) script?
Thanks,
MagicAndi
14
votes
3answers
5k views
Exclude list in Powershell Copy-Item does not appear to be working
I have the following snippet of Powershell script:
$source = 'd:\t1\*'
$dest = 'd:\t2'
$exclude = @('*.pdb','*.config')
Copy-Item $source $dest -Recurse -Force -Exclude $exclude
Which works to copy ...
14
votes
6answers
4k views
Can I get && to work in Powershell?
&& is notoriously hard to search for on google, but the best I've found is this article which says to use -and.
Unfortunately it doesn't give any more information, and I can't find out what ...