Tagged Questions

Cmdlets are lightweight, task-oriented commands in the Windows PowerShell environment. Cmdlets can be connected together in a pipeline to share input/output.

learn more… | top users | synonyms

10
votes
1answer
231 views

Writing PowerShell CmdLets in Python Dynamically

I want to be able to write PowerShell CmdLets using IronPython, and furthermore I need one CmdLet to look at the environment and add CmdLets to the PowerShell based on the contents. For example, ...
7
votes
2answers
2k 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 need to authorize it, ...
7
votes
2answers
773 views

Powershell cmdlets development best practices

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 guidelines/best ...
7
votes
13answers
1k 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 favorite Cmdlets, ...
6
votes
4answers
2k views

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

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 service. From my point of ...
5
votes
1answer
157 views

How do I deal with Paths when writing a PowerShell Cmdlet?

What is the proper way to receive a file as a parameter when writing a C# cmdlet? So far I just have a property LiteralPath (aligning with their parameter naming convention) that is a string. This is ...
5
votes
3answers
864 views

How to properly use the -verbose and -debug parameters in custom cmdlet

By default, any named named function that has the [CmdletBinding()] attribute accepts -debug and -verbose (and a few others) parameters and has predefined $debug and $verbose variables. What I'm ...
5
votes
7answers
766 views

Problems debugging a PowerShell cmdlet

I'm using Visual Studio 2010 on Windows 7 64-bit Professional. I'm having trouble debugging a custom PowerShell cmdlet. Configuration Language: C#, targeting .NET Framework 3.5 SP1. Platform ...
4
votes
2answers
625 views

Calling Powershell functions from C#

I have a PS1 file with multiple Powershell functions in it. I need to create a static DLL that reads all the functions and their definitions in memory. It then invokes one of these functions when a ...
4
votes
1answer
832 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 accessor or during Cmdlet ...
4
votes
4answers
1k 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 structure used for ...
3
votes
2answers
142 views

Using Powershell's Invoke-Command to call a batch file with arguments

I want to use Powershell in order to call a batch file on remote machines. This batch file has arguments. Here's what I have so far: $script = "\\fileshare\script.cmd" $server = $args[0] $args ...
3
votes
4answers
341 views

How do you support PowerShell's -WhatIf & -Confirm parameters in a Cmdlet that calls other Cmdlets?

I have a PowerShell script cmdlet that supports the -WhatIf & -Confirm parameters. It does this by calling the $PSCmdlet.ShouldProcess() method before performing the change. This works as ...
3
votes
2answers
75 views

how to make readonly members in powershell

How do I make members readonly when I use Add-Member cmdlet in Powershell? Thanks a lot for your help. Basically, I want to add-member to a System.Diagnostic.Process which have readonly propertly.
3
votes
3answers
210 views

Powershell verbose output for chained exceptions

I'm new to powershell and troubleshooting an issue with one of our custom cmdlets. By default, all exceptions thrown within the cmdlet have minimum information, no stack trace and no info on chained ...
3
votes
2answers
294 views

How to retrieve email alias and CN for everyone in an AD group using PowerShell

I am using PowerShell with the Quest AD cmdlets. I can use the Get-QADGroupMember cmdlet to get a list of everyone in a given group. So far so good but I would like to get their email alias as well. ...
3
votes
2answers
172 views

Getting a cmdlet's dynamic parameters via reflection

Powershell exposes some parameters, "dynamic parameters", based on context. The MSDN page explains the mechanism pretty well, but the skinny is that to find out about these one must call ...
3
votes
1answer
132 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't appear in the ...
3
votes
4answers
1k 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? For example: MyEnum ...
3
votes
5answers
1k views

Can we see the source code for PowerShell cmdlets?

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

How to find new cmdlets in Powershell v3.0

I wanted to find the new cmdlets / functions in Powershell. I used the following approach, but not sure if it is comprehensive / correct. Any ideas to find this in a better / different way? Run the ...
2
votes
3answers
183 views

Is there an powershell cmdlet equivalent of [System.IO.Path]::GetFullPath($fileName); when $fileName doesn't exist?

If $fileName exists then the cmdlet equivalent of [System.IO.Path]::GetFullPath($fileName); is (Get-Item $fileName).FullName. However, an exception is thrown if the path does not exist. Is their ...
2
votes
2answers
122 views

Wrong time format returned by get-counter/export-counter in Powershell

The get-counter/export-counter cmdlets in powershell seem to return dates in the US format which is rather undesirable in this case. I went through both get-help -full pages and couldn't find anything ...
2
votes
2answers
105 views

Is Make-Shell deprecated?

A couple of years ago I used Make-shell to create custom shells with custom cmdlets. Later I used snap-in technique and I forgot about that option. Now I should deploy a set of custom cmdlets to a ...
2
votes
1answer
341 views

powershell parameterattribute default value (C# cmdlet)

I'm designing a cmdlet using plain C#. Is it possible to define a default value for a parameter? Script cmdlet: [Parameter] [string] $ParameterName = "defaultValue" Which is the equivalent for C#? ...
2
votes
2answers
712 views

Powershell and TFS: tf.exe versus Power tools TFS cmdlets?

I'm in the middle of creating a script to do large amount of moves in my TFS instance. I have the tfs cmdlets available with the 2010 TFS Power Tools, but the get-help documentation for them is very ...
2
votes
1answer
114 views

Calling a custom cmdlet is not working?

I'm pretty new to powershell. I've built a custom cmdlet. I already have it registered in powershell but i wanted to test it before i started using the cmdlet. So i added a simple testapp to my ...
2
votes
2answers
539 views

What cmdlets use the IHostUISupportsMultipleChoiceSelection interface to prompt for choices?

I don't remember ever being prompted for multiple selections before in PowerShell, but I've seen several examples of hosts implementing this interface. Unfortunately, those are the only references ...
2
votes
3answers
427 views

Use PowerShell to stop-process, can i bypass confirm?

I'm a powershell newbie, but I often find myself starting and stopping a small group of services when I'm debugging some code. In Powershell I can easily stop the processes using a wildcard but it ...
2
votes
3answers
1k views

Join two results in Powershell

I've got two CMDlets that return lists of objects. One returns objects of the type SPSolution, which contains the property Id, the other returns objects of the type SPFeature with a property ...
2
votes
2answers
647 views

How do I pass common powershell command line parameters between cmdlets on the pipeline?

Say I've got two cmdlets, 'new-foo' and 'do-bar'. Both cmdlets need to authenticate to a service in order to perform their action, and 'do-bar' takes a foo. Today, I can do: new-foo -host localhost ...
2
votes
1answer
545 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 the runspace from a ...
1
vote
0answers
39 views

Automated Sharepoint Task Creation with Powershell

My organization is experimenting with new processes to coordinate developers as they integrate their code into our main branch. Right now it's just a basic task list in Sharepoint, but it seems to be ...
1
vote
1answer
54 views

Custom PowerShell Cmdlet does not accept Variables

I have a custom PowerShell cmdlet that has the following attributes on one of the input properties. The property is a get/set of type float . I want to be able to supply this property with either a ...
1
vote
1answer
110 views

wap cmdlets - add-certificate error

I'm doing something wrong when trying to upload a certificate to Azure using the WAPPA command, add-certificate. This is what I'm running in powershell: add-certificate -ServiceName myService ...
1
vote
1answer
48 views

Attributes that control cmdlet's Definition

I am creating a number of Powershell cmdlet's and am noticing that after I install my snap-in and execute the following command the parameter data types are listed as single instead of the types ...
1
vote
1answer
409 views

VBscript Public Property Set/Get equivalent in PowerShell

I'm trying to add elements to a Powershell variable with Add-Member. I have no problem adding static properties with NoteProperty, and methods with ScriptMethod, like that : $variable = New-Object ...
1
vote
1answer
119 views

Calling function from Powershell Cmdlet

I'm trying to create a cmdlet that calls Powershell function. Can this be done? Idea is to have static cmdlet that enumerates a set of data and then calls defined function to do something for each ...
1
vote
1answer
850 views

Powershell help, if process exists, stop it, else start a service?

I'm pretty new to Powershell. I have 2 different scripts I'm running that I would like to combine into one script. Script 1 has 1 line Stop-Process -ProcessName alcore.* -force It's purpose is to ...
1
vote
1answer
349 views

Using Remove-Item with Credentials

I am attempting to use the Remove-Item cmdlet as part of an automation for a system. The files are stored on a server that requires elevated rights to perform the file deletion. I have access to a ...
1
vote
1answer
2k views

pass username and password to get-credential or run sql query without using invoke-sqlcmd in Powershell

I am trying to connect to a remote sql database and simply run the "select @@servername" query in Powershell. I'm trying to do this without using integrated security. I've been struggling with ...
1
vote
1answer
412 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 the Cmdlet can use ...
1
vote
2answers
357 views

Cannot access a disposed object error on external class library call

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 information for the new user ...
0
votes
0answers
63 views

How to use Exchange 2010 cmdlet in batch file

I can run Get-ActiveSyncDeviceAccessRule correctly in Exchange Management Shell directly. (reference: http://technet.microsoft.com/en-us/library/dd776124.aspx) Then I wrote a batch file as below, but ...
0
votes
2answers
135 views

PowerShell SnapIn issues in C#

I am trying to execute the following: StringBuilder errorList = new StringBuilder(); RunspaceConfiguration runspaceConfig = RunspaceConfiguration.Create(); PSSnapInException ...
0
votes
1answer
80 views

Powershell custom cmdlet formatting output

I am writing my first custom CMDLet in powershell 2.0. I have encoutered a problem with custom formatting temaplate xml being not used in my cmdlet. Here is my formatting file: <Configuration> ...
0
votes
1answer
68 views

Problems using literals and codeblocks with c# to interact with powershell 2.0

If I try to run a Powershell Command through c# I get the following error: "The term 'select' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling ...
0
votes
2answers
58 views

How do I write a PowerShell cmdlet to take either a HashTable or a PODO for input?

I have a powershell module that wraps around some web services. The web services take complex Plain Old Dot Net Objects (PODOs) and I have been using HashTables as in cmdlet parameters and New-Object ...
0
votes
0answers
101 views

How to use PSexe to excute with local user right with out a password [closed]

OK long story short we use pidgin for IM in the office and some times i have to start it for users remotely i can use PSEXE to start this bat file to run the pidgin but it runs as the admin user and ...
0
votes
2answers
259 views

connection error when calling Exchange Management Shell from c#

I get a weird exception after solved SSL certificate issue. Please help! My code: PSCredential credential = new PSCredential("domain\administrator", securePwd); WSManConnectionInfo connectionInfo ...

1 2