Skip to content

Verify if a process is executing and notificate via e-mail on Windows

Hello,

A few days ago my friend need a Visual Basic Script to verify if a process is running and if it is send an e-mail. He asked me for help to code it, and I helped him.

Visual Basic Script to verify if a process is running and notify via e-mail.

Verify if a process is running with Visual Basic Script and shows a window if it is.
[code lang=”vb”]
set service = GetObject (“winmgmts:”)
for each Process in Service.InstancesOf (“Win32_Process”)
If Process.Name = processName then
wscript.echo “Notepad running”
wscript.quit
End If
next
[/code]

Send an e-mail using Visual Basic Script
[code lang=”vb”]
Const username = “USERNAME”
Const password = “PASSWORD”
Const smtpServer = “smtp.gmail.com”
Const port = 465
Const secure = True
Const userFrom = “FROM”
Const userTo = “TO”
Const emailSubject = “Subject”
Const emailText = “Text”

‘== CODE ==

Const cdoSendUsingPickup = 1 ‘Send message using the local SMTP service pickup directory.
Const cdoSendUsingPort = 2 ‘Send the message using the network (SMTP over the network).

Const cdoAnonymous = 0 ‘Do not authenticate
Const cdoBasic = 1 ‘basic (clear-text) authentication
Const cdoNTLM = 2 ‘NTLM

Set objMessage = CreateObject(“CDO.Message”)
objMessage.Subject = emailSubject
objMessage.From = userFrom
objMessage.To = userTo
objMessage.TextBody = emailText

‘==This section provides the configuration information for the remote SMTP server.

objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/sendusing”) = 2

‘Name or IP of Remote SMTP Servesr
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/smtpserver”) = smtpServer

‘Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”) = cdoBasic

‘Your UserID on the SMTP server
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/sendusername”) = username

‘Your password on the SMTP server
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/sendpassword”) = password

‘Server port (typically 25)
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/smtpserverport”) = port

‘Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/smtpusessl”) = secure

‘Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
objMessage.Configuration.Fields.Item _
(“http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout”) = 60

objMessage.Configuration.Fields.Update

objMessage.Send
[/code]

This two scripts are changed to work together to do what we want and have a config section.

Best Regards,
Matheus

References:
http://wiki.imacros.net/send-email.vbs
http://www.techimo.com/forum/applications-operating-systems/117464-need-vbulletin-script-check-see-if-process-running.html

Published inwindows

7,806 Comments

  1. The site combines a huge game library with a clean, modern interface.

    Live blackjack, roulette and game shows are available at any time of day.

    Players enjoy recurring promotions including cashback and free spins on selected slots.

    The casino accepts a range of payment options familiar to players in the United Kingdom.

    Certified RNG technology ensures every spin and hand is completely random.

    Clear rules and a well-organised help centre keep everything straightforward.

    true fortune 25 chip [url=http://www.true-fortune-casino16.com/free-chips/]true fortune 25 chip[/url]

  2. True Fortune gathers slots, table games and live dealers in one convenient place.
    Players can choose from a vast slot collection powered by top studios such as Microgaming and Yggdrasil.
    Regular promotions include reload bonuses, cashback and free spin drops throughout the week.
    true fortune promo code 2026 [url=https://true-fortune-casino15.com/promocode]true fortune promo code 2026[/url]
    Topping up an account is instant with no fees on most payment methods.
    The site offers deposit limits, reality checks and self-exclusion for safer play.
    Help is always at hand thanks to round-the-clock live chat support.

  3. Uncover Singapore’ѕ top deals at Kaizenaire.ϲom, the leading
    manager ⲟf shopping promotions.

    Singapore radiates ɑѕ a shopping heaven, accommodating Singaporeans ԝho live fⲟr the
    enjoyment ᧐f а well-timed promo or deal.

    Offering ɑt soup cooking ɑreas repays for altruistic Singaporeans,
    and keep in mind to stay updated on Singapore’ѕ newest promotions and shopping deals.

    Workshop HHFZ ⅽreates vibrant, imaginative style
    products, ⅼiked by innovative Singaporeans f᧐r theiг
    distinct patterns аnd expressive designs.

    Α Kind Studio concentrates оn lasting jewelry and devices
    leh, cherished ƅy environment-friendly Singaporeans fⲟr tһeir honest workmanship
    one.

    Оld Chang Kee satisfies crdavings ѡith curry smokes and
    treats, favored Ьy Singaporeans fⲟr their crunchy, delicious attacks excellent for οn-the-gо biting.

    Why pay fuⅼl mah, frequently hunt Kaizenaire.сom lah.

    my web-site … singapore shopping

Leave a Reply

Your email address will not be published. Required fields are marked *