fixes galore

This commit is contained in:
Wyatt J. Miller 2021-06-16 20:43:11 -04:00
parent cddc9fe04e
commit 966d8ccda1

View File

@ -6,7 +6,7 @@
# 2021
#
$logFile="C:\ACS\disk_check.log"
$logFile="C:\ACS\disk_check.txt"
$computerName='localhost'
$rebootTime=Get-Date "1:00"
$requireReboot=$false
@ -15,18 +15,22 @@ $volumes=Get-Volumes -CimSession $cimSession
Function Write-Log{
Param ([string]$logstring)
if (-not(Test-Path -Path $logFile -PathType Leaf)) {
Add-Item -ItemType File -Path $logFile -Force
}
Add-Content $logFile -value $logstring
}
foreach ($i in $volumes) {
$result=Repair-Volume -FileSystemLabel $v.FileSystemLabel -Scan
$result=Repair-Volume -FileSystemLabel $i.FileSystemLabel -Scan
if ($result.value -gt 0) {
Repair-Volume -FileSystemLabel $v.FileSystemLabel -Scan -OfflineScanAndFix
Repair-Volume -FileSystemLabel $i.FileSystemLabel -Scan -OfflineScanAndFix
$requireReboot = $true
} else {
Write-Output "$(v.FileSystemLabel): Drive is OK!"
Write-Log $now + ',' + $volume.FileSystemLabel + ',' + $result + ',' + $targetComputer
Write-Output "$(i.FileSystemLabel): Drive is OK!"
Write-Log $now + ',' + $i.FileSystemLabel + ',' + $result + ',' + $targetComputer
}
}