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

0
votes
0answers
30 views

Developing a Powershell cmdlet with dynamic property?

I am trying to create a powershell cmdlet that can create specific types of "Attribute" objects that can be passed into a web service. The web service itself implements CustomAttributeValueMulti ...
0
votes
1answer
29 views

Calling a cmdlet with custom arguments

I have a powershell script which can be called by certain users. The script runs with some elevated permissions so I need to make sure they can't use it to bypass the intended behavior. One of the ...
0
votes
1answer
45 views

Custom powershell cmdlets do not support multi-threading?

In the code blocks below, I'm trying to run Get-MyCmdlet in 3 separate threads, each of which opens a google page if the Get-MyCmdlet did not give anything. The Get-MyCmdlet is fairly simple, the ...
-6
votes
3answers
107 views

Is there any tool that can do c# code to powershell

I was wondering if there is an online tool that can convert c# code to powershell cmdlet code. I have following code that i need to have it powershell. I dont have visual studio to turn this into an ...
0
votes
1answer
118 views

Reading event log remotely with Get-EventLog in Powershell

I've a powershell script which runs on server(test-server) and reads the log file of his client(DC1). Both sides can ping to each other. On both sides, firewalls are disabled. Remote Desktop and ...
0
votes
1answer
124 views

Can powershell Import-csv read from an variable location?

Just a simple question regarding how import-csv command is read. if I have something like this in ps (sorry first time poster, and I can't seem to indent block the script below): $ReadthisCSV = ...
0
votes
1answer
133 views

Powershell Script - Services Running eq OK or list Services Not Running

I have this script which checks multiple servers for particular services running. I need assistance or pointers on how to get it to not pull back running / not running response. I need to get it to ...
1
vote
1answer
64 views

Send multiple outputs to the same HTML file in Powershell

Trying to figure out how to convert to HTML multiple service checks: I have this script: Get-service -Computername SERVER1 -Name *SERVICE1* | ConvertTo-Html -Body "<H2>Service 1 ...
0
votes
2answers
114 views

ParameterSet doesn't work in custom PowerShell cmdlet in C#

I have the following code, where I try to create a custom Cmdlet for PowerShell using C#. What I want to do with my custom cmdlet is that, user should call it with two parameters, from which first ...
0
votes
1answer
96 views

PowerShell custom Cmdlet using SwitchParameter

I have the following code, where I try to create a custom Cmdlet for PowerShell using C#. What I want to do with my custom cmdlet is that, user should call it with two parameters, from which first one ...
0
votes
0answers
165 views

Getting “Operation is not valid due to the current state of the object” error for Exchange commands

I have an ASP.NET 3.5 application running Powershell scripts to add/update Exchange mailboxes. Most of the Powershell commands work great, but two of them so far have caused an error: ...
0
votes
2answers
65 views

Invoke-Sqlcmd sometimes reports TSQL errors and sometimes it does not?

I'm confused: The following code produces an error: try { invoke-sqlcmd -ServerInstance 'localhost' -Database 'tempdb' -Query 'CREATE TABLE foo (bar TINYINT IDENTITY(1,1) DEFAULT 1);;' -Verbose ...
1
vote
1answer
74 views

Possible bug with New-AzureDeployment

The New-AzureDeployment cmdlet is not updating the Deployment Name with the value from the -Name parameter. As per MSFT's documentation here, the -Name parameter maps to the Deployment Name but when I ...
0
votes
1answer
260 views

MSOnline can't be imported on PowerShell (Connect-MsolService error)

I had this issue and couldn“t find any answer. The issue was that I was trying to use Azure cdmlets to connect to O365 via c# code, but I couldn“t get the connect-msolservice. ""The term is not ...
1
vote
1answer
109 views

c# programatically exporting transport rule - exchange 2010

I am trying to export transport rule programmatically. My code works for simple commands like get-exchangeserver and get-TransportRule but if I try to give command importing rules to some file it ...
0
votes
2answers
84 views

cmdlet says parameter cannot be retrieved: expression must be readable

My cmdlet has a Get-Deal command, which will receive value from pipeline: [Cmdlet(VerbsCommon.Get, "Deal")] public class GetDealCmdlet : InsightBaseCmdlet { private List<Object> ...
-2
votes
1answer
45 views

powershell cmdlet: expression must be readable

My cmdlet is trying to get values from pipeline, but when running, I got the error saying: Pipeline intput cannot be processed because the default value of parameter 'Legalentity' cannot be retrived. ...
0
votes
0answers
56 views

Cmdlets in powershell : How can I get Get-Member to see my dynamically added properties?

I am new to Powershell and I am trying to see if I can output an object with a set of properties that are "dynamically" added to my object and also get it to work correctly with Get-Member Here is my ...
0
votes
1answer
48 views

Mix cmdlets from assembly and psm1 within a single Module manifest

I have a C# project containing some custom cmdlets and a module manifest that loads them specifying the assembly as RootModule (I'm using PowerShell 3.0). I'd need to add some cmdlets written in a ...
0
votes
1answer
82 views

Format-Table returning blank column

I'm having trouble only displaying the Time column for a command. Get-EventLog -log Security | where {$_.EventID -eq 4800 -or $_.EventID -eq 4801} returns: Index Time EntryType ...
0
votes
2answers
293 views

why export-csv returns a file that contains wierd data?

I have a binary cmdlet Get-CustomPSObject. When I do something like: Get-CustomPSObject > a.txt the result is stored as a plain text, meaning that the Get-CustomPSObject is working fine. ...
1
vote
1answer
120 views

powershell cmdlet: positional v.s. pipeline are they against each other?

My cmdlet tries to take 2 parameters, 1 from pipeline and 1 from user input, and I am wondering is it possible to be done by positional parameter so that it is like: Set-login name pw | add-view ...
1
vote
1answer
93 views

cmdlet design: parameter pass in: pipeline or inline parameter?

It is not a programming question but instead more of a designing question. Assuming data is stored in json. For example, Get-Person "John" | Get-Employer or Get-Employer -Person "John" Both way ...
1
vote
1answer
366 views

.bat Set FontSize - Windows Command Line

Intro: I swear have searched around for sometime before posting, but have been unable to find an answer for this.. Question: Regarding Windows Command Line: is there some way to set the ...
0
votes
0answers
56 views

My cmdlet cannot be registered

basically the code is from msdn.microsoft.com After I build the code, I open the command prompt and type in: Installutil -i %path%/Mycmdlets.dll The result indicates that the Install phase completed ...
2
votes
1answer
84 views

Is there a way to subclass Azure Powershell Cmdlets — or something similar?

I'm writing some powershell cmdlets to automate the configuration of Azure subscriptions. One of the use-cases is having a developer configure their own environment. Currently this takes about 20 ...
2
votes
1answer
381 views

Call azure powershell cmdlet from c# application fails

I'trying to automatize the process of deploying to azure cloud. My powershell script that do that, works like a charm when executing it from azure powershell commandline. When I try to invoke the same ...
0
votes
1answer
84 views

List available CmdLets in Package Manager Console

In the package manager console, is it possible to get a list of available cmdlets? For example, I installed the Entity Framework package and I want to play around with migrations. I know the ...
1
vote
2answers
113 views

Powershell - output of custom module unusable

How can I use the output from a custom module to put into a variable preferably an object. Here is the problem. After importing the custom module and running the cmdlet it always outputs the same ...
2
votes
1answer
181 views

Powershell, retrieve users manager

I'm creating a csv type org chart and was just wondering what would be the preferred to retrieve a users manager, manager's manager, ... etc up to the highest position. Currently i'm using: ...
0
votes
1answer
98 views

Calling a powershell cmdlet from ps script

I have a cmdlet with the following defintion: [CmdletBinding(DefaultParameterSetName="Path", SupportsShouldProcess=$TRUE)] param( [parameter(Mandatory=$TRUE,Position=0)] [String] ...
2
votes
1answer
256 views

Use New-AzureDeployment to deploy cloud service, But error occurs “The HTTP version specified is not supported for this operation by the server”

PS C:> New-AzureDeployment -ServiceName "TestAutoDeploy" -Slot "Production" -Package "d:\builds\a.cspkg" -Configuration "d:\builds\a.cscfg" -Label "MyDeployment" New-AzureDeployment : The HTTP ...
1
vote
1answer
251 views

How to read multi line multi string registry entries in PowerShell?

I am trying to read the "-Dhttp.port" value with no luck. AS you can see in the attached image, "Options" is a sub-key and I am able to read "Options" using the following snippet (this shows ...
2
votes
1answer
471 views

Executing standard PowerShell cmdlets in remote session to Lync

Having an odd issue over here. I'm able to start a remote session from my C# application to PowerShell in a Lync Server 2010 instance. I'm able to get all the Lync-specific cmdlets and execute them, ...
5
votes
1answer
52 views

How to find which Cmdlet Alias was used by user?

Please excuse me if you find this a very lame questions, but since I am learning Powershell I need to ask. This is a sort of next part of the question posted and answer received here. I have a ...
2
votes
1answer
179 views

Is there a way to add Alias to Powershell Cmdlet programmatically?

I am writing custom Powershell cmdlets for my application and I need to provide Aliases to some cmdlets. So lets say I have cmdlet Get-DirectoryListing and I want to add Alias (say 'gdl') to this ...
0
votes
1answer
392 views

How do I change the timeout value for Add-Blob Azure cmdlet?

I'm trying to invoke Add-Blob Azure cmdlet Add-Blob -BlobType Block -FilePath $packagePath -ContainerName $blobContainerName and it has been working just fine until recently but now it fails with ...
1
vote
1answer
125 views

ShouldProcess doing nothing once loaded into PowerShell

Simple case, trying to code a cmdlet that will prompt the user to confirm their action. This means I have to put ShouldProcess in the ProcessRecord method call, but it always returns true no matter ...
1
vote
1answer
256 views

Execute cmdlets on a 64bit Powershell executable

How can i write a powershell script that opens and runs cmdlets on a 64bit remote powershell executable. I am having a tough time finding any resources, examples or tutorials that show how to write ...
2
votes
4answers
136 views

Call Set-Location from within a cmdlet

I'm creating a cmdlet for PowerShell and I need to be able to call Set-Location (aka cd) from within a the cmdlet. I would do it like this var setLocation = new ...
0
votes
1answer
207 views

AppFabric Cmdlet - cannot connect to local cluster

I've been trying to write a simple little Cmdlet to allow me to Set/Get/Remove cache items. The problem I have is that I cannot figure out how to connect to the local cache cluster. I've tried adding ...
1
vote
4answers
4k views

Could not find default endpoint element that references contract :connect to WCF endpoint through Powershell cmdlet

I have created a class library that should connect to a WCF endpoint project I am hosting. The client project has commandlets defined that should interact with the service. However, I keep getting ...
0
votes
1answer
156 views

Run entityframework cmdlets from my code

I am creating a small program over entityframework which allows to edit the POCOs with a UI. as part of the process i would like to call the "add-migration" command from my code to save the ...
0
votes
1answer
555 views

Reference or documentation for Citrix XenServer Powershell cmdlets

I just started writing powershell scripts for Citrix XenServer. However, I can only find code snippets and this cmdlet poster on the internet. Where can I find a full documentation with explanations ...
3
votes
1answer
225 views

Powershell Custom Cmdlet - Call WriteObject in Background Thread

Calling the WriteObject Method from a background thread is not possible! Is there a possibility, to invoke/dispatch this method in the main thread of the powershell (like in WPF)? Code sample: ...
1
vote
3answers
281 views

How does one securely handle passwords in a custom written PowerShell cmdlet?

Assume I have a custom PowerShell Cmdlet that exports data and encrypts it using a password. [Cmdlet(VerbsData.Export, "SampleData")] public class ExportSampleData : PSCmdlet { ...
0
votes
1answer
343 views

How to exclude a folder with remove-item cmdlet

I have a git repository that I'm trying to delete all files and folders out of but not the .git folder. I've tried various permutations of the -exclude parameter but can't seem to get it. $repoPath = ...
0
votes
1answer
827 views

How to get/set/update registry value through group policy cmdlet of Windows PowerShell?

I have configured the EventForwarding Manually but I was wondeing If I could do it programmatically and I came across the Group Policy Cmdlets which seems to be the solution. Here is what I am trying ...
0
votes
1answer
343 views

Group Policy Event Forwarding through PowerShell - Windows

On windows server, when you open group policy setting (gpedit.msc in System32), I can set up Event Forwarding by following steps here: ...
2
votes
2answers
252 views

Clear PowerShell overlay from Add-WindowsFeature cmdlet

I recently notice that when creating powershell scripts that use the Add-WindowsFeature cmdlet from the ServerManager Module on Windows Server 2008 R2, there is an aqua-blue overlay that does not get ...

1 2 3