Settings and activity

1 result found

  1. 17 votes
    17 comments  ·  Logi Options+ » Bug  ·  Admin →
    How important is this to you?
    Alwin Raju supported this idea  · 
    An error occurred while saving the comment
    Alwin Raju commented  · 

    I found a way of getting @Edgar Morillo 's answer to work without admin privileges, I am using their script but with some minor amendments to the keyname and code:

    ```batch

    @echo off
    SETLOCAL ENABLEEXTENSIONS
    SET keyname=HKEY_CURRENT_USER\Software\Classes\com.logitech.logioptionsplus
    SET value=

    REG ADD "%keyname%" /f
    REG ADD "%keyname%" /ve /t REG_SZ /d "URL:com.logitech.logioptionsplus" /f
    REG ADD "%keyname%" /v "URL Protocol" /t REG_SZ /d "" /f
    REG ADD "%keyname%\shell" /f
    REG ADD "%keyname%\shell\open" /f
    REG ADD "%keyname%\shell\open\command" /ve /t REG_SZ /d "\"C:\Program Files\LogiOptionsPlus\logioptionsplus_agent.exe\" \"%%1\"" /f

    ENDLOCAL

    ```