47 lines
1.1 KiB
PowerShell
47 lines
1.1 KiB
PowerShell
# DiskCheck PS script
|
|
# Checking a target computer for hard drive failures
|
|
#
|
|
# Written by Wyatt J. Miller
|
|
# Licensed by Mozilla Public License v2
|
|
# 2021
|
|
#
|
|
|
|
$logFile="C:\ACS\disk_check.txt"
|
|
$computerName=$env:ComputerName
|
|
$rebootTime=Get-Date "1:00"
|
|
$requireReboot=$false
|
|
$volumes=Get-Volume
|
|
|
|
Function Write-Log{
|
|
Param ([string]$logstring)
|
|
|
|
if (-not(Test-Path -Path $logFile -PathType Leaf)) {
|
|
New-Item -ItemType File -Path $logFile -Force
|
|
}
|
|
|
|
Add-Content $logFile -value $logstring
|
|
}
|
|
|
|
Write-Output "Checking disks for $($computerName)"
|
|
|
|
foreach ($i in $volumes.DriveLetter) {
|
|
if ($i.DriveLetter -eq "") {
|
|
Write-Output ""
|
|
} else {
|
|
$result=Repair-Volume -FileSystemLabel $i.DriveLetter -Scan
|
|
|
|
if ($result.value -gt 0) {
|
|
Repair-Volume -FileSystemLabel $i.DriveLetter -Scan -OfflineScanAndFix
|
|
$requireReboot = $true
|
|
} else {
|
|
Write-Output "$($i.FileSystemLabel): Drive is OK!"
|
|
Write-Log "Date: $($now), Drive Letter: $($i.DriveLetter), Volume Name: $($i.FileSystemLabel), Result: $($result), $($computerName)"
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($requireReboot -eq $true) {
|
|
# TODO: Reboot logic goes here
|
|
Write-Output "Reboot required!"
|
|
}
|