Establece o identifica los argumentos para un acceso directo.
objeto.Arguments
La propiedad Arguments devuelve una cadena.
El siguiente código establece la propiedad Arguments.
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+Alt+f"
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "Acceso directo a secuencia de comandos"
oShellLink.WorkingDirectory = strDesktop
oShellLink.Arguments
= "C:\miArchivo.txt"
oShellLink.Save
var WshShell = WScript.CreateObject("WScript.Shell");
var 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+Alt+f";
oShellLink.IconLocation = "notepad.exe, 0";
oShellLink.Description = "Acceso directo a secuencia de comandos";
oShellLink.WorkingDirectory = strDesktop;
oShellLink.Arguments
= "C:\\miArchivo.txt";
oShellLink.Save();
Objeto WshShortcut | Objeto WshShell | Método CreateShortcut
Ayuda de Javascript y Vbscript para Javascripts.astalaweb.com. |