diff --git a/disk_check.ps1 b/disk_check.ps1 index 3f4355d..fc2499a 100644 --- a/disk_check.ps1 +++ b/disk_check.ps1 @@ -24,7 +24,7 @@ Function Write-Log{ foreach ($i in $volumes) { if ($i.FileSystemLabel -eq "") { - Write-Output "" + Write-Output } else { $result=Repair-Volume -FileSystemLabel $i.FileSystemLabel -Scan @@ -32,8 +32,8 @@ foreach ($i in $volumes) { Repair-Volume -FileSystemLabel $i.FileSystemLabel -Scan -OfflineScanAndFix $requireReboot = $true } else { - Write-Output $i.FileSystemLabel + ": Drive is OK!" - Write-Log $now + ',' + $i.FileSystemLabel + ',' + $result + ',' + $targetComputer + Write-Output "$($i.FileSystemLabel): Drive is OK!" + Write-Log "$($now), $($i.FileSystemLabel), $($result), $($computerName)" } } }