bonjour,
comment faire pour deployer par script les raccourci bureau style
mes documents ordinateur et word outlook et excel
avec ceux-si
merci d'avance de vos réponseCode:
1
2
3
4
5
6
7
8
9
10 Dim Wsh As New WshShell DesktopPath = Wsh.SpecialFolders("Desktop") Set Shortcut = Wsh.CreateShortcut(DesktopPath & "\Test.lnk") With Shortcut .TargetPath = App.EXEName .Description = "Mon Programme" .WindowStyle = 4 .Save End With