[β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Discuss and share scripts and script files...
Horst
Posts: 1080
Joined: 24 Jan 2021 12:27
Location: Germany

Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Post by Horst »

Here my very short version of this script without any bells and whistles.
Its fine for me in Germany running an english Windows 10 with German locale and english language.

Code: Select all

  $path = "C:\tools\Everything\";		//Location of Everything ES.EXE
  $paper = "Everything";		//"Everything in XYplorer"

  global $query; set $valid;

  $query = trim(input("Everything in XYplorer", "Type your search query as you would in Everything", "?", "s"));
 
  $results = runret("cmd /c es $query", "$path");

  paperfolder("$paper", "$results");  
Windows 11 Home x64 Version 23H2 (OS Build 22631.3235)
Portable XYplorer (actual version, including betas)
Everything 1.5.0.1371a (x64), Everything Toolbar 1.3.2, Listary Pro 6.3.0.69

darekkay
Posts: 4
Joined: 15 Sep 2017 13:53

Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Post by darekkay »

Recently, the latest version 0.98 from highend stopped working: the paper folder is created and filled but cleared immediately. I've commented out line 304 and it's working again:

Code: Select all

// delete 0, 0, $tmpUTF16;
Maybe something in the implementation of paper folders has changed, but deleting a temporary file should not have caused this problem.

highend
Posts: 13260
Joined: 06 Feb 2011 00:33

Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Post by highend »

My "real" script for Everything can be found here (and I haven't heard of any problems): viewtopic.php?t=23224
One of my scripts helped you out? Please donate via Paypal or paypal_donate (at) stdmail (dot) de

lian00
Posts: 354
Joined: 09 Jul 2014 17:12

Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Post by lian00 »

darekkay wrote: 23 Aug 2022 11:23 Recently, the latest version 0.98 from highend stopped working: the paper folder is created and filled but cleared immediately. I've commented out line 304 and it's working again:

Code: Select all

// delete 0, 0, $tmpUTF16;
Maybe something in the implementation of paper folders has changed, but deleting a temporary file should not have caused this problem.
I think I met the problem too. Launching a second search gives the results.
Windows 10 64 bits

Horst
Posts: 1080
Joined: 24 Jan 2021 12:27
Location: Germany

Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24

Post by Horst »

As Highend already said above
use the newest script version 0.9.6 from:
viewtopic.php?p=188977#p188977
This works fine with the current Everything 1.5 and the current XY version.

You can also use this Autohotkey script from Highend which feeds the Everything GUI results into an XY paper folder.
I don't find it currently in the forum so I copy my modified version here for reference.
Windows 11 Home x64 Version 23H2 (OS Build 22631.3235)
Portable XYplorer (actual version, including betas)
Everything 1.5.0.1371a (x64), Everything Toolbar 1.3.2, Listary Pro 6.3.0.69

Post Reply