Bonsoir,
La réponse est simple en effet, le vbs permet de créer facilement des raccourcis dans le bureau, il suffit après de lancer ce script par une GPO.
Code:
'////////////////////////////////////////////////////////////////
'Génération de raccourcis vers P: et Q: dans le bureau
'(C) KoXo Dev. 2006-2012
Shortcut GetDesktop & "\Espace personnel.lnk","Espace personnel","CTRL+ALT+SHIFT+H","P:"
Shortcut GetDesktop & "\Espace de groupe.lnk","Espace de groupe","CTRL+ALT+SHIFT+G","Q:"
'////////////////////////////////////////////////////////////////
'// Get "Desktop"
Function GetDesktop()
Dim objShell
Set objShell=CreateObject("WScript.Shell")
GetDesktop=objShell.SpecialFolders("Desktop")
End Function
'////////////////////////////////////////////////////////////////
'// Make shortcut
Function Shortcut(FilePath,Description,HotKey,TargetPath)
Dim objLink, objShell
Set objShell=CreateObject("WScript.Shell")
Set objLink=objShell.CreateShortcut(FilePath)
objLink.Description=Description
objLink.HotKey=Hotkey
objLink.TargetPath=TargetPath
objLink.WindowStyle=3
objLink.Save
End Function
'////////////////////////////////////////////////////////////////
Il est possible de cacher "Mes Documents", "Favoris Réseau" par GPO...
Cdt.
Le support