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
Hi there! I could have sworn I’ve been to your blog
before but after looking at a few of the articles I realized it’s new to me.
Regardless, I’m definitely happy I found it and I’ll be book-marking it and checking back frequently!
Гидроизоляция подвалов [url=https://gidroizolyacziya-podvalov-2.ru/]Гидроизоляция подвалов[/url] .
В Воронеже капельная терапия применяется в ситуациях, когда симптомы похмелья выражены и не проходят самостоятельно, особенно после запоя или в запое. Врач проводит консультацию, оценивает состояние пациента, степень интоксикации и принимает решение о проведении процедуры. Такой подход позволяет обеспечить безопасное и эффективное лечение при алкоголизме и других формах зависимости. При необходимости можно оставить заявку, уточнить цены или получить помощь бесплатно на первичном этапе.
Подробнее можно узнать тут – [url=https://kapelnicza-ot-pokhmelya-voronezh-5.ru/]капельница от похмелья вызов на дом в воронеже[/url]
Помощь на дому рассматривают при состояниях, которые сопровождаются заметным ухудшением самочувствия после алкоголя. Обычно это запой на протяжении нескольких дней, тяжелое похмелье, выраженная слабость, бессонница, тревога, дрожь в руках, сухость во рту, отсутствие аппетита, тошнота, раздражительность и ощущение истощения. В подобных случаях врачебный осмотр нужен для того, чтобы оценить тяжесть состояния и определить, безопасен ли домашний формат в конкретной ситуации.
Узнать больше – [url=https://narkolog-na-dom-moskva-18.ru/]врач нарколог на дом москва[/url]
Наркологическая помощь в Воронеже: срочный выезд нарколога, капельницы и лечение зависимостей в наркологической клинике «Клиника Плюс».
Изучить вопрос глубже – [url=https://narkologicheskaya-pomoshh-voronezh-1.ru/]наркологическая помощь анонимно[/url]