I am connecting remotely to a PowerShell console using C#:
using (Runspace remoteRunspace = RunspaceFactory.CreateRunspace(setUpConnection()))
{
remoteRunspace.Open();
using (PowerShell powershell = PowerShell.Create())
{
powershell.Runspace = remoteRunspace;
DateTime dateTime = GetTime(powershell); // <------ How to implement?
}
remoteRunspace.Close();
}
I want to call the Get-Date PowerShell command and somehow cast PSObject
to DateTime
. What is "the usual" way to solve this problem?
Use the PSObject.BaseObject property: