Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
559 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 ...
3
votes
2answers
141 views

PowerShell says '%' and `New-Object` are not found. Am I missing an import? WinRM, or Exchange Role permission?

Suppose I already configured IIS to allow the remote runspace of "full", how do I resolve the exception that I'm getting where Powershell says "%" is not found. Then when I comment out the offending ...
2
votes
1answer
98 views

Powershell scripts invoked by C# application

I have this powershell script (test1.ps1) calling another powershell script(test2.ps1) to do the job. Both scriptfiles are in the same folder test1.ps1 echo "from test1.ps1" .\test2.ps1 ...
1
vote
2answers
108 views

Powershell Runspace Enter-PSSession

I am writing a program that will run a program on a remote machine. I have installed the windows sdk and have successfully uploaded my file with bits now I would like to remotely run a change ...
1
vote
2answers
101 views

how to establish and enter a remote session using runspace in powershell

I am trying to establish a session with a remote host B from my machine A, within a C# code. I am using runspace API for that. the code snippet is provided below Runspace runspace = ...
1
vote
1answer
141 views

PowerShell: RunSpace.SessionStateProxy.SetVariable is not setting variable

ConsoleApplication: class Program { static void Main() { using (var runSpace = RunspaceFactory.CreateRunspace()) { runSpace.Open(); ...
0
votes
1answer
79 views

MVC Controller with Runspace Impersonation

Trying to execute a Powershell cmdlet from a MVC 3 Controller using impersonation but keep receiving an "Requested registry access is not allowed." exception when calling Runspace.Open() ...
0
votes
3answers
67 views

Runspace Analysis

Is there any materials I can read on run space analysis of an algorithm +O, +Theta , +Omega etc ? Need help for a Data Structures and Algorithm class I am taking.