Search found 13221 matches

by highend
04 Dec 2018 21:14
Forum: Tips & Tricks, Questions & Answers
Topic: Unable to pass arguments with spaces to PowerShell script
Replies: 10
Views: 5405

Re: Unable to pass arguments with spaces to PowerShell script

Okay, so you've proved that DOS and XYplorer are both incapable of handling arguments with spaces in the name
This is getting ridiculous...

I've already posted a clean and working solution.
Topic locked
by highend
04 Dec 2018 07:54
Forum: Tips & Tricks, Questions & Answers
Topic: Unable to pass arguments with spaces to PowerShell script
Replies: 10
Views: 5405

Re: Unable to pass arguments with spaces to PowerShell script

And, is

Code: Select all

C:\Users\bernie\Photo Staging\tmp\DSC_1441 - Copy.jpg,
the same as

Code: Select all

C:\Users\bernie\Photo Staging\tmp\DSC_1441 - Copy.jpg
C:\Users\bernie\Photo Staging\tmp\DSC_1443 - Copy.jpg
?

Surely not...
by highend
03 Dec 2018 21:30
Forum: Bug Reports
Topic: showintree - Bugged
Replies: 3
Views: 515

Re: showintree - Bugged

Confirmed fixed with 0106...
by highend
03 Dec 2018 20:05
Forum: Bug Reports
Topic: showintree - Bugged
Replies: 3
Views: 515

Re: showintree - Bugged

Ok, moved to bug reports...
by highend
03 Dec 2018 14:30
Forum: Bug Reports
Topic: Content search for "::" - Error 9
Replies: 2
Views: 475

Re: Content search for "::" - Error 9

Confirmed fixed in v0105...
by highend
03 Dec 2018 14:29
Forum: Bug Reports
Topic: Will not set as default file manager
Replies: 22
Views: 6524

Re: Will not set as default file manager

The scope for the integration you're using is: Only for the current user, right? You've used (at least once): For all users of this computer, otherwise HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Shell wouldn't be populated with "XYplorer" So, "<something>" on your computer res...
by highend
03 Dec 2018 06:59
Forum: Bug Reports
Topic: Will not set as default file manager
Replies: 22
Views: 6524

Re: Will not set as default file manager

Restarting = Windows reboot or a restart of XYplorer (without a Windows reboot)? What are the default values for: HKEY_CURRENT_USER\Software\Classes\Directory\Shell HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Shell While 1. XY is running (and the "XYplorer is default file manager" checkm...
by highend
03 Dec 2018 06:56
Forum: Tips & Tricks, Questions & Answers
Topic: Unable to pass arguments with spaces to PowerShell script
Replies: 10
Views: 5405

Re: Unable to pass arguments with spaces to PowerShell script

You even quoted what I wrote:
Open a normal command prompt window ({WIN}cmd{ENTER})
And instead you opened a powershell console? oO
by highend
02 Dec 2018 22:30
Forum: Bug Reports
Topic: Zip files Hover Box error
Replies: 24
Views: 2693

Re: Zip files Hover Box error

Set it to 1
by highend
02 Dec 2018 22:18
Forum: Bug Reports
Topic: Content search for "::" - Error 9
Replies: 2
Views: 475

Content search for "::" - Error 9

v0104, fresh

Go into any folder that contains e.g. a .doc file (Microsoft Office Word)

In the content field use:

Code: Select all

::
All other fields are default
Button "Find Now"

For every existing .doc file in that folder you'll get this error:
error9.png
error9.png (17.03 KiB) Viewed 472 times
by highend
02 Dec 2018 22:13
Forum: Bug Reports
Topic: Zip files Hover Box error
Replies: 24
Views: 2693

Re: Zip files Hover Box error

You are using

Code: Select all

ScriptSmartDetect=0
in your .ini file, that's the reason why it doesn't work without the "::" in front of the script command
by highend
02 Dec 2018 21:56
Forum: Bug Reports
Topic: Zip files Hover Box error
Replies: 24
Views: 2693

Re: Zip files Hover Box error

Do it again, this time with a "::" in front of that command...

Code: Select all

::editconf , "ZipPath7zip=*";
by highend
02 Dec 2018 21:24
Forum: Tips & Tricks, Questions & Answers
Topic: Unable to pass arguments with spaces to PowerShell script
Replies: 10
Views: 5405

Re: Unable to pass arguments with spaces to PowerShell script

XYplorer is incapable of passing arguments with spaces in them, quoted and comma separated. Will you ever understand that this is not a problem caused by XY? You doubt that, right? Fine. Open a normal command prompt window ({WIN}cmd{ENTER}) Show me the line that calls your ps script (from the first...
by highend
02 Dec 2018 10:53
Forum: Tips & Tricks, Questions & Answers
Topic: Unable to pass arguments with spaces to PowerShell script
Replies: 10
Views: 5405

Re: Unable to pass arguments with spaces to PowerShell script

Why the hell do you recreate an already existing topic (of your own)? Use $args in the .ps1 script and be done with the whole quoting stuff (which is a problem of powershell, not XY!) test.ps1 foreach ($item in $args) { "$item" | out-file -filepath "C:\Users\bernie\Photo Staging\tmp\d...
by highend
01 Dec 2018 23:46
Forum: Tips & Tricks, Questions & Answers
Topic: Find on both folder & files - also return files in folders matched
Replies: 8
Views: 1242

Re: Find on both folder & files - also return files in folders matched

If any of the quicksearches delivers an empty result the next quicksearch that uses the return value (the variable) of that quicksearch, will search "everything" instead of only a handful of items. So split the first two quicksearches into two lines with their own variable and put a step; ...