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,528 Comments

  1. Herkes merhaba Oranlar çok düşük, destek yok, sahtekar dolu 15’ten fazla site denedim Her şey hızlı ve güvenli — 1xbet tr en iyi oranlar Canlı destek gece gündüz aktif Neyse, kendiniz kontrol edin — 1xbet turkey [url=https://1xbet-owt.com]1xbet turkey[/url] Sakın dolandırıcılara kanma Bahis yapan herkese gönder

  2. EarleRuh EarleRuh

    Своевременное выведение из запоя позволяет быстро стабилизировать состояние, улучшить общее самочувствие и ускорить возвращение к нормальной жизни. В частной клинике лечение проводится анонимно, без постановки на учет, без разглашения персональных данных и без передачи информации окружающим. Пациент или его родственник может сделать звонок, оставить заявку, записаться на консультацию, вызвать врача на дому, уточнить цены, адрес, режим работы, условия оплаты, возможность рассрочки и формат стационарного лечения. Нажимая на кнопку отправить, вы даете согласие на обработку персональных данных.
    Разобраться лучше – [url=https://vyvod-iz-zapoya-v-novorossijske1.ru/]вывод из запоя капельница новороссийск[/url]

  3. Selam millet Bazıları ödeme yapmıyor 15’ten fazla site denedim Ama sonunda bu siteyi buldum — 1xbet güncel adres tıkla Çekimler anında onaylanıyor Neyse, kendiniz kontrol edin — 1xbet resmi giriş [url=https://1xbet-giris-uhk.com]1xbet resmi giriş[/url] Sakın dolandırıcılara kanma Bahis yapan herkese gönder

  4. Beyler bahis severler Ya siteler kapanıyor ya da erişim engelleniyor Yıllardır bahis oynuyorum Sonunda dürüst bir site buldum — 1xbet türkiye lider bahis Çekim işlemleri dakikalar içinde Kısacası, kaybolmasın diye tıkla — 1xbet yeni adresi [url=https://1xbet-giris-cfl.com]1xbet yeni adresi[/url] Sakın sahte sitelere kanma Bahis yapan herkese yolla

  5. Узнать больше [url=https://vodkabet-playvodkabet.com/]vodkabet прямо сейчас[/url]

Leave a Reply

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