[β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.95 / 2014/07/24
New release: one bug fixed and fine tuning to squeeze better performance out of the code.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
There's something odd with runret() as pointed out here, http://www.xyplorer.com/xyfc/viewtopic.php?f=2&t=12231, that can affect search results. As a workaround, please set the paramenter $unicode to TRUE.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
binocular222
- Posts: 1423
- Joined: 04 Nov 2008 05:35
- Location: Win11, Win10, 100% Scaling
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
0.9.6 does not work for me. Paper folder is opened with no items. My settings are:When I run Everythingexe -svc, this appears in errolog.txt:Is running as service really a must?
Notice that this does works without running ET as a service:
Code: Select all
$mode = "Smart"; //"Smart"
$ipc = FALSE; //FALSE
$loc_aware = TRUE; //TRUE
$diacritics = TRUE; //TRUE
$unicode = TRUE; //FALSECode: Select all
7/25/2014 11:41 AM: Everything 1.3.4.682b (x86): .\src\service_server.c(474): _service_server_main_loop(): bind failed 10048Notice that this does works without running ET as a service:
Code: Select all
$query = input("Everything in XYplorer", "Type your search query as you would in Everything", "D:\ ", "s");
$list = runret("E:\7Utilities\Search\Everything\es.exe $query");
paperfolder("Results", "$list");I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
A service is necessary if the account you're using doesn't have admin rights. This link that I provided on the first post, http://forum.voidtools.com/viewtopic.ph ... 72c80c5a9b, explains...everything (no pun intended).
What's your setup?
What's your setup?
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
binocular222
- Posts: 1423
- Joined: 04 Nov 2008 05:35
- Location: Win11, Win10, 100% Scaling
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
I got Everything service runs (showed up in services.msc), still not work (Everything runs as admin)
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
But is your account standard user or admin? With what privileges is XYplorer running?
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
binocular222
- Posts: 1423
- Joined: 04 Nov 2008 05:35
- Location: Win11, Win10, 100% Scaling
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
My account is admin, XY runs as admin too
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
I don't know what to say. If you can get es to work then the script should work too. I don't have time nor the possibility to make further tests.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
Enternal
- Posts: 1175
- Joined: 10 Jan 2012 18:26
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
I'm also having issues with the new version of the script not working. After modifying this:
to:
So the problem seems to be related to how diacritics is functioning. Basically I stripped away the parentheses. binocular222, try to see if this modification to the code makes it work.
Also Marco, did I just... see Pokemon in your code?
Hahahaha! Not that I'm complaining since even now I'm still watching Pokemon and the movies.
EDIT: Also binoculars222, just to note, they way I have Everything setup is I run Everything as admin, then set it as a service. I then exit Everything and then re-run Everything. Everything will now run as a standard user BUT the service is running as admin and you can see that if you use task manager with elevated rights.
Code: Select all
$query = ($loc_aware XOR ($switches Like "*l*")) ? "$query AND path:""$current_path""" : "$query";
$query = ($diacritics XOR ($switches Like "*d*")) ? "diacritics:($query)" : "$query";Code: Select all
$query = ($loc_aware XOR ($switches Like "*l*")) ? "$query AND path:""$current_path""" : "$query";
$query = ($diacritics XOR ($switches Like "*d*")) ? "diacritics:$query" : "$query";Also Marco, did I just... see Pokemon in your code?
EDIT: Also binoculars222, just to note, they way I have Everything setup is I run Everything as admin, then set it as a service. I then exit Everything and then re-run Everything. Everything will now run as a standard user BUT the service is running as admin and you can see that if you use task manager with elevated rights.
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
That's weird. Plus, more importantly, that would be wrong, becauseis not the same asI can't repro here.
Code: Select all
diacritics:é àCode: Select all
diacritics:(é à)Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
sinilill
- Posts: 111
- Joined: 02 Dec 2013 18:37
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
I also can't get the new version to work
Had no problems with previos versions!
Had no problems with previos versions!
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
Please try this version. A window will appear: paste the contents here, then XY will execute the script step by step. See if some error message appears.
To see the attached files, you need to log into the forum.
Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
sinilill
- Posts: 111
- Joined: 02 Dec 2013 18:37
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
from dialog window
script step mode screenshots
http://i.imgur.com/maM5dwV.png
Code: Select all
dl: diacritics:(groove AND path:\"D:\MUUSIKA\")http://i.imgur.com/maM5dwV.png
-
Marco
- Posts: 2354
- Joined: 27 Jun 2011 15:20
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
Ok, and if you go into
and then type in the address bar
and then press Enter, what appears?
Code: Select all
D:\Application_data\XYplorer\EverythingCode: Select all
!cmd /c es diacritics:(groove AND path:\"D:\MUUSIKA\")Tag Backup - SimpleUpdater - XYplorer Messenger - The Unofficial XYplorer Archive - Everything in XYplorer
Don sees all [cit. from viewtopic.php?p=124094#p124094]
Don sees all [cit. from viewtopic.php?p=124094#p124094]
-
sinilill
- Posts: 111
- Joined: 02 Dec 2013 18:37
Re: [β] Everything in XYplorer — Rev. 0.96 / 2014/07/24
Nothing, just a command window opens at the location of everything folder.
XYplorer Beta Club