Category Archives: Disk Space

Get disk space report and send once a weekly to email

Here is the link for the script I am using for email notification regard disk space and daily report (Version 2.0).

The script is wrote in powershell.

It is can be run from command line like schedule task: “C:WindowsSystem32WindowsPowerShellv1.0powershell.exe -command”

Download the Script and rename the suffix from .txt to .ps1

On the first section you need to feel relevant data for your domain and you server list runs from it (change the brackets to relevant data, NO NEED BRACKETS!!!):

$serverlist = “[Server list to check]” #server.txt
$Reports = “[Location where to place report]”
$sender = “Scripts@[domain].com”
$SMTPServer = “[SMTPServer]”
$Recipient = “[xxx@domain.com]”

I will be glade to get suggestions…

Thanks

Tal