init commit
This commit is contained in:
commit
2b322ae062
37
disk_check.ps1
Normal file
37
disk_check.ps1
Normal file
@ -0,0 +1,37 @@
|
||||
# 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!"
|
||||
}
|
Loading…
Reference in New Issue
Block a user