Search found 13168 matches

by highend
15 Mar 2024 09:15
Forum: Script Exchange
Topic: [Solved] Powershell, space and nested quote (right click menu to open powershell here with admin privilege)
Replies: 5
Views: 141

Re: Powershell, space and nested quote

For those old versions I use this: http://code.kliu.org/misc/elevate/ $elevate = "D:\Tools\@Command Line Tools\Elevate\elevate_x64.exe"; $command = "powershell.exe -NoProfile -NoExit -Command Set-Location -LiteralPath '<curpath>'"; run lax("$elevate" $command); Never ha...
by highend
15 Mar 2024 08:58
Forum: Bug Reports
Topic: Errors often lately.
Replies: 16
Views: 204

Re: Errors often lately.

Unrelated: What is the exact purpose of that "Folders" column? Showing how many subfolders exist?
by highend
15 Mar 2024 08:53
Forum: Tips & Tricks, Questions & Answers
Topic: CorelDRAW file version not display
Replies: 11
Views: 662

Re: CorelDRAW file version not display

Then show the metadata content for such a file and upload it somewhere so that others can see if it appears on their system?
by highend
15 Mar 2024 08:51
Forum: Script Exchange
Topic: [Solved] Powershell, space and nested quote (right click menu to open powershell here with admin privilege)
Replies: 5
Views: 141

Re: Powershell, space and nested quote

Untested, with PS7.x

Code: Select all

run "pwsh -Command Start-Process Pwsh -Verb RunAs -WorkingDirectory '<curpath>'", , , 0;
by highend
15 Mar 2024 08:05
Forum: Tips & Tricks, Questions & Answers
Topic: CorelDRAW file version not display
Replies: 11
Views: 662

Re: CorelDRAW file version not display

You were asked to use File | Metadata...

And if it looks e.g. like this:
metadata.png
metadata.png (33.28 KiB) Viewed 80 times
You can just add a column and select the property "File Version"...
fileversion.png
fileversion.png (6.06 KiB) Viewed 80 times
by highend
14 Mar 2024 16:05
Forum: Bug Reports
Topic: Having long pauses during use and at startup
Replies: 2
Views: 54

Re: Having long pauses during use and at startup

Which view mode?

Execute this from the address bar while in that folder and show the output (as text):
text columnlayout(, "get");

Is this setting checked?
Configuration | Colors and Styles | Templates | Status Bar | [ ] Use status bar template
by highend
13 Mar 2024 09:44
Forum: Tips & Tricks, Questions & Answers
Topic: aide générale XYplorer en français
Replies: 6
Views: 92

Re: aide générale XYplorer en français

It's only available in english...
by highend
12 Mar 2024 21:19
Forum: Tips & Tricks, Questions & Answers
Topic: how to debug problems with remote control?
Replies: 5
Views: 91

Re: how to debug problems with remote control?

sometimes it works, sometimes it doesn't
So you always alternated between XY elevated / not elevated and you didn't recognise that pattern?
by highend
12 Mar 2024 19:41
Forum: Tips & Tricks, Questions & Answers
Topic: Default File Manager & New Tab Behavior
Replies: 7
Views: 138

Re: Default File Manager & New Tab Behavior

Configuration | Other | Shell Integration | Default File Manager | [x] XYplorer in shell context menu
Configuration | Other | Shell Integration | Default File Manager | [x] XYplorer is default file manager
by highend
12 Mar 2024 18:39
Forum: Tips & Tricks, Questions & Answers
Topic: Set folder name as Tag
Replies: 1
Views: 55

Re: Set folder name as Tag

There is <curname> for the folder and tagitems() to set it, read the help file?
by highend
11 Mar 2024 23:50
Forum: Tips & Tricks, Questions & Answers
Topic: Default File Manager & New Tab Behavior
Replies: 7
Views: 138

Re: Default File Manager & New Tab Behavior

Configuration | General | Startup & Exit | [x] Open command line start path in new tab
by highend
10 Mar 2024 17:38
Forum: Bug Reports
Topic: Right click slow/delay
Replies: 22
Views: 897

Re: Right click slow/delay

Does it get better when you uncheck: Configuration | General | Menus, Mouse, Usability | Context Menus | [x] Custom items in the context menu Please test that with the 32 and 64 bit menus (first and ongoing clicks) Uncheck: Configuration | Other | Shell Integration | 64-bit Windows | [x] Show the 64...
by highend
10 Mar 2024 10:32
Forum: Wishes
Topic: Padding file names with 0
Replies: 12
Views: 270

Re: Padding file names with 0

@Don

I'd say something like: <pad 4 0>* would be better (while it has to ignore extensions).

Otherwise things like this wouldn't work:

Code: Select all

1.avi
5.mp4
64.mpeg
98.mkv
by highend
10 Mar 2024 10:08
Forum: Wishes
Topic: Padding file names with 0
Replies: 12
Views: 270

Re: Padding file names with 0

Didn't try to use the /cut option but scripting it would always be possible If they are all in the same folder and selected... $files = regexreplace(<get SelectedItemsNames>, "^(\d)", "000$1"); $files = regexreplace($files, "(\d+?)(\d{4}\.[^.]+)$", "$2"); rena...