filmov
tv
Basic PowerShell Script, Check Disk Space and Send Alert #sysadmin #powershell #techtips #scripting
Показать описание
Learn the basics of PowerShell scripting with these quick, practical examples! From checking file existence to monitoring services, these tutorials are perfect for beginners and those looking to automate tasks with PowerShell. Each video shows you how to create simple scripts to boost productivity and streamline your workflows.
$drive = Get-PSDrive -Name C
$totalSpace = $drive.Used + $drive.Free
$usedPercentage = ($drive.Used / $totalSpace) * 100
Write-Output "Disk Used Percentage: $usedPercentage"
if ($usedPercentage -gt 50) {
Write-Output "Warning: Disk space above 90%!"
} else {
Write-Output "Disk space is fine."
}
$drive = Get-PSDrive -Name C
$totalSpace = $drive.Used + $drive.Free
$usedPercentage = ($drive.Used / $totalSpace) * 100
Write-Output "Disk Used Percentage: $usedPercentage"
if ($usedPercentage -gt 50) {
Write-Output "Warning: Disk space above 90%!"
} else {
Write-Output "Disk space is fine."
}
Basic PowerShell Script, Check Disk Space and Send Alert #sysadmin #powershell #techtips #scripting
How To Check Drive Size and Free Space Using PowerShell
How To Check Drive Size and Free Space Using PowerShell
RunningLow – PowerShell script to check for disk space and send e-mail | VPS Tutorial
How to execute a PowerShell Script
My PowerShell Scripts - Systems Administration #powershell #script #sysadmin
Basic PowerShell Script, Detect USB Drive Connection #sysadmin #powershell #techtips #scripting
PowerShell to get FreeSpace of disks
How To Run A Disk Check In Windows 10 Using The Command Prompt
How to Run CHKDSK For Repairing Bad Sectors?
Basic PowerShell Pt14 Set-Disk Tutorial
Powershell script to get Disk usage
Disk Cleaner PowerShell Script
How to Check Disk HDD or SSD in Laptop/Desktop Using PowerShell
11. Remotely retrieve disk size, FreeSpace and % of FreeSpace with PowerShell
how to run powershell script through task scheduler
How to check high CPU usage using Powershell
Powershell. Free disk space
Powershell script for basic task to perform - Part01
Powershell - Applied - Check Disk - CHKDSK using Repair-Volume
Disk utilization report using powershell
Tech Tips PowerShell Track Disk Space Usage Across Drives #sysadmin #powershell #techtips #shorts
Windows PowerShell/Command Line for Beginners (Tutorial)
Fix Disk Errors in Windows 11 with PowerShell
Комментарии