Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Using PDQ Deploy to alert me when PC's log back onto the network

Hello,

I love PDQ Deploy!

Is there a way to use PDQ Deploy to alert me when machines join the domain?

I have users who frequently travel and often times I spend too much time calling/email to find out when they will be back on the network.

I'm wondering if I can configure a heartbeat deployment to alert via me email when specific devices (Mac addresses or IP/s) are back on the network.

Thank you

0

Comments

1 comment
Date Votes
  • There's nothing built in, but you could build a package with a PowerShell step. It's been a while since I've used Send-MailMessage, but I think something like this should work:

    $EmailParameters = @{
    "To" = "you@yourdomain.tld";
    "From" = "PDQDeploy@yourdomain.tld";
    "Subject" = "$env:COMPUTERNAME is back online";
    "Body" = "YAY!";
    "SmtpServer" = "email.yourdmain.tld";
    }

    Send-MailMessage @EmailParameters
    0