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

9,603 Comments

  1. Балашиха, всем привет Ситуация критическая Жена в истерике Нужна срочная помощь Короче, врачи приехали и поставили систему — наркология балашиха круглосуточно Через пару часов человек пришёл в себя В общем, жмите чтобы сохранить — частная наркологическая клиника [url=https://zapoj.narkologicheskaya-pomoshh-balashikha.ru]частная наркологическая клиника[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации

  2. Люди помогите советом Брат снова сорвался Соседи стучат в стену Таблетки не помогают Короче, единственное что вытащило из запоя — вывод из запоя на дому люберцы качественно Поставили капельницу с детоксикационным раствором В общем, жмите чтобы сохранить — вывод из запоя на дому недорого люберцы [url=https://reabilitacziya.vyvod-iz-zapoya-na-domu-moskva.ru]вывод из запоя на дому недорого люберцы[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации

  3. Obstawiam tu od jakichs trzech miesiecy, glownie jak mam wolne pol godziny, wiec chyba moge powiedziec od siebie. Zapisalem sie przez znajomego, bo chcialem znalezc kasyna z sensownym livem, a nie kolejnej sieczki z dziesiecioma grami.

    Automatow jest masa — podobno kolo 5 tys. pozycji, no ale szczerze i tak siedze na trzech-czterech tytulach. Pragmatic Play ma tu Gates of Olympus i Sweet Bonanze, sa tez Book of Dead od Play’n GO, troche NetEnta, Yggdrasil, plus Big Time Gaming jak ktos lubi megaways. Live stoi na Evolution — zywi krupierzy, Crazy Time i ruletki laduje sie szybko na komorce tez.

    Start wyglada przyzwoicie: 100% do jakichs 1500 zl + 150 free spinow, widzialem tez cos bez depozytu na 50 obrotow. Tylko uwazajcie na wymagany obrot — 40x potrafi zjesc caly bonus, ja za pierwszym razem przepalilem to. Swieze kody promocyjne sa zebrane na [url=https://888starz-opinie.com]888starz bangladesh[/url] bo sie zmieniaja co miesiac.

    Rejestracja trwa dwie minuty, min. depozyt jest niska, kolo 20 zl. Wplacam karta — kasa na e-portfel przyszla w niecale pol godziny, na karte czekalem dwa dni. Jest opcja z krypto, ale tego nie testowalem.

    Co mnie wkurzylo: KYC. Poprosili o dokumenty dopiero przy pierwszej wyplacie i czekalem prawie dobe. Support po polsku z lekkim opoznieniem, curacao — kwestia legalnosci w PL sami wiecie jak jest. Aplikacja na androida chodzi szybciej niz przegladarka, tyle ze nie ma jej w sklepie. Tyle ode mnie — gram dalej, bez fajerwerkow.

Leave a Reply

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