Hello, everything is a great tool that i use it everyday.
I use Windows7 before, but when i update to windows 10 i found some different.
I use Autohotkey to set some keybinding with capslock and i usually lock this key by SetScrollLockState, AlwaysOff
ex. i set caps+hjkl become left down up rihgt
●When i search in everything under win7, capslock is passthrough(capslock light on keyboard still off) so i can use my keybinding.
Capslock+h will move the cursor left
●when i search in everyghing under win10, when i press capslock i can see the original action(capslock light on keyboard change to on)
And my keybinding is no use.
Capslock+h will type H
Everything version is the same 1.4.1.1003 x64 portable.
It's work well under win7 with my keybinding, Is is possible to have a option let capslock passthrough in everything under win10?
Thanks for your reading.
Different action with Capslock
Re: Different action with Capslock
Everything might be running as an admin which might prevent caplocks from being passed-through.
Does setting Everything to run as a standard user help?:
Does setting Everything to run as a standard user help?:
- In Everything, from the Tools menu, click Options.
- Click the General tab on the left.
- Check Everything service.
- Uncheck Run as administrator.
- Click OK.
- Exit Everything (right click the Everything tray icon and click Exit).
- Restart Everything.
Re: Different action with Capslock
Oops, sorry for my miss, my command to call everything before is
Everything.exe -admin -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
I check Everything service and delete the -admin option then capslock keybinding is all ok.
Another question, is the option Everything service can only be check in option?
Is there a command line option can set the service and call everything?
ex.
I try Everything.exe -svc -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
The command seems can only run a everything in background for a service.
Now i use below command to call
Everything.exe -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
And choose everything service in prompt window.
Thanks for your reply.
Everything.exe -admin -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
I check Everything service and delete the -admin option then capslock keybinding is all ok.
Another question, is the option Everything service can only be check in option?
Is there a command line option can set the service and call everything?
ex.
I try Everything.exe -svc -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
The command seems can only run a everything in background for a service.
Now i use below command to call
Everything.exe -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
And choose everything service in prompt window.
Thanks for your reply.
Re: Different action with Capslock
Yes:
Code: Select all
Everything.exe -instance kesdoputr -install-service
After that, you can do your
Code: Select all
Everything.exe -instance kesdoputr -config Everything-kesdoputr.ini -db %COMPUTERNAME%.db
Re: Different action with Capslock
It works fine now, thanks for your reply.