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

3,561 Comments

  1. В сети «Narkology» вы получите всестороннюю поддержку на пути к полному освобождению от алкогольной и наркотической зависимости. Мы используем передовые методы дистанционного мониторинга состояния, информационно-просветительские программы и индивидуальные занятия с психологом. Экстренные консультации и круглосуточная связь с медицинскими специалистами помогут справиться с любыми трудностями и обрести новую активность без вредных привычек. Мы предоставляем актуальную информацию о методах детоксикации, замещающих терапиях и профилактике срывов.
    Получить дополнительные сведения – [url=https://narcologiya.info/vliyanie-na-zdorove/vliyanie-organizma-na-alkogol.html]влияние алкоголя на человека[/url]

  2. заказать seo сайта москва [url=https://astv.ru/news/materials/prodvizhenie-sajtov-i-internet-magazinov-v-moskve-kak-uvelichit-potok-bez-lishnih-zatrat]заказать seo сайта москва[/url]

  3. https://betmexico.cat/
    La plataforma Betmexico resulta ser un innovador sitio de apuestas digital y operador de apuestas creado especificamente para el publico mexicano, el cual funciona con licencia oficial y proporciona un recorrido completo tanto desde el celular como por medio de la computadora.

  4. В статье раскрываются ключевые принципы профессионального лечения организма, которые помогают восстановить здоровье и вернуть гармонию жизни. Ознакомиться с отчётом – https://otvet.mail.ru/question/268918687

  5. Сразу после вызова нарколог прибывает на дом для проведения тщательного первичного осмотра. На этом этапе специалист собирает краткий анамнез, измеряет жизненно важные показатели – пульс, артериальное давление, температуру – и оценивает степень алкогольной интоксикации. Полученные данные служат основой для составления индивидуального плана лечения, позволяющего подобрать оптимальные методы детоксикации.
    Исследовать вопрос подробнее – http://vyvod-iz-zapoya-yaroslavl00.ru/

Leave a Reply

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