Devuelve la ruta completa de acceso al destino del objeto acceso directo.
objeto.FullName
La propiedad FullName contiene un valor de cadena de sólo lectura que indica la ruta completa de acceso al destino del acceso directo.
El siguiente código devuelve la ruta completa de acceso a un acceso directo.
set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oShellLink = WshShell.CreateShortcut(strDesktop & "\Acceso directo a secuencia de comandos.lnk")
oShellLink.TargetPath = WScript.ScriptFullName
oShellLink.WindowStyle = 1
oShellLink.Hotkey = "CTRL+SHIFT+F"
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "Acceso directo a secuencia de comandos"
oShellLink.WorkingDirectory = strDesktop
oShellLink.Save
WScript.Echo oShellLink.FullName
var WshShell = new ActiveXObject("WScript.Shell");
strDesktop = WshShell.SpecialFolders("Desktop");
var oShellLink = WshShell.CreateShortcut(strDesktop + "\\Acceso directo a secuencia de comandos.lnk");
oShellLink.TargetPath = WScript.ScriptFullName;
oShellLink.WindowStyle = 1;
oShellLink.Hotkey = "CTRL+SHIFT+F";
oShellLink.IconLocation = "notepad.exe, 0";
oShellLink.Description = "Acceso directo a secuencia de comandos";
oShellLink.WorkingDirectory = strDesktop;
oShellLink.Save();
WScript.Echo(oShellLink.FullName)
;
Propiedad Path | Objeto WScript | Objeto WshShortcut | Objeto WshUrlShortcut
Ayuda de Javascript y Vbscript para Javascripts.astalaweb.com. |