Today I came across a post about pinging a list of computers and send the results as a table via Outlook. Brian is a very smart Active Directory guy so I offered some PowerShell suggestions to make his task even … Continue reading → Read More...
< # .SYNOPSIS Send mail to BCC using PowerShell .DESCRIPTION This script is a re-developed MSDN Sample using PowerShell. It creates an email message then sends it with a BCC. .NOTES ...
# Send-SMTPMessage.ps1 # MSDN Sample, recoded using PowerShell # Thomas Lee - tfl@psp.co.uk # Create from/to addresses $from = New - Object system.net.mail.MailAddress " powershell@psp.co.uk " $to = New - Object system.net.mail.MailAddress tfl @ psp.co.uk # Create Message $message = new - object...