Windows
Scripts
VBScript
Créer un raccourci sur le bureau
Pour : Windows
Voici un Script pour vous permettre de créer un raccourci sur votre bureau.
Dans notre exemple nous allons créer un raccourci du nom de "Octetmalin.net" pointant sur page web du site à cette adresse "www.octetmalin.net".
Script VBS:
Dim Shell, DesktopPath, URL Set Shell = CreateObject("WScript.Shell") DesktopPath = Shell.SpecialFolders("Desktop") Set URL = Shell.CreateShortcut(DesktopPath & "\Octetmalin.net.URL") URL.TargetPath = "www.octetmalin.net" URL.Save