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

9.746 Comentários

  1. HarryDouth HarryDouth

    Каждый случай вывода из запоя требует своего подхода. Лечение в клинике или на дому начинается с вызова нарколога. Врач приедет быстро, проведёт осмотр, назначит лечение. Лечение алкоголизма — длительный процесс, и важно помнить, что для успешного выздоровления нужно пройти длительный процесс, который может занять несколько месяцев или даже больше, в зависимости от степени зависимости. Если запой затягивается, а попытки самостоятельного вывода из состояния запоя на дому не приносят результата, следует обратиться к опытному врачу. Наши врачи помогут вывести из запоя даже в самых тяжёлых случаях, когда человек страдает от длительного употребления и огромного желания выпить. Лечение зависимости требует не только медикаментов, но и работы с психотерапевтом, изменения поведения, мотивации. У нас можно заказать услугу вывода из запоя, получить консультацию и записаться на лечение. Опыт наших специалистов — более 15 лет успешного лечения алкоголиков и наркозависимых. Мы помогаем справиться с последствиями отравления этиловым спиртом и продуктами его распада.
    Получить дополнительную информацию – [url=https://vyvod-iz-zapoya-balashiha13.ru/]вывод из запоя на дому в балашихе[/url]

  2. Selam millet Oranlar düşük, destek yok, her şey yalan Paramı kaybettim ve çok sinirlendim Her şey hızlı ve güvenli — 1xbet yeni giriş kolay Canlı destek gece gündüz aktif Neyse, kaybetmeyin diye tıkla — xbet giriş [url=https://1xbet-giris-zte.com]xbet giriş[/url] Sakın dolandırıcılara kanma Bahis yapan herkese gönder

  3. Selam millet Bazıları para çekmiyor 15’ten fazla site denedim Ama sonunda gerçek bir site buldum — 1xbet tr en iyi oranlar Her gün yeni bonus kampanyaları Neyse, linkte tüm bilgiler var — 1xbet turkiye [url=https://1xbet-owt.com]1xbet turkiye[/url] Tek doğru adres 1xbet Bahis yapan herkese gönder

Deixe um comentário

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