Search
- PowerShell Script Connect-RDP.ps1 (2)
- PowerShell Script Remove-StartupItems.ps1 (2)
- PowerShell Script Test-Volume-Space.ps1 (2)
- PowerShell Script Uninstall-Toolbars.ps1 (1)
- PowerShell Script Watch-Exchange-Queues.ps1 (1)
- PowerShell Script Get-Quova-Ipinfo.ps1 (1)
- PowerShell Script Test-Automatic-Services.ps1 (0)
- VisualBasic Script Printers-Site-Install.vbs (0)
- PowerShell Script Watch-EventLogs.ps1 (0)
- PowerShell Profile Microsoft.PowerShell_profile.ps1 (0)
Michael: Thanks! Very useful script for monitoring potential spammy clients on the network.
PowerShell: E-mail Server Load and Assigned LE « Wag the Real: [...] Update: I found that the simple ping used with Test-Connection PowerShell cmdlet was not...
Alain Assaf: Aaron, Thanks for this. I've used your test-port function in my script here:...
Evert Wiesenekker: By the way I added the following code: $smtpClient = new-object...
Evert Wiesenekker: Great script the Watch-Eventlog! Thank you very much. Evert Wiesenekker
Aaron Wurthmann: When you click on the code there is a small pop-up/tool-tip. One of those options is to copy the...
Nick: This is great, it's exactly what I was looking to create myself when I stumbled on it. One little...
Aaron Wurthmann: GOOD point. I hadn't considered the idea of someone mounting a disk as a folder on a production...
User Login
about 6 years ago
Great script the Watch-Eventlog! Thank you very much.
Evert Wiesenekker
about 6 years ago
By the way I added the following code:
$smtpClient = new-object Net.Mail.SmtpClient($Server)
$credentials = New-Object System.Net.NetworkCredential($ServerUser, $ServerPassword)
$smtpClient.Credentials = $credentials
$smtpClient.Send($msg)
Evert