- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows/ファイルシステム/代替データストリーム(ブロックの解除) へ行く。
- 1 (2015-05-10 (日) 12:31:43)
- 2 (2015-05-10 (日) 12:49:47)
代替データストリーム(ブロックの解除)
dirコマンドで代替データストリームを持つファイルの確認
dir(cmd.exe)
C:\Users\foo\Downloads>dir /r 2015/05/10 12:44 <DIR> . 2015/05/10 12:44 <DIR> .. 2015/05/10 12:43 101,162 dotjs-master.zip 26 dotjs-master.zip:Zone.Identifier:$DATA
Get-Item(PowerShell)
PS Downloads> Get-Item * -Stream * Stream Length ------ ------ :$DATA 101162 Zone.Identifier 26
上の例ではdotjs-master.zipが代替データストリームを持っているのが確認出来る。
代替データストリームの削除
PowerShell
Remove-Item .\dotjs-master.zip -Stream Zone.Identifier