私はこのpowershellコマンドを使用します:
get-vm | ft name, *start*, *stop*, customproperties
プロパティとして文字列配列を持つオブジェクトを返します (customproperties):
Name StartAction DelayStart StopAction CustomProperties
---- ----------- ---------- ---------- ----------------
TKAD4 AlwaysAutoTurnOnVM 0 ShutdownGuestOS {NoStartupDelay, ...
TKAD3 AlwaysAutoTurnOnVM 0 ShutdownGuestOS {NoStartupDelay, ...
テーブルの一部として表示するオブジェクトとしてのプロパティである配列から 1 つの要素だけを返すにはどうすればよいですか?
私の望ましい出力は次のようになります。
Name StartAction DelayStart StopAction Custom1
---- ----------- ---------- ---------- -------
TKAD4 AlwaysAutoTurnOnVM 0 ShutdownGuestOS NoStartupDelay
TKAD3 AlwaysAutoTurnOnVM 0 ShutdownGuestOS NoStartupDelay