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


Par O.Cédric
Sur www.octetmalin.net

Article publié le:
14/10/2011 10:13





Cette page vous à plus?

Dîtes que vous l'aimez en cliquant sur le bouton Facebook.