Bonjour, j'utilise un script en vbs pour créer un raccourci mais j'aimerais associer une image a ce raccourci (vous voyer ce que je veut dire ?)

voila le script
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
Dim Shell, DesktopPath, LNK
Set Shell = CreateObject("WScript.Shell")
DesktopPath = Shell.SpecialFolders("Desktop")
Set lnk = Shell.CreateShortcut(DesktopPath & "\Tchat.lnk") 
lnk.TargetPath = "C:\Users\Phillippe\tchat.bat"
lnk.Save
Merci de votre aide