Chọn xóa các file theo dung lượng trong thư mục, link logo Tâm Anh

@echo off
setlocal
:: Size is in bytes
set "max.size=100000000"

for /f  "usebackq delims=;" %%A in (`dir /b /A:-D *.*`) do If %%~zA GTR %max.size% del "%%A"

Quick sync AD/DC

  Get-ADDomainController -Filter * | ForEach-Object { repadmin /syncall $_.Name /A /e /P /d }