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

1,958 Comments

  1. Эта информационная статья содержит полезные факты, советы и рекомендации, которые помогут вам быть в курсе последних тенденций и изменений в выбранной области. Материал составлен так, чтобы быть полезным и понятным каждому.
    А что дальше? – https://fepropaz.com/tech-educacion-ambiental

  2. Joshuamagig Joshuamagig

    Для оценки уровня учреждения важно понимать, какие конкретно методики в нём используются. Ниже приведён обобщённый обзор подходов в современных наркологических клиниках региона:
    Ознакомиться с деталями – [url=https://lechenie-narkomanii-vladimir10.ru/]центр лечения наркомании владимир[/url]

  3. TrentDaf TrentDaf

    Основой терапии является сочетание медицинских, психотерапевтических и социальных методов. Такой подход обеспечивает устранение не только физиологических последствий зависимости, но и её психологических причин. Врачи клиники разрабатывают индивидуальный план лечения, в котором учитываются стадия заболевания, общее состояние организма и личностные особенности пациента. Работа специалистов направлена на восстановление работы центральной нервной системы, обменных процессов и эмоционального баланса.
    Получить дополнительную информацию – [url=https://narkologicheskaya-klinika-v-kazani16.ru/]частная наркологическая клиника[/url]

  4. Hello, everything is going well here and ofcourse every one is sharing facts, that’s actually
    good, keep up writing.

  5. Stephenadavy Stephenadavy

    Даже при амбулаторном ведении мы следуем принципам доказательной медицины: пошаговая титрация, ясные коридоры безопасности, пересмотр решений строго по показателям. Мы объясняем, на что ориентироваться в первые часы после визита: диапазоны давления и пульса, ориентиры самочувствия, правила питания и питья, поведенческие «якоря» на случай, если тревога неожиданно вырастет вечером. Благодаря этому пациент и его семья не остаются один на один с вопросами; наоборот — у них есть карта маршрута и контакты людей, готовых включиться в течение минуты.
    Подробнее можно узнать тут – [url=https://narcolog-na-dom-krasnodar14.ru/]нарколог на дом краснодар[/url]

Leave a Reply

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