C# を使用して PowerShell コンソールにリモートで接続しています。
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();
}
Get-Date PowerShell コマンドを呼び出して、どうにかして にキャストPSObject
したいと考えていますDateTime
。この問題を解決する「通常の」方法は何ですか?