/etc/samba/netlogon/install/shortcut.vbs is in debian-edu-config 1.702.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | ' VBScript.
Dim Shell, DesktopPath, URL
Set Shell = CreateObject("WScript.Shell")
DesktopPath = Shell.SpecialFolders("Desktop")
Set URL1 = Shell.CreateShortcut(DesktopPath & "\My Home.LNK")
URL1.TargetPath = "H:\"
URL1.Save
|