我正在尝试在所有服务器上编写用于磁盘空间报告的PowerShell。目的是使其在每天的午夜作为计划任务运行,这将导出CSV并在桌面空间不足10%的情况下发送电子邮件,该电子邮件将包含最新CSV的附件报告。
我遇到的问题是电子邮件部分。整个代码如下!
$OldReports = (Get-Date).AddDays(-30)
#edit the line below to the location you store your disk reports# It might also
#be stored on a local file system for example, D:\ServerStorageReport\DiskReport
$messageParameters = @{
Subject = "Weekly Server Storage Report"
Body = "Attached is Weekly Server Storage Report. The scipt has been amended to return only servers with free disk space less than or equal to 10%. All reports are located in \\universalexplorer.net\REPORTS\ServerStorageReports$Env:COMPUTERNAMEDiskReport\, but the most recent is sent weekly"
From = "<doNotReply@universalexplorer.net>"
To = "<jacob.pagano@universalexplorer.net>"
Attachments = (Get-ChildItem "\\universalexplorer.net\REPORTS\ServerStorageReports\DiskReport_$Env:COMPUTERNAME*" | sort LastWriteTime | select -last 1)
SmtpServer = "smarthost.universalexplorer.net"
}
Get-ChildItem "\\universalexplorer.net\REPORTS\ServerStorageReports\DiskReport_$Env:COMPUTERNAME*" | `
Where-Object { $_.LastWriteTime -le $OldReports} | `
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
#Create variable for log date
$LogDate = get-date -f yyyyMMddhhmm
Get-WmiObject -Class Win32_logicaldisk -Filter "DriveType = '3'" |
Select-Object -Property DeviceID, DriveType, VolumeName,
@{Label = "Drive Letter";Expression = {$_.DeviceID}},
@{Label = "Total Capacity (GB)";Expression = {"{0:N1}" -f( $_.Size / 1gb)}},
@{Label = "Free Space (GB)";Expression = {"{0:N1}" -f ( $_.Freespace / 1gb ) }},
@{Label = 'Free Space (%)'; Expression = {"{0:P0}" -f ($_.freespace/$_.size)}} | Export-Csv -path "\\universalexplorer.net\REPORTS\ServerStorageReports\DiskReport_$Env:COMPUTERNAME'_'$logDate.csv" -NoTypeInformation
Get-WmiObject -Class Win32_logicaldisk -Filter "DriveType = '3'" | Send-MailMessage @messageParameters -BodyAsHtml | Where-Object {($_.freespace/$_.size) -le '0.1'}
这是电子邮件部分的代码段。
Get-WmiObject -Class Win32_logicaldisk -Filter "DriveType = '3'" | Send-MailMessage @messageParameters -BodyAsHtml | Where-Object {($_.freespace/$_.size) -le '0.1'}
答案 0 :(得分:1)
您的代码未将结果捕获到变量中,因此此后将很难测试是否需要发送电子邮件。 (您现在需要再次执行Get-WmiObject
)。
此外,您正在将数字与Where-Object {($_.freespace/$_.size) -le '0.1'}
中的字符串进行比较
如果我理解这个问题,则代码应始终创建一个报告csv文件。
如果报告显示磁盘的可用磁盘空间少于10%,则应发送电子邮件。
如果这是每周邮件的标准日期,则也应该发送此电子邮件。
尝试:
$OldReports = (Get-Date).AddDays(-30).Date # set this to midnight
$LogDate = '{0:yyyyMMddhhmm}' -f (Get-Date)
$logPath = '\\universalexplorer.net\REPORTS\ServerStorageReports'
$logFile = Join-Path -Path $logPath -ChildPath ('DiskReport_{0}_{1}.csv' -f $env:COMPUTERNAME, $logDate)
# remove all old reports
Get-ChildItem -Path $logPath -Filter "DiskReport_$env:COMPUTERNAME*.csv" -File |
Where-Object { $_.LastWriteTime -le $OldReports} |
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
# get the disk info and capture the results in variable $result
$result = Get-WmiObject -Class Win32_logicaldisk -Filter "DriveType = '3'" |
Select-Object -Property DeviceID, DriveType, VolumeName,
@{Label = "Drive Letter";Expression = {$_.DeviceID}},
@{Label = "Total Capacity (GB)";Expression = {"{0:N1}" -f( $_.Size / 1gb)}},
@{Label = "Free Space (GB)";Expression = {"{0:N1}" -f ( $_.Freespace / 1gb ) }},
@{Label = 'Free Space (%)'; Expression = {"{0:P0}" -f ($_.freespace/$_.size)}}
# output the report in a csv file. This will now of course be the most recent
$result | Export-Csv -Path $logFile -NoTypeInformation
# check the results to see if there are disks with less than 10% free space
$lowOnSpace = $result | Where-Object { [int]($_.'Free Space (%)' -replace '\D') -lt 10 }
# if today is the day to send the weekly report. For demo I'll use Monday
# also send if any of the disks have less than 10% free space
if (($lowOnSpace) -or (Get-Date).DayOfWeek -eq 'Monday') {
# do the mailing stuff if needed
$messageParameters = @{
Subject = "Weekly Server Storage Report"
Body = "Attached is Weekly Server Storage Report. The scipt has been amended to return only servers with free disk space less than or equal to 10%. All reports are located in $logPath, but the most recent is sent weekly"
From = "<doNotReply@universalexplorer.net>"
To = "<jacob.pagano@universalexplorer.net>"
Attachments = $logFile
SmtpServer = "smarthost.universalexplorer.net"
BodyAsHtml = $true
}
Send-MailMessage @messageParameters
}
希望这会有所帮助