Last active 3 months ago

Revision 7f7d7890bc06fda75cf182cf626fc3acdfaab72c

Delete every other file.ps1 Raw
1$i=0; Get-ChildItem -File | Sort-Object Name | ForEach-Object { if($i++ % 2 -eq 0) { Remove-Item $_.FullName -Force } }