'***************************************************** ' 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