ho creato uno script con VBScript che a seconda del mese in cui sei ti dice
il mese corrente è Nome_Del_Mese

ecco il codice

codice:
if month(Now())=1 then
lol=msgbox("Il mese corrente è Gennaio",20,"Mese Corrente")
end if 
if month(Now())=2 then 
lol=msgbox("Il mese corrente è Febbraio",20,"Mese Corrente") 
end if
if month(Now())=3 then 
lol=msgbox("Il mese corrente è Marzo",20,"Mese Corrente")
end if 
if month(Now())=4 then 
lol=msgbox("Il mese corrente è Aprile",20,"Mese Corrente")
end if 
if month(Now())=5 then 
lol=msgbox("Il mese corrente è Maggio",20,"Mese Corrente") 
end if 
if month(Now())=6 then 
lol=msgbox("Il mese corrente è Giugno",20,"Mese Corrente") 
end if 
if month(Now())=7 then 
lol=msgbox("Il mese corrente è Luglio",20,"Mese Corrente") 
end if 
if month(Now())=8 then 
lol=msgbox("Il mese corrente è Agosto",20,"Mese Corrente") 
end if 
if month(Now())=9 then 
lol=msgbox("Il mese corrente è Settembre",20,"Mese Corrente") 
end if 
if month(Now())=10 then 
lol=msgbox("Il mese corrente è Ottobre",20,"Mese Corrente") 
end if 
if month(Now())=11 then 
lol=msgbox("Il mese corrente è Novembre",20,"Mese Corrente") 
end if if month(Now())=12 then 
lol=msgbox("Il mese corrente è Dicembre",20,"Mese Corrente") 
end if
è il mio 2° script VBScript in vita mia e vorrei che lo valutaste.