Mencari tipe .mdf dengan powershell April 01, 2026 Add Comment Mencari tipe .mdf dengan powershellGet-ChildItem -Path C:\ -Filter *.mdf -Recurse -ErrorAction SilentlyContinue | Select-Object FullName, CreationTime, @{Name="Size (GB)"; Expression={"{0:N2}" -f ($_.Length / 1GB)}} | Format-Table -AutoSize