send e-mail just a script PowerShell Send-MailMessage
send e-mail just a script PowerShell
Send-MailMessage
help send-MailMessage:
NAME
Send-MailMessage
SYNTAX
Send-MailMessage [-To] <string[]> [-Subject] <string> [[-Body] <string>] [[
-SmtpServer] <string>] -From <string> [-Attachments <string[]>] [-Bcc <stri
ng[]>] [-BodyAsHtml] [-Encoding <Encoding>] [-Cc <string[]>] [-DeliveryNoti
ficationOption <DeliveryNotificationOptions> {None | OnSuccess | OnFailure
| Delay | Never}] [-Priority <MailPriority> {Normal | Low | High}] [-Creden
tial <pscredential>] [-UseSsl] [-Port <int>] [<CommonParameters>]
ALIASES
None
REMARKS
Get-Help cannot find the Help files for this cmdlet on this computer. It is
displaying only partial help.
-- To download and install Help files for the module that includes this
cmdlet, use Update-Help.
-- To view the Help topic for this cmdlet online, type: "Get-Help Send-
MailMessage -Online" or
go to http://go.microsoft.com/fwlink/?LinkID=135256.
Send mail:
type powershell send-mailmessage
cmdlet Send-MailMessage at command pipeline position 1
Supply values for theh following parameteres:
From:
Subject:
To[0]:
sample script:
$sender = “Esta dirección de correo electrónico está siendo protegida contra los robots de spam. Necesita tener JavaScript habilitado para poder verlo.” $receiver = “Esta dirección de correo electrónico está siendo protegida contra los robots de spam. Necesita tener JavaScript habilitado para poder verlo.” $subject = “test email from powershell” $content = “content email from powershell.” $server_smtp = “smtp.domena.pl” Send -MailMessage -SmtpServer $server_smtp -From $sender -To $receiver -Subject $subject -Body $content |
a list of programs that run from the "Startup" - powershell
a list of programs that run from the "Startup" - powershell
type the following command:
Get-CimInstance -ClassName Win32_StartupCommand | Select-Object -Property Name, Command | format-table
Powershell: Empty Trash
Since version 5 we have available PowerShell cmdlet enables emptying one command:
Clear-RecycleBin -Force
How to check the installed version of Powershell?
How to check the installed version of Powershell?
open cmd and type the command
powershell $PSVersionTable
or
powershell get-host