Tagged Questions
The pshost tag has no wiki summary.
1
vote
2answers
67 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
2answers
557 views
Powershell Sqlcmd popup in c#
I have a PSHost object executing a Powershell script myscript.ps1 and that .ps1 script is executing sqlcmd.exe to get what it needs done. Is there a way to keep it from popping up empty sqlcmd dos ...
0
votes
3answers
2k views
How to extract $lastexitcode from c# powershell script execution
I've got a scipt executing in C# using the powershell async execution code on code project here:
...