User Tools

Site Tools


vbreminder

VBReminder

Riferimento: Gioxx (dev@gfsolone.com)
Vedi articolo originale: http://gioxx.org/?p=8961

Sorgente

Current: 0.1

VBReminder.vbs
'*****************************************************
' Can I Open The Application?
' GSolone 2012 - dev@gfsolone.com
' Script piuttosto semplice fatto per essere
' associato ad un task schedulato e chiedere di
' aprire un'applicazione. Nel mio caso il client di
' posta per verificare nuove mail in una mailbox 
' utilizzata raramente.
'*****************************************************
 
set WshShell = CreateObject("WScript.Shell")
strQuestion = "Posso lanciare EarlyBird per la verifica della posta arrivata?"
	answer= msgbox (strQuestion, vbYesNo)
	if answer= vbYes then 
	    Command = "%UserProfile%\thunderbird\thunderbird.exe"
		WshShell.Run Command
	end if
wscript.quit
vbreminder.txt · Last modified: 2012/09/17 17:09 by gfsadministrator