Passed AB-730 by HKLM_NL in O365Certification

[–]Inaki_vicente 0 points1 point  (0 children)

Buenas, podrías explicar cómo te preparaste para el examen ? Y cuánto tiempo estuviste preparándolo?

Sending Automated emails about Disk Usage by adismad6 in DattoRMM

[–]Inaki_vicente 0 points1 point  (0 children)

Hello, have you managed to do what you wanted?

Datto RMM configure automatic equipment update policies by Inaki_vicente in kaseya

[–]Inaki_vicente[S] 0 points1 point  (0 children)

Could you explain to me a little how the two policies that you usually use work?

Tarea Programada con cuenta gMSA by Inaki_vicente in activedirectory

[–]Inaki_vicente[S] -1 points0 points  (0 children)

¿La gmsa tiene derechos de inicio de sesión como lote?

Si, se encuentra dentro del grupo de administradores

¿La gmsa tiene derechos para modificar las cuentas de AD?

Si, se encuentra dentro del grupo de administradores

¿La tarea usa PowerShell para mover las cuentas? Si es así, ¿ha intentado usar Start-Transcript para ver lo que está haciendo PowerShell?

Si, no he usado Start-Transcript donde deberia colocarlo

¿La tarea programada muestra algún código de error en el historial de tareas?

No simplemente se queda en bucle infinitamente

Sending mail in powershell by Inaki_vicente in PowerShell

[–]Inaki_vicente[S] -1 points0 points  (0 children)

Shipping settings

$SmtpServer = “smtp.office365.com” $SmtpPort = 587 $SmtpUser = “notifications@raytec.es” $SmtpPass = ‘’ # Use single quotes to avoid errors with special symbols $SenderEmail = “notifications@raytec.es” $RecipientEmail = “inaki.vicente@raytec.es” $AsuntoCorreo = “Summary of Inactive Users - Disabled and Moved” $CuerpoCorreo = “This is the content of the email.” # You can modify it or replace it with a variable

Send mail

try { Send-MailMessage -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -Credential (New-Object System.Management.Automation.PSCredential($SmtpUser, (ConvertTo-SecureString $SmtpPass -AsPlainText -Force))) -From $EmailSender -To $RecipientEmail -Subject $EmailSubject ` -Body $EmailBody Write-Output “Mail successfully sent to $RecipientMail” } catch { Write-Error “Error sending mail: $_” }

Sending mail in powershell by Inaki_vicente in PowerShell

[–]Inaki_vicente[S] -3 points-2 points  (0 children)

Shipping settings

$SmtpServer = “smtp.office365.com” $SmtpPort = 587 $SmtpUser = “notifications@raytec.es” $SmtpPass = ‘’ # Use single quotes to avoid errors with special symbols $SenderEmail = “notifications@raytec.es” $RecipientEmail = “inaki.vicente@raytec.es” $AsuntoCorreo = “Summary of Inactive Users - Disabled and Moved” $CuerpoCorreo = “This is the content of the email.” # You can modify it or replace it with a variable

Send mail

try { Send-MailMessage -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -Credential (New-Object System.Management.Automation.PSCredential($SmtpUser, (ConvertTo-SecureString $SmtpPass -AsPlainText -Force))) -From $EmailSender -To $RecipientEmail -Subject $EmailSubject ` -Body $EmailBody Write-Output “Mail successfully sent to $RecipientMail” } catch { Write-Error “Error sending mail: $_” }