Ir ao conteúdo

Verificar se um processo está execução e notificar via e-mail no Windows

Olá,

Recentemente meu primo precisou um Visual Basic Script que verifica se um processo está executando e caso esteja envie um e-mail. Ele me pediu ajuda para criar este script e eu resolvi ajudar.

Visual Basic Script para verificação de processo em execução e notificação via E-mail.

Verificar se um processo está em execução com Visual Basic Script e mostrar uma janela se estiver.
[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]

Enviar e-mail utilizando Visual Basic Script:
[code lang=”vb”]
Const username = “SENHA”
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]

Estes dois scripts foram mesclados para realizar o que precisávamos.

Abraços,
Matheus

Referencias:
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

Publicado emwindows

11.206 Comentários

  1. Peterjaw Peterjaw

    Задержка усиливает риск судорог, делирия, аритмий и травм. Эти маркеры не требуют медицинского образования — их легко распознать. Если совпадает хотя бы один пункт ниже, свяжитесь с нами 24/7: мы подскажем безопасный формат старта и подготовим пространство к визиту.
    Углубиться в тему – [url=https://narkologicheskaya-klinika-ryazan14.ru/]частная наркологическая клиника[/url]

  2. fortune_yjet fortune_yjet

    I have been using this casino for about four months now, so I have enough sessions behind me to judge. Came across it while comparing withdrawal times, mainly because my old casino kept stalling cashouts. The True Fortune lobby is larger than I expected, although in practice I stick to a dozen or so.

    Software comes from the usual names: Pragmatic Play, NetEnt, Play’n GO, and a decent chunk of Big Time Gaming. Gates of Olympus and Sweet Bonanza are there of course, although the Nolimit slots suit me better. The live section is Evolution, so Crazy Time, Lightning Roulette and the rest of the game shows. English speaking dealers around the clock, although the ?1 tables can be crowded after nine.

    The welcome offer is nothing extraordinary but fair: a first deposit match with a batch of free spins, handed out across the first week. The playthrough is 35x, so nothing predatory but no gift either. Up to date bonus terms are worth checking on [url=https://amberliadan.com]true fortune[/url] before you deposit. They run the odd free bonus too, although you will not retire on it.

    Opening an account took a few minutes, you can start from a tenner. Visa, Mastercard and the usual wallets are accepted, they also take crypto. Money reached the wallet within a day, bank transfers ran longer, two to three days. KYC was the one sticking point – my first upload got rejected, and after that it was fine.

    On the phone I just use the browser and it does the job fine. Pages load fast, but streaming tables want a solid connection. Support answers in English on chat and it reads like a person, not a script, response was quick enough. Regulation is Curacao based which is not the UK regulator, so play accordingly. What matters is that payouts have never been refused.

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *