BETA versions are now only available for registered users.
Find the download link at the bottom of the License Lounge.
- + SC getinfo got a new named argument "regcmd". Rather for debugging purposes (but who knows) this is a way to quickly retrieve the default verb and command line (the one triggered by dbl-click) for any registered file type from the registry.
Syntax: getinfo("regcmd", extension)
extension: [required] any registered file extension
return: Verb=Command
Nothing if the extension does not exist.
For example, the following line:
text getinfo("regcmd", "mp3");
will return (on my system)
Play="C:\Programme\Winamp\winamp.exe" "%1"
which is made of the verb and value of this key:
HKEY_CLASSES_ROOT\Winamp.File.MP3\shell\Play\command - ! List: Opening files with the shell-associated application still failed in some instances. Fixed #2.