Detect Large Files on Windows with PowerShell
# Ignore access errors and just list directorysGet-ChildItem C:\ -Recurse -Force -ErrorAction SilentlyContinue |ForEach-Object { if ($_.PSIsContainer) { $folderSize = (Get-ChildItem $_.Fu...
# Ignore access errors and just list directorysGet-ChildItem C:\ -Recurse -Force -ErrorAction SilentlyContinue |ForEach-Object { if ($_.PSIsContainer) { $folderSize = (Get-ChildItem $_.Fu...
Web Application Firewall (WAF), web uygulamalarının karşılaşabileceği çeşitli güvenlik tehditlerine karşı koruma sağlayan bir güvenlik çözümüdür. WAF, bir ağ güvenlik duvarına benzer şekilde çalışı...
IIS (Internet Information Services) running on Windows Server is a preferred web server platform with its reliability and wide configuration options. However, it is very important to back up IIS co...
WAL Nedir? (Write-Ahead Logging) WAL, veritabanı işlemlerinin güvenilirliğini sağlamak için verilerin disk üzerinde kaydedilmeden önce bir günlük dosyasında (WAL dosyası) yazılmasını sağlayan bi...
# Active Directory Module Install#Import-Module ActiveDirectory# CSV file:$kullanicilar = Import-Csv -Path "C:\news.csv"# Domain name:$domain = "guler.com"# Logon Name Update:foreach ($kullanici in...