You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1- Bringing CommandLineToArgvW to parse command registry from Win32API
2- Execution of the context menu was a problem for some applications. This has been fixed.
3- Improved MUIVerb support
%0 or %1 – The first file parameter. For example "C:\Users\Eric\Desktop\New Text Document.txt". Generally this should be in quotes and the applications command line parsing should accept quotes to disambiguate files with spaces in the name and different command line parameters (this is a security best practice and I believe mentioned in MSDN).
17
+
18
+
%<n> (where <n> is 2-9) – Replace with the nth parameter.
19
+
20
+
%s – Show command.
21
+
22
+
%h – Hotkey value.
23
+
24
+
%i – IDList stored in a shared memory handle is passed here.
25
+
26
+
%l – Long file name form of the first parameter. Note that Win32/64 applications will be passed the long file name, whereas Win16 applications get the short file name. Specifying %l is preferred as it avoids the need to probe for the application type.
27
+
28
+
%d – Desktop absolute parsing name of the first parameter (for items that don't have file system paths).
29
+
30
+
%v – For verbs that are none implies all. If there is no parameter passed this is the working directory.
0 commit comments