Windows shell commands
This module provides procedures related to the Windows shell.
The Windows shell identifies objects in its namespace, including non-file objects such as Control Panel applets and printers, using an item ID. Similar to a file system path, an object resides within the shell namespace object hierarchy and the entire path to the object is defined by item identifier list.
The command get_shell_folder returns the path to the directory specified by a Windows Shell CSIDL.
The command shell_execute allows invocation of any operation of a file or resource as from Windows Explorer, for example, opening a URL in a browser, searching a directory, starting a program and so on.
The command recycle_file sends the specified file to the Windows Recycle Bin.
The command shell_object_properties_dialog displays the property page dialogs for the specified shell objects.
The commands OpenThemeData, CloseThemeData, IsThemeActive, IsAppThemed, GetCurrentThemeName, GetThemeColor and GetThemeFont provide access to information related to the current theme if the underlying platform supports themes. See the Windows SDK for documentation about these. TwapiThemeDefineValue is a utility function that translates various theme-related symbols described in the SDk to their integer values to be passed to the above functions.
The commands read_shortcut and write_shortcut allow reading and writing of shell shortcuts.
The commands read_url_shortcut and write_url_shortcut allow reading and writing of URL shortcuts. A URL shortcut can be invoked by invoke_url_shortcut.
-allowui | Allows user interaction. |
-hwin HWIN | Specifies the parent window handle for user interaction. This is ignored if -verb is specified or if -allowui is not specified. |
-verb VERB | Specifies the verb to invoke on the shortcut, for example open, edit etc. |
-args | Command line arguments for the link. |
-desc | Description of the shortcut. This is the string that is visible to the user as the label of the shortcut. |
-hotkey | The hotkey associated with the shortcut. This is an integer as described in the documentation of the IShellLink::Hotkey command in the Platform SDK. |
-iconindex | The index of the icon within the icon file specifies by the -iconpath field. |
-iconpath | The path to the file from which the icon for the shortcut is to be taken. |
-idl | The item identifier list for the object pointed to by the shortcut. |
-path | The file system path in the case that the shortcut points to a file. |
-showcmd | The initial state of the window. |
-workdir | The working directory of the shortcut. |
-hwin HWIN | Identifies the window to be used as the parent of the dialog box that pops up to ask the user for more information when the shortcut cannot be resolved. |
-install | Calls the MSI installer if the shortcut is an advertised shortcut and the target has not been installed yet. |
-nolinkinfo | Disables distributed link tracking. |
-nosearch | Normally, the command will search for the target if it cannot be found in the location pointed to by the shortcut. Specifying this option disables this search. |
-notrack | Specifies that distributed link tracking to be not used. |
-noui | Specifies that no dialog box should be displayed even if the link cannot be resolved. |
-rawpath | Normally, the command resolves any embedded environment variables contained in the returned -path field and verifies the path exists. Specifying this option disables both these features and returns raw path contained in the shortcut. |
-shortnames | The path contained in the returned -path field uses short name (8.3) format. |
-timeout TIMEOUT | Specifies the timeout, in milliseconds, for resolving the link. This option has no effect unless the -noui is also specified. |
-uncpath | The path contained in the returned -path field is in UNC format. |
-confirm BOOLEAN | If true, a confirmation dialog is displayed to the user. Default is false. |
-showerror BOOLEAN | If true, an error dialog is displayed to the user in case of errors. Default is false. |
-asyncok BOOLEAN | TBD. |
-class BOOLEAN | TBD. |
-connect BOOLEAN | TBD. |
-dir PATH | Path of the working directory. Defaults to the current directory. |
-getprocesshandle BOOLEAN | Normally, the command returns an empty string. If this option is specified, the command returns a handle to the process, if any, that was created by the shell to handle the request. If no such process was required to be created, or was already running, an empty string is returned. If a non-empty handle is returned, it must be closed by calling close_handle. |
-hicon HANDLE | TBD. |
-hkeyclass BOOLEAN | TBD. |
-hmonitor HANDLE | Specifies a handle to a monitor on multiple-monitor systems. Cannot be used with the -hicon option. |
-hotkey BOOLEAN | TBD. |
-hwin BOOLEAN | Specifies the parent window handle, if any, for dialogs that are displayed. By default, no parent window is specified. |
-idl BOOLEAN | |
-invokeidlist BOOLEAN | Normally, the shell will look up the registry for the list of verbs applicable for a file. If this option is specified as true, the shell will look up verbs dynamically added by shell extensions. See examples below. Default is false. |
-logusage BOOLEAN | If true, the invocation will add to the counter maintained by Windows for determining the applications that show up on the Start menu. Default is false. Requires Windows XP or later and will generate an error on earlier versions of Windows. |
-noconsole BOOLEAN | If true, the current process is not used for any processes created for the operation. A new console window is created if required. Default is false. |
-noui BOOLEAN | If true, no user interaction, such as error display is done. Default is false. |
-nozonechecks BOOLEAN | TBD. |
-params STRING | Contains the parameter string to be passed to the invoked application. Use standard Windows syntax for separating parameters using spaces and quotes. |
-path STRING | Path of the file or object on which the action is to be invoked. If unspecified, defaults to the current directory. |
-show STRING | Specifies how the application invoking the action is to be displayed. Must be one of hide, shownormal, normal, showminimized, showmaximized, maximize, shownoactivate, show, minimize, showminnoactive, showna, restore, showdefault, or forceminimize. See the Windows SDK documentation of ShellExecute for details. Default is normal. |
-substenv BOOLEAN | If true, any environment variables present in the values of the -path and -dir options are expanded. Default is false. |
-unicode BOOLEAN | TBD. |
-verb ACTION | Specifies the action to invoke on the resource, for example open, edit etc. See the examples below. |
-wait BOOLEAN | Wait for the action to complete before returning. The exact effect of this depends on the action being invoked and the application handling the action. Default is false. |
-waitforinputidle BOOLEAN | If specified as true, the command will wait up to one minute for any processes that are created as part of the invocation to enter the idle loop. Default is false. |
shell_execute -path notepad.exeStart up an application with parameters:
shell_execute -path notepad.exe -params {sample.txt}Invoke the default action for a particular document. In most cases, this will open the application associated with the document type:
shell_execute -path sample.docInvoke a non-default action on a document (printing using the associated application):
shell_execute -path sample.doc -verb printInvoke a non-default action (search) on a directory:
shell_execute -path c:/temp -verb findOpen a document in the home directory using environment variables:
shell_execute -path {%HOMEDRIVE%\%HOMEPATH%\My Documents\darknet.pdf} -substenv trueLaunch a browser for a URL:
shell_execute -path http://www.google.comCompose a email message:
shell_execute -path mailto:[email protected]Invoke a dynamic action on a file. This will bring up the property sheet for notepad.exe instead of executing it.
shell_execute -path notepad.exe -verb properties -invokeidlist true
-hwin HWIN | If specified, HWIN is the handle to the window to be used as the parent for the dialog. |
-type file|printer|volume | Specifies the type of the object identified by OBJECTPATH. If this option is not specified, the command will attempt to figure out the object type and display the appropriate dialog. |
-args ARGUMENTS | Specifies the command line arguments for the link. |
-desc DESCRIPTION | Specifies the description of the shortcut. This is the string that is visible to the user as the label of the shortcut. |
-hotkey HOTKEY | Specifies the hotkey to be associated with the shortcut. HOTKEY should be an integer as described in the documentation of the IShellLink::Hotkey command in the Platform SDK or a symbolic string as described in the register_hotkey command. |
-iconindex INDEX | Specifies INDEX as the index of the icon within the icon file specifies by the -iconpath option. |
-iconpath ICONPATH | Specifies ICONPATH as the path to the file from which the icon for the shortcut is to be taken. |
-idl IDL | Specifies that the shortcut should point to the object identified by the item identifier list IDL. This is useful in cases where the target of the short cut is not a file. |
-path TARGETPATH | Specifies TARGETPATH as the file system path to which the shortcut points. This must be a full absolute path else Windows will return an error. |
-showcmd WINDOWSTATE | Specifies the initial state of the window. WINDOWSTATE should be one of minimized, maximized or normal. |
-workdir DIRPATH | Specifies DIRPATH as the working directory of the shortcut. |
Copyright © 2004-2009 Ashok P. Nadkarni