- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- バックアップ を表示
- PowerShell/ファイル作成/新規のファイルまたはフォルダの作成 UNIXのtouch相当 へ行く。
- 1 (2016-12-15 (木) 10:28:27)
- 2 (2016-12-15 (木) 01:28:42)
* PowerShell 新規のファイルまたはフォルダの作成 [#r73bfe07] ** 空のファイルを作る [#me59441f] New-Item -Type File 1.txt ** 既存のファイルを削除して空のファイルを作る -Force [#p0e67dd3] New-Item -Type File -Force 1.txt ** 参考 [#ba2ce1f6] https://technet.microsoft.com/ja-jp/library/ee176914.aspx