Tagged Questions

For base level PowerShell information see the PowerShell tag wiki. Description of PowerShell-v2.0 Windows PowerShell 2.0 shipped with the releases of Windows 7 and Windows Server 2008 R2. The major new features in PowerShell 2.0 are: Remoting - WinRM / WS-Management based remote administration. Modules - script/binary packaging similar to Perl packages. PowerShell ISE - integrated script editor and debugging. Adds support for Unicode in the shell.

learn more… | top users | synonyms

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
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 ...
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; ... ...
12
votes
2answers
7k views

PowerShell “execution of scripts is disabled on this system.”

I am trying to run the a .cmd file that calls a Powershell script from the command prompt and I am getting the below error: Management_Install.ps1 cannot be loaded because the execution of scripts ...
11
votes
3answers
955 views

Automate Virtual PC 2007 with PowerShell?

This is basically a duplicate of this question, but the accepted answer was "no" and I would like to keep this question open until getting an actual answer instead of accepting "NO" and giving up. ...
9
votes
5answers
517 views

Provide a .NET method as a delegate callback

What is the syntax to pass .NET method as a delegate callback to a .NET object in PowerShell. For example: C#: public class Class1 { public static void MyMethod(Action<object> obj) { ...
9
votes
2answers
1k views

PowerShell 2.0: Accessing Windows Shares during a Remote Session

I am having trouble accessing a shared network location while within a PowerShell remote session. From the PowerShell prompt, I enter a new session: Enter-PSSession server1 The session is properly ...
8
votes
4answers
3k views

How to run a PowerShell script from C# as non-elevated user

I'm trying to run a PowerShell script from a C# application and I need the script to run when my C# app is running as a non-admin user (e.g. Network Service or some other domain account). Previously, ...
7
votes
2answers
2k views

Generics in PowerShell 2 not working?

How could I make a List in PowerShell 2? I've tried these: [activator]::createinstance(([type]'system.collections.generic.list`1').makegenerictype([string])) and ...
7
votes
4answers
2k views

Using PowerShell with .NET 3.5 runtime/libraries

Is it possible to run PowerShell 1.0 (or 2.0 CTP) backed by the 3.5 runtime instead of 2.0? We're building a .NET 3.5 solution, and I'd still like to use PowerShell as our scripting engine for ...
6
votes
1answer
996 views

PowerShell - How to Import-Module in a Runspace

I am trying to create a cmdlet in C#. The code looks something like this: [Cmdlet(VerbsCommon.Get, "HeapSummary")] public class Get_HeapSummary : Cmdlet { protected override void ProcessRecord() ...
6
votes
3answers
236 views

Parsing XML file with powershell

One of my application is generating below XML file. <root> <command name="Set"> <property name="PWR.WakeupOnLAN" value="6" errorcode="0x0"/> </command> ...
6
votes
3answers
558 views

Why is Powershell 2.0 installed in the same location as Powershell 1.0?

Does anyone know why Powershell 2.0 is installed in C:\Windows\System32\WindowsPowerShell\v1.0 on a Windows 7 box?
6
votes
4answers
625 views

VisualStudio 2010 - PowerShell Add-In?

Is there any PowerShell Add-Inn for VisualStudio 2010? I only found the VS Command Shell Add-In for VS 2005 and 2008 (Add-In from 2007)
6
votes
1answer
1k views

PowerShell 2.0 and how to handle exceptions?

Why I get error message printed on the console when running these two simple samples ? I want that I get "Error testing :)" printed on the console insted of: Get-WmiObject : The RPC server is ...
6
votes
2answers
874 views

Calling generic static method in PowerShell

How do you call a generic static method of a custom class in Powershell? Given the following class: public class Sample { public static string MyMethod<T>( string anArgument ) { ...
6
votes
4answers
2k views

Unblock a file with PowerShell?

I am trying to have PowerShell unblock a file in Win2K8 R2. Does anyone have a pointer as to the syntax?
6
votes
1answer
3k views

How to capture a Powershell CmdLet's verbose output when the CmdLet is programmatically Invoked from C#

BACKGROUND I am using Powershell 2.0 on Windows 7. I am writing a cmdlet in a Powershell module ("module" is new to Powershell 2.0). To test the cmdlet I am writing Unit tests in Visual Studio 2008 ...
6
votes
7answers
6k views

copy-item With Alternate Credentials

I'm using the CTP of powershell v2. I have a script written that needs to go out to various network shares in our dmz and copy some files. However, the issue I have is that evidently powershell's ...
6
votes
3answers
3k views

PowerShell, Web Requests, and Proxies

When making a simple web request is there a way to tell the PowerShell environment to just use your Internet Explorer's proxy settings? My proxy settings are controlled by a network policy(or script) ...
5
votes
3answers
3k views

How do you comment out code in Powershell?

How do you comment out code in Powershell (1.0 or 2.0)? This is a basic question, but I couldn't find it on stackoverflow.
5
votes
4answers
287 views

How to write a custom powershell host

Similar to nuget Looking for any starter material hopefully before delving into the debugger
5
votes
3answers
328 views

What's the best way to determine the location of the current PowerShell script?

Whenever I need to reference a common module or script, I like to use paths relative to the current script file, that way, my script can always find other scripts in the library. So, what is the ...
5
votes
3answers
197 views

Powershell Receive vs Get Verbs

I've seen quite a few discussions on which verbs to use in your own PowerShell functions, but I haven't seen a clarification on using Receive vs Get. They mean roughly the same thing to me, but ...
5
votes
1answer
192 views

Using Powershell to automating a bat file that ends with PAUSE

I have a batch file that I can't change, but I want to automate with Powershell 2.0. It ends with a PAUSE command, which displays: Press any key to continue... Is there an way to call this batch ...
5
votes
1answer
3k views

How to run PowerShell scripts via automation without running into Host issues

I'm looking to run some powershell scripts via automation. Something like: IList errors; Collection<PSObject> res = null; using (RunspaceInvoke rsi = new RunspaceInvoke()) { try { ...
5
votes
1answer
237 views

Powershell, how many replacements did you make?

I need to know how many replacements are made by Powershell when using either the -replace operator or Replace() method. Or, if that's not possible, if it made any replacements at all. For example, ...
5
votes
2answers
336 views

What is the syntax to subscribe to an object's static event in PowerShell?

Register-ObjectEvent looks for a object instance in the required parameter InputObject. What is the syntax for an object's static (Shared) event? UPDATE: Correct syntax for TimeChanged: ...
5
votes
2answers
4k views

powershell v2 remoting - How do you enable unecrypted traffic

I'm writing a powershell v2 script that I'd like to run against a remote server. When I run it, I get the error : Connecting to remote server failed with the following error message : The ...
4
votes
3answers
66 views

Reference command name with dashes

I've recently discovered that Powershell functions are just named scriptblocks. For example function HelloWorld { Write-Output "Hello world" } $hw = $function:HelloWorld & $hw Will ...
4
votes
2answers
119 views

PowerShell Select weirdness

I have two select statements here. The "headings" from the first (message, username,timegenerated) are being used for the second (username,timegenerated). Please look at the echo statement to see ...
4
votes
2answers
117 views

Using New-Object -Property to set properties of a nested class

Lets say I define the following classes in C# inside a powershell script: Add-Type -TypeDefinition @" public class InnerClass { int a, b; public int A { get { return a; } set { a = value; } } ...
4
votes
2answers
351 views

How to speed up Powershell Get-Childitem over UNC

DIR or GCI is slow in Powershell, but fast in CMD. Is there any way to speed this up? In CMD.exe, after a sub-second delay, this responds as fast as the CMD window can keep up dir ...
4
votes
2answers
143 views

What is required for Powershell 2.0 to render a script's default parameter value in the help page?

I have the following simple script that accepts text as input and writes it to the host. <# .SYNOPSIS Writes the input string to the host. .PARAMETER Text The text to write to the host. ...
4
votes
3answers
3k views

Rename computer and join to domain in one step with PowerShell

Goal: On a computer running Windows Server 2008 R2, use PowerShell 2.0 to: Rename the computer Join the computer to a domain Condition: Steps 1 and 2 must be performed together, i.e., without a ...
4
votes
3answers
381 views

PowerShell script fails first time but works second time

I've found a PowerShell script that can change the desktop wallpaper of my Windows 7 PC of an image file whose path is supplied as a parameter. The end result of what I want is to have this script ...
4
votes
2answers
213 views

Selecting specific nodes in an XML file from multiple levels

I have an xml file in a format similar to this: <benchmark> <group> <id>1</id> <rule> <id>H1234</id> ...
4
votes
2answers
402 views

How to dynamically define a class in C# PowerShell Cmdlet

I have some data I'm getting from a datasource which is a bunch of name/value pairs that I store in a Dictionary<string, object>. I want to define a class on the fly, with properties that map ...
4
votes
1answer
516 views

Hosting powershell runspace in web application

I'm writing a web service that executes powershell scripts (active directory, directory management, etc). Right now, Runspace instance is created per web request. As Runspace initialization is time ...
4
votes
2answers
1k views

How to timeout PowerShell function call

I wrote a little powershell function that executes Get-EventLog against remote servers. On some servers this seems to just hang and never times out. Can I timeout a powershell function call? I see how ...
4
votes
3answers
1k views

How to attach a file to an email with PowerShell

I have written a PowerShell script that will create an email, however I can't seem to attach a file. The file does exist and PowerShell can open it, Could anyone tell me what I'm doing wrong? $ol = ...
4
votes
1answer
877 views

Changing the physical path of an IIS website on a remote machine via Powershell

I'm currently working on a deployment script that will take my site, export it from svn, remove any testing files etc in it, minify the javascript/css, copy the code to a remote web server, and then ...
4
votes
2answers
2k views

Powershell 2 copy-item which creates a folder if doesn't exist

$from = "\\something\1 XLS\2010_04_22\*" $to = "c:\out\1 XLS\2010_04_22\" copy-item $from $to -Recurse This works if c:\out\1 XLS\2010_04_22\ does exist . Is it possible with a single command to ...
4
votes
1answer
916 views

check RAM,page file, /PAE, /3GB, SQL server memory using powershell

I am a powershell novice. After days of searching.... I have put together a small powershell script (as below) to check page file, /PAE switch, /3GB switch, SQL server max RAM, min RAM. I am running ...
4
votes
2answers
2k views

Methods to convert C# code to a PowerShell Script?

I regularly have to convert an existing C# code snippet/.CS file to a PowerShell script. Can anyone offer any tools or methods that would allow some automation of this? Note, while I am aware that ...
4
votes
3answers
964 views

Load variables from another powershell script

I have several scripts that could be reusing variables so I'd like to isolate variables in their own Variables.ps1 script, i.e. $var1 = "1" $var2 = "2" I'm trying to load these variables then print ...
4
votes
2answers
284 views

Powershell ISE appears to hang with interactive commands.

I just download Powershell 2.0 and using the ISE. In general I really like it but I am looking for a workaround on a gotcha. There are a lot of legacy commands which are interactive. For example ...
4
votes
1answer
341 views

What objects are suitable for Add-Member?

Documentation states: Adds a user-defined custom member to an instance of a Windows PowerShell object. What "Windows PowerShell object" stands for? This works fine: $obj = new-object ...
4
votes
3answers
312 views

PowerShell - Distributed Solution

I'm new to PS so I may get some of the terminology wrong. If you want to roll out a custom PowerShell environment (snap-in) for a team of 30 developers/DBAs. What is the best way to do this... if you ...
3
votes
4answers
75 views

Why it needs an extra pair of bracket?

The following powershell script "one","two","three" | % { "$(($l++)): $_" } will print 1: one 2: two 3: three However, after remove the bracket around $l++ "one","two","three" | % { "$($l++): ...

1 2 3 4 5 11