The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
72 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
39 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
2answers
40 views

Durable variable in powershell [duplicate]

I wrote a powershell module in c# which allows me to call some webservices. Before I can use them, I have to specify where the service is located. For example: Set-ServiceUrl ...
1
vote
2answers
172 views

Gathering user input during execution of C# custom Cmdlet (not through arguments)

I'm writing Cmdlets that interface with Google Apps API and require Oauth2 authentication. If a user tries to run a Cmdlet without being authenticated and it's more than just refreshing a token, I ...
1
vote
1answer
71 views

Invoking Read-Host cmdlet from within C# Custom Cmdlet

I'm writing a set of Powershell Cmdlets that require Oauth2 authentication. I currently am able to get to the point where a new browser window opens and the user copies out the Access Authentication ...
0
votes
2answers
96 views

Powershell convert man page to html

Im a noob with Powershell, I need help converting a specific man page into an html document about_script my code is: get-help about_scripts | convertto-html > scr.html it creates an html page ...
0
votes
2answers
167 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. ...
0
votes
1answer
427 views

Get-AdComputer -filter parameter not accepting Get-Date output

I've stumbled across an odd error in a PowerShell script that returns for me the computers in Active Directory in a specific OU (and sub OU's) that are enabled and logged on to within a certain date. ...
1
vote
1answer
102 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
182 views

Run parallel Invoke-WebRequest jobs in PawerShell v3

Running simultaneous background jobs in PowerShell in pretty straightforward, but I cannot seem to get it working with the new (in v3) cmdlet Invoke-WebRequest. I have several thousand files I am ...
1
vote
1answer
88 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
2answers
75 views

How to make my binary executable as cmdlet in PS using Powershell script?

I have a binary executable called ruby.exe located in C://test//ruby.exe How can I make it as cmdlet using powershell script such that in my powershell script, i can run ruby directly?
0
votes
1answer
105 views

Powershell concat strings and variables inline?

I want to do the following: New-WebVirtualDirectory -Site "Site1" -Name "XX_$args[0]" -physicalPath "c:\sites\XX_$args[0]" Where "XX_" is a static string and $args[0] is whatever the first ...
0
votes
0answers
53 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 ...
0
votes
1answer
80 views

Backup-WDServer: How to specify encryption password

I read about the Web Deploy Powershell Cmdlets, and I'd like to start using them. Of course, the first task as I begin is to backup the current configuration state of my test webserver--and this ...
0
votes
1answer
109 views

Windows Powershell: Error message when calling “help” or other unrecognized functions

I'm receiving the following error in Powershell when trying to execute certain functions. For instance, typing "help dir" results in this: PS C:\Users\Admin> help dir The term "more.com" is not ...
0
votes
1answer
79 views

Escaping single quotes in C# powershell runspace

I am trying to run Exchange cmdlets using System.Automation dll in C#. In http://technet.microsoft.com/en-us/library/dd315325.aspx, they have said that for escaping single quotes, we basically need ...
0
votes
1answer
92 views

Azure power shell cmdlet dll in .net project

Here I have a question about how to use Azure power shell cmdlet dll in .net project. I got a look at this thread in msdn: Use powershell cmdlet we can use this command. Remove-AzureVM -ServiceName ...
0
votes
0answers
74 views

how to execute tsql scripts from cmdlet written in c#

I want to execute tsql scripts from custom cmdlet written in c#. Can you recommend me the best practice to do it? I have a few .sql scripts and in my cmdlet I need to iterate through them in specific ...
1
vote
2answers
269 views

Best way to update cmdlet progress from a separate thread

I have a powershell cmdlet written in C# (deriving from PSCmdlet) which will start a long-running task which should update its progress using WriteProgress() while it is running. Since powershell will ...
0
votes
1answer
494 views

Interesting trouble with windows services and the Stop-Process cmdlet

We have a few home-brewed windows services over here. One of them is problematic, in that it won't always stop when asked. It gets stuck in the 'Stopping' state sometimes. Using powershell we're ...
3
votes
1answer
288 views

In Custom C# PowerShell Cmdlet Identify If -Verbose Was Specified

I have a custom C# PowerShell Cmdlet (inheriting from the Cmdlet base class) and I want to be able to identify if the "-Verbose" parameter was specified when running the Cmdlet. I realize that ...
2
votes
1answer
411 views

Start-Job script block— how to call cmdlets with arguments?

I'm new to the Start-Job cmdlet and am having trouble calling a script block with cmdlets in it that take arguments. Here's what I have so far: Start-Job -ScriptBlock { $ServiceObj = ...
1
vote
1answer
500 views

stop-service cmdlet timeout possible?

We're using the stop-service cmdlet to kill a few services on our boxes. Most of the time it works great, however we have one or two services (who doesn't?) that occasionally don't play nice. In ...
1
vote
2answers
407 views

Inline expansion of powershell variable as cmdlet parameter?

When calling a cmdlet, is it possible to expand the value of a powershell variable somehow so it acts as a parameter (with associated values) for the cmdlet? Here's an example of what I'm trying: ...
0
votes
1answer
993 views

Powershell cmdlet “get-vm”

Is "Get-vm" native powershell cmdlet? I used get-command in PS but could not able to find the cmdlet "get-vm" Is this cmdlet specific to VMware? if so, where can i get all the remaining cmdlet for ...
1
vote
2answers
704 views

Setting GPO security filter with powershell Set-GPPermissions cmdlet

According to Microsoft the cmdlet Set-GPPermissions accepts the option "-replace": "This ensures that the existing permission level is replaced by the new permission level." I import a GPO from ...
1
vote
3answers
863 views

osql vs Invoke-Sqlcmd— redirecting output of the latter

We're moving from a batch file that calls osql to a Powershell script which uses the Invoke-Sqlcmd cmdlet. Would anyone know what the equivalent steps are for redirecting the output in the latter ...
2
votes
1answer
324 views

Navigating parent-child relation in PowerShell cmdlet

Suppose I have objects that have a parent-child relationship like this: public class Node { public string Name { get; set; } public string Type { get; set; } public Node Parent { get; set; } ...
1
vote
2answers
192 views

get a folder path from the explorer menu to a powershell variable

is it possible to open a explorer window from powershell and store the path selected in the explorer, to a variable? to open explorer window from powershell PS C:> explorer
0
votes
1answer
748 views

Remove a line from a CSV powershell

I currently have the following csv These, Are, Several, Columns -----, ---, -------, ------- "And", "here", "is", "data" "And", "some", "more", "data" While I wish I could simply change the process ...
2
votes
0answers
170 views

Is it possible to share properties and comments between Powershell cmdlets in c#?

When exposing a set of related functions in Powershell cmdlets, is it possible to share the property names and summary help to normalize these across cmdlets in an assembly? I know that this can be ...
3
votes
1answer
214 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
2answers
544 views

Changing powershell pipeline type to hashtable (or any other enumerable type)

I like to write a cmdlet "Convert-ToHashTable" which performs following task: $HashTable = Import-Csv Table.csv | Convert-ToHashTable Import-csv places an array on the pipeline, how can i change it ...
1
vote
3answers
218 views

How to know all the parameters passed to a cmdlet programmatically?

I have customer cmdlet implemented in .net. I would like to know all the parameters user passed to it. My-Cmdlet -foo -bar -foobar Basically i would like to know that user executed this cmdlet with ...
0
votes
3answers
522 views

Powershell Error using GetEventLog CmdLet

I am trying to run a powershell script and try to filter by the message. param($server,$message) Try { Invoke-Command -computername $server {Get-Eventlog -logname application -source "source" ...
1
vote
3answers
372 views

PowerShell provider relative path tab-completion issue

I've implemented a simple PowerShell NavigationCmdletProvider. For those who don't know, this means I can create a snap-in with a cmdlet which is effectively a virtual filesystem drive; this drive ...
1
vote
1answer
551 views

Powershell C# Cmdlet with Hashtable/Dictionary parameters

Can anyone tell me how to add a parameter to my custom C# cmdlets which is a Hashtable/StringDictionary, so that I can call my cmdlet in a way which resembles this: CustomCmdlet -File $someFilePath ...
2
votes
2answers
286 views

How to add a PSCmdlet or PSSnapin to hosted Powershell runtime without installing the snapin

My scenario is as follows. I am uploading my dll through web UI. I am hosting a PowerShell runspace in an ASP.NET application. I The DLL contains the PSCmdlet and would like to make use of it. The ...
0
votes
1answer
334 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> ...
8
votes
3answers
996 views

Hosted PowerShell cannot see Cmdlets in the same Assembly

I'm trying to run PowerShell scripts from my C# code, that will use custom Cmdlets from the assembly that runs them. Here is the code: using System; using System.Management.Automation; ...
1
vote
1answer
861 views

How to register a powershell snapin programmatically in a hosted powershell environment?

I've developed some powershell cmdlets and providers, and also developed an application to host powershell environment. I would like to run those cmdlets and providers in this hosted powershell ...
0
votes
1answer
664 views

Appfabric Powershell error “The term 'Get-CacheStatistics' is not recognized as the name of a cmdlet..”

I'm calling the simple following Powershell AppFabric command: powershell -noexit c:\scripts\ApplyClusterConfig.ps1 and the script just contains: Get-CacheStatistics and I'm getting the ...
3
votes
4answers
837 views

Shorter versions of powershell cmdlet parameters

Given my research, I don't believe the following is easily accomplished, if at all. As a last resort, however, I figured I'd check here. In Powershell 2.0, I'd like a way to reduce the (annoyingly) ...
1
vote
1answer
188 views

How to convert cmdlet parameter (which is string) to any other type

I want to pass parameter of custom type to my cmdlet. I declare parameter like this: [Parameter(Position = 1)] public StoreIdParameter Identity { get; set; } But when I run cmdlet with parameter ...
2
votes
1answer
2k views

MS Exchange 2010: cmdlet Not Executing Correctly as a Scheduled Task

I've been using a Scheduled Task and the New-MailboxExportRequest cmdlet to export my organization's mailboxes to .PST archive files each night for awhile now. Unfortunately, the ExportRequests are ...
1
vote
5answers
791 views

Powershell Importing custom C# CMDlets, no available “ExportedCommands”

first question here :) So I have to create a custom CMDLet for Powershell 2.0, using visual studio 2010 express. I have followed this seemingly simple tutorial : ...
1
vote
4answers
2k views

Powershell Cmdlet with Mandatory Parameters

I'm trying to create a simple powershell cmdlet that would have a few mandatory parameters. I've found the following code for doing so however, I cannot get it to execute: function new-command() { ...
1
vote
1answer
1k views

Issue with Microsoft Enterprise Library 5.0 and custom powershell cmdlet

I'm creating a custom powershell 1.0 cmdlet that will allow me to feed exceptions from powershell scripts to the Microsoft Enterprise Library v5.0 exception handling block. I load up my Exception ...
2
votes
2answers
435 views

whats the difference between writeobject(x, true) and multiple writeobjects when writing a powershell cmdlet

I want to write a cmdlet that read multiple records from a database and puts them onto the pipeline. I think I can do either a single WriteObject(Enumerable<rec>, true) or a can loop myself and ...

1 2