- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/コマンドレット/オブジェクトのプロパティの選択 - Select-Object へ行く。
- 1 (2012-05-05 (土) 14:05:46)
オブジェクトのプロパティの選択 - Select-Object
PS C:\Users\taro\tmp> dir Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 2012/05/05 14:04 3 1.txt -a--- 2012/05/05 14:04 3 2.txt -a--- 2012/05/05 14:04 3 3.txt
PS C:\Users\taro\tmp> dir | Select-Object Name Name ---- 1.txt 2.txt 3.txt