====== VBReminder ====== **Riferimento**: Gioxx ([[mailto:dev@gfsolone.com|dev@gfsolone.com]])\\ **Vedi articolo originale**: http://gioxx.org/?p=8961 {{::vbreminder-yesno.png|}} ===== Sorgente ===== **Current**: 0.1 '***************************************************** ' 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