Windows Script Host  

Propiedad Arguments (Objeto Shortcut)

Establece o identifica los argumentos para un acceso directo.

objeto.Arguments

Argumentos

objeto
Objeto WshShortcut.

Comentarios

La propiedad Arguments devuelve una cadena.

Ejemplo

El siguiente código establece la propiedad Arguments.

[VBScript]
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
[JScript]
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();

Consulte también

Objeto WshShortcut | Objeto WshShell | Método CreateShortcut

Ayuda de Javascript y Vbscript para Javascripts.astalaweb.com.