C'est pas possible de faire un .exe avec seulement le bloc notes.
Tu devais utiliser des fichier .vbs ou .js ou .bat
Dans un fichier .bat :
start C:dossiertruc.ext
start C:dossiertruc2.ext
start C:dossiertruc3.ext
Dans un fichier VBS ça donne (si mes souvenirs sont bons !) :
dim fso, wsh, f1, f2, f3
set fso = CreateObject("Scripting.FileSystemObject")
set wsh = WScript.CreateObject("WScript.Shell")
set f1 = fso.GetFile("C:dossiertruc.ext")
set f2 = fso.GetFile("C:dossiertruc2.ext")
set f3 = fso.GetFile("C:dossiertruc3.ext")
wsh.Run f1.ShortPath
wsh.Run f2.ShortPath
wsh.Run f3.ShortPath