tags
-
highend
- Posts: 14953
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
-
bdeshi
- Posts: 4256
- Joined: 12 Mar 2014 17:27
- Location: Asteroid B-612
- Contact:
Re: tags
That empty Tags column may be for XYplorer tags. Did you try following highend's suggestion?
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]
[ this user is asleep ]
-
highend
- Posts: 14953
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
Re: tags
This file has no normal tag field in the details tab of the file so XY doesn't display anything.
The file uses special properties. You could display them but you'd need a helper utility to do that.
The source code (C++) is available from: https://support.microsoft.com/en-us/kb/186898
And a little bit of scripting for a custom column is required as well (although it's not much).
The file uses special properties. You could display them but you'd need a helper utility to do that.
The source code (C++) is available from: https://support.microsoft.com/en-us/kb/186898
And a little bit of scripting for a custom column is required as well (although it's not much).
One of my scripts helped you out? Please donate via Paypal
-
highend
- Posts: 14953
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
Re: tags
One way to configure a custom column:
http://www.xyplorer.com/xyfc/viewtopic. ... lit=column
I've modified the C++ source code a bit to only output the keywords (for your file: expview) and nothing else (to make output processing inside XY as fast as possible).
The script that you need for the custom column:
Ofc you need to adapt the path for $exe!
The .exe needs the Visual C++ 2010 SP1 (10.0) runtime library (either installed or the msvcr100.dll file copied to the same directory where DumpIPropertyStorage.exe resides). If you don't want any dependencies, here is a statically linked version:
http://www.xyplorer.com/xyfc/viewtopic. ... lit=column
I've modified the C++ source code a bit to only output the keywords (for your file: expview) and nothing else (to make output processing inside XY as fast as possible).
The script that you need for the custom column:
Code: Select all
$exe = "D:\Tools\DumpIPropertyStorage.exe";
$keywords = runret("""$exe"" ""<cc_item>""");
if ($keywords) { return $keywords; }The .exe needs the Visual C++ 2010 SP1 (10.0) runtime library (either installed or the msvcr100.dll file copied to the same directory where DumpIPropertyStorage.exe resides). If you don't want any dependencies, here is a statically linked version:
To see the attached files, you need to log into the forum.
One of my scripts helped you out? Please donate via Paypal
XYplorer Beta Club