Tagged Questions

1
vote
1answer
34 views

Powershell - Get Variable from C# Cmdlet

I'm writing a C# Cmdlet that needs to get the value of a global script variable. How do I do it? I noticed that the Runspace has SessionStateProxy.GetVariable method. Can I access …
0
votes
1answer
8 views

Where is the “Invoke” member in System.Management.Automation.VerbsCommon?

I'm trying to create a cmdlet with the name Invoke-Something. But I cannot find the member "Invoke" to put in the attribute: [Cmdlet(VerbsCommon.Invoke, "Something", SupportsShoul …
0
votes
1answer
23 views

Difference between Cmdlet.EndProcessing and Cmdlet.StopProcessing

When writing Powershell cmdlets, what is the difference between EndProcessing and StopProcessing? They sound the same, their descriptions are just about the same, and latter doesn' …
2
votes
1answer
98 views

PowerShell cmdlet parameter validation

I'm writing a custom PowerShell cmdlet, and I would like to know which is the proper way to validate a parameter. I thought that this could be done either in the property set acces …
1
vote
4answers
218 views

How do I determine if a PowerShell Cmdlet parameter value was specified?

In PowerShell 1.0, if I have a cmdlet parameter of an enum type, what is the recommended method for testing whether the user specified that parameter on the cmdlet command line? F …
4
votes
2answers
147 views

How do I add a PowerShell cmdlet or function to my machine so that it is always available?

If I find (or create) a new PowerShell cmdlet (or function), how do I add it to my machine? Do I copy it to a particular folder? Do I put its content in a particular file? Do I ne …
1
vote
1answer
63 views

How do I get around PowerShell not binding pipeline parameters until after BeginProcessing is called?

I'm writing a Cmdlet that can be called in the middle of a pipeline. With this Cmdlet, there are parameters that have the ValueFromPipelineByPropertyName attribute defined so that …
6
votes
2answers
242 views

Powershell cmdlets development best practices

Hi, I'm currently putting together some Powershell cmdlets. Building them is easy enough but I don't know if I'm building them in an acceptable manner (so to speak). Are there any …
1
vote
4answers
168 views

What is a Powershell cmdlet?

Approaching cmdlets in a conceptual way, How are they made? Are they compiled? Is it the equivalent of a batch file for Powershell? Is it a script or a binary? What is the struc …
3
votes
4answers
217 views

Can we see the source code for PowerShell cmdlets?

Hi, I'm learning some PowerShell. Is it possible to see the source code for a built-in cmdlet like Get-ChildItem?
0
votes
1answer
130 views

Add custom Format in Powershell SDK without SnapIn usage

Dear Friends, I am developing a .NET/C# 2.0 application which uses the PowerShell SDK for script execution. I am not using SnapIns. I am setting everything directly through PS's …
1
vote
2answers
129 views

Cannot access a disposed object error on external class library call

Hi, I have a Windows Forms app that provisions user accounts in Exchange using Powershell and Exchange2007 cmdlets. There is only one form to this application that takes the infor …
0
votes
0answers
47 views

Unit Testing PSCmdlet in VS2008

I have seen several examples on unit testing powershell commandlets in NUnit. http://www.clydesdalesoftware.net/blogs/jluif/PermaLink,guid,064a378c-85c9-4d2c-9a8d-80620e97f71e.aspx …
5
votes
5answers
1k views

Send administrative commands to my C# Windows Service using own PowerShell CmdLets

Hi, I have a C# Windows application which runs a service. I would like to leverage PowerShell in order to offer a command line management interface for administering my running se …
5
votes
12answers
556 views

What are your favorite Powershell Cmdlets?

I just found /n softwares free Powershell NetCmdlets, and after playing with them I love the functionality they bring to the command line. So it raises the question what are your …