csmith1865

csmith1865 / Delete every other file

Last active 1 month ago

Like 0

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 } }