Search found 13202 matches

by highend
19 Dec 2015 12:55
Forum: Tips & Tricks, Questions & Answers
Topic: Elevated Privileges for a folder in XY ?
Replies: 22
Views: 3696

Re: Elevated Privileges for a folder in XY ?

If YOU overwrite permissions and ownership of files / folders, Windows doesn't revert that...
by highend
19 Dec 2015 12:44
Forum: Tips & Tricks, Questions & Answers
Topic: Elevated Privileges for a folder in XY ?
Replies: 22
Views: 3696

Re: Elevated Privileges for a folder in XY ?

There is no switch. This is overruling of inbuild permissions management of Windows. Write scripts and place them on a button...
by highend
19 Dec 2015 12:33
Forum: Tips & Tricks, Questions & Answers
Topic: Elevated Privileges for a folder in XY ?
Replies: 22
Views: 3696

Re: Elevated Privileges for a folder in XY ?

What does the whole thing has to do with XYplorer? Deleting folders in those places (in Win *Shit*) requires trustedinstaller permissions. Changing the ownership to "Everyone" (and replacing them for all items and subitems) + icacls is a working solution to be able to delete such a folder ...
by highend
18 Dec 2015 10:34
Forum: Bug Reports
Topic: syntax <cursize>, can't use for rename each file.
Replies: 7
Views: 882

Re: syntax <cursize>, can't use for rename each file.

use for rename each file
-> No <prop System.Size>
by highend
18 Dec 2015 08:25
Forum: Bug Reports
Topic: syntax <cursize>, can't use for rename each file.
Replies: 7
Views: 882

Re: syntax <cursize>, can't use for rename each file.

Code: Select all

    foreach($file, <get SelectedItemsNames |>) {
        $size = property("size", $file);
        $size = filesize($file);
    }
Both commands can be used to get the size of the current file
by highend
18 Dec 2015 00:27
Forum: Bug Reports
Topic: include the value of the size of each file
Replies: 6
Views: 806

Re: include the value of the size of each file

$list = ""; foreach($file, <get SelectedItemsPathNames |>) { $props = "<datem yyyy.mm.dd>_" . property("size", $file) . "_bytes"; $list = $list . $file . " - " . $props . <crlf>; } text $list; Something like this?
by highend
17 Dec 2015 22:19
Forum: Bug Reports
Topic: Labels not preserved across instances
Replies: 3
Views: 605

Re: Labels not preserved across instances

Welcome to the club. 1. If you want to recognize the label in a different XY instance (and I guess you mean: The same XYplorer.exe started a second time), you'd need to save your tag.dat file first (in the instance where you created the label) by Menu - File - Settings Special - Save Tags and reload...
by highend
17 Dec 2015 02:06
Forum: Tips & Tricks, Questions & Answers
Topic: Filter common part of file names in the list
Replies: 11
Views: 2407

Re: Filter common part of file names in the list

Removed file extensions for ALL files or only the ones were you want to get the first parts off?

For all:

Code: Select all

$baseFileName = getpathcomponent(<cc_item>, "base");
 return regexreplace($baseFileName, "^(.{2}-.{3}-.{3}-)(.*)", "$2");
by highend
17 Dec 2015 01:36
Forum: Tips & Tricks, Questions & Answers
Topic: Filter common part of file names in the list
Replies: 11
Views: 2407

Re: Filter common part of file names in the list

Code: Select all

return regexreplace(<cc_item>, "^(.+\\)(.{2}-.{3}-.{3}-)(.*)", "$3");
A bit more generic...
by highend
17 Dec 2015 01:18
Forum: Tips & Tricks, Questions & Answers
Topic: Filter common part of file names in the list
Replies: 11
Views: 2407

Re: Filter common part of file names in the list

I would say let's ignore all other filenames that do not contain the 'common' bit. Is that achievable? So their normal name should be displayed? And from your example: QC-BB6-ELE-DWG-000065_A.PDF The displayed name should look like: ELE-DWG-000065_A.PDF ? Btw, your custom column is wrong, the Type ...
by highend
17 Dec 2015 01:01
Forum: Tips & Tricks, Questions & Answers
Topic: Filter common part of file names in the list
Replies: 11
Views: 2407

Re: Filter common part of file names in the list

How that script must look like? Give a few real names and how they should exactly be displayed. What about all other files that don't match that naming scheme?
by highend
17 Dec 2015 00:07
Forum: Tips & Tricks, Questions & Answers
Topic: Filter common part of file names in the list
Replies: 11
Views: 2407

Re: Filter common part of file names in the list

This would be possible, but you'd need a custom column for it (you can't use the "Name" column for that). The CC needs to use a script to display that name. How that script must look like? Give a few real names and how they should exactly be displayed. What about all other files that don't...
by highend
16 Dec 2015 22:15
Forum: Tips & Tricks, Questions & Answers
Topic: File Match omitting extension
Replies: 15
Views: 2708

Re: File Match omitting extension

then run hermhart script, this is the error I get; Dubious syntax: dir ?
...
by highend
16 Dec 2015 19:22
Forum: Tips & Tricks, Questions & Answers
Topic: File Match omitting extension
Replies: 15
Views: 2708

Re: File Match omitting extension

put "Selection" into quotes?
by highend
16 Dec 2015 18:05
Forum: Tips & Tricks, Questions & Answers
Topic: PFA script request: AHK Compliler
Replies: 6
Views: 1846

Re: PFA script request: AHK Compliler

get("alias"...) is in the help file. the <get alias ...> is just the variable variant of that command.

You would need to set up aliases before you could use them. Look them up in the help file, tab index - aliases