DiskCheck/disk_check.ps1
2021-06-16 19:18:34 -04:00

38 lines
969 B
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.log"
$computerName='localhost'
$cimSession=New-Session $computerName
$rebootTime=Get-Date "1:00"
$requireReboot=$false
$volumes=Get-Volumes -CimSession $cimSession
Function Write-Log{
Param ([string]$logstring)
Add-Content $logFile -value $logstring
}
foreach ($i in $volumes) {
$result=Repair-Volumes -CimSession $cimSession -FileSystemLabel $v.FileSystemLabel -Scan
if ($result.value -gt 0) {
Repair-Volume -CimSession $cimSession -FileSystemLabel $v.FileSystemLabel -Scan -OfflineScanAndFix
$requireReboot = $true
} else {
Write-Output "$(v.FileSystemLabel): Drive is OK!"
Write-Log $now + ',' + $volume.FileSystemLabel + ',' + $result + ',' + $targetComputer
}
}
if ($requireReboot -eq $true) {
# TODO: Reboot logic goes here
Write-Output "Reboot required!"
}