Script Powershell

Script Powershell

Estou tentando escrever um script do PowerShell que envie por email, como anexos, todos os arquivos em cada subpasta de C:\Reports\ juntos em um email. Por exemplo, se as subpastas forem C:\Reports\ABC tendo a.txt, b.xml e c.jpg e C:\Reports\DEF tendo d.txt, e.xml e f.pdf, o código deverá enviar por e-mail um .txt, b.xml e c.jpg em um e-mail e d.txt, e.xml e f.pdf em outro. Eu escrevi o código abaixo: -

$Directory=Get-ChildItem "C:\Reports\" -Directory 
$Cred = Get-Credential 
Foreach($d in $Directory) { 
Write-Host "Working on directory $($d.FullName)..." 
$files=Get-ChildItem -Path "$($d.FullName)"
cd $d.Fullname  
Send-MailMessage -From "[email protected]" -To "[email protected]" -Subject "test" -SmtpServer "smtp.gmail.com" -Port "587" -Attachments $files -BodyAsHtml "test msg" -Credential $Cred -UseSsl
} 

No entanto, isso parece anexar apenas o último arquivo em cada subpasta e depois passar para a próxima pasta e e-mail. Gostaria de saber como Get-ChildItem - File pode ser usado corretamente com Send-MailMessage - Attachments para conseguir o que estou tentando fazer.

Responder1

Aqui está um código (não testado):

#Connection Details
$username="john"
$password="password"
$smtpServer = "mail.server.local"
$msg = new-object Net.Mail.MailMessage

#Change port number for SSL to 587
$smtp = New-Object Net.Mail.SmtpClient($SmtpServer, 25) 

#Uncomment Next line for SSL  
#$smtp.EnableSsl = $true

$smtp.Credentials = New-Object System.Net.NetworkCredential( $username, $password )

#From Address
$msg.From = "[email protected]"
#To Address, Copy the below line for multiple recipients
$msg.To.Add("[email protected]")

#Message Body
$msg.Body="Please See Attached Files"

#Message Subject
$msg.Subject = "Email with Multiple Attachments"

#your file location
$files=Get-ChildItem "C:\Reports\"

Foreach($file in $files)
{
Write-Host "Attaching File :- " $file
$attachment = new-object Net.Mail.Attachment -ArgumentList $file.FullName
$msg.Attachments.Add($attachment)
}

$smtp.Send($msg)
$attachment.Dispose();
$msg.Dispose();

fonte

informação relacionada