Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Scripts are used do a pre-check before getting started with debugging application.
VB Scripts being the favourite on Microsoft platform.
Most common being CDOSYS issues.
Below is the Powershell script to send email using System.Net.Mail namespace.
[System.Net.Mail.MailMessage]$message = New-Object System.Net.Mail.MailMessage("from@contoso.com", "to@contoso.com", "This is Subject", "This is body")
[System.Net.Mail.SmtpClient]$client = New-Object System.Net.Mail.SmtpClient("XXX.XXX.XXX.XXX")
$client.Timeout = 100
$client.Send($message)
Long live Powershell!