Search found 6 matches

by DoTheEvolution
Wed Jan 24, 2018 7:20 pm
Forum: Support
Topic: Silent installation seems to have some issues.
Replies: 7
Views: 6621

Re: Silent installation seems to have some issues.

Ok, this code seems to be working $parent_dir = Split-Path $MyInvocation.MyCommand.Path echo ' - installation in progress ...' Start-Process -FilePath "$parent_dir\Everything-1.4.1.877.x64-Setup" -ArgumentList '/S' -Wait $target_exe = "$env:ProgramFiles\Everything\Everything.exe"...
by DoTheEvolution
Wed Jan 24, 2018 12:07 am
Forum: Support
Topic: Silent installation seems to have some issues.
Replies: 7
Views: 6621

Re: Silent installation seems to have some issues.

Theres this thing called chocolatey, kinda like linux repos for software for windows I checked out chocolatey script for installing everything, heres powershell code it seems like they just let the installation run with /S flag and nothing else and afterwards run everything.exe from installed locati...
by DoTheEvolution
Mon Jan 22, 2018 7:41 am
Forum: Support
Topic: Silent installation seems to have some issues.
Replies: 7
Views: 6621

Re: Silent installation seems to have some issues.

from the first link Everything-Setup.exe /S -install-options "-app-data -disable-run-as-admin -disable-update-notification -install-efu-association -uninstall-folder-context-menu -uninstall-quick-launch-shortcut -install-run-on-system-startup -install-service -install-service-port 15485 -instal...
by DoTheEvolution
Sun Jan 21, 2018 9:32 pm
Forum: Support
Topic: Silent installation seems to have some issues.
Replies: 7
Views: 6621

Silent installation seems to have some issues.

I am trying to make a powershell script to install Everything Search and to set some preferences. Found some info on the subject but I feel like theres something not right. Theres example code that suppose to give default installation, and while it seems to do things right there are some quirks. fir...
by DoTheEvolution
Mon Sep 07, 2015 11:41 am
Forum: Development, plugins and third party software
Topic: How is your database working?
Replies: 2
Views: 18804

Re: How is your database working?

Thanks for answering, you helped a lot. I'll look in to multithreaded searches in a database. That might give it some additional burst.
by DoTheEvolution
Fri Sep 04, 2015 10:35 pm
Forum: Development, plugins and third party software
Topic: How is your database working?
Replies: 2
Views: 18804

How is your database working?

TL;DR making crappy linux file search, database needs FTS to get fast searching as you type, but that means no su bstr ing searches only beg inning of words, what should I study up now to get both fast searching and substrings? Hi I am beginner programmer, learning python. Year ago I switched to li...