Changing the location of the NVDA configuration folder

85 views
Skip to first unread message

Sergio Gómez

unread,
Aug 28, 2025, 7:42:24 AM (8 days ago) Aug 28
to Lista de correo de nvda-users
Hello,

Is it possible to change the user configuration folder for NVDA? By
default, it is located in the "AppData" folder, under the "Roaming"
subfolder, and I would like to move it to the root of the C drive.

Thank you.

Best regards.

Sergio G. C.

Noelia

unread,
Aug 28, 2025, 8:07:10 AM (8 days ago) Aug 28
to nvda-...@nvaccess.org
Hello:
I think you can do it, but I'd save the configuration in a subfolder of c:, not directly in c:.
I've proceeded as follows for testing, saving the configuration in %appdata%\nvdatest.
1. Move to the desktop (Windows+m).
2 Press n to locate the nvda icon in the desktop.
3. Press control+c to copy it to the clipboard.
4. From the desktop, press control+v to paste a duplicate NVDA icon.
5. Go to the last NVDA icon.
6. Open the properties of this icon by pressing alt+enter.
7. In the destination edit box, move the cursor to the end and add a space followed by -c:\newConfigurationFolder (or a different name).
8. Accept changes.

For example, my current destination for testing is: 

"C:\Program Files (x86)\NVDA\nvda_slave.exe" launchNVDA -r -c %appdata%\nvdatest

If you want, to be sure, wait for more answers, and see the advanced topics sections of the user guide.

--
***
Please note: the NVDA project has a Citizen and Contributor Code of Conduct.
NV Access expects that all community members will read and abide by the rules set out in this document while participating in this group.
https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md

You can contact the group owners and moderators via nvda-user...@nvaccess.org.
---
You received this message because you are subscribed to the Google Groups "NVDA Screen Reader Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nvda-users+...@nvaccess.org.
To view this discussion visit https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/3cc4cc09-99f2-4ea2-b580-74aadac3e9cd%40icloud.com.

Quentin Christensen

unread,
Aug 28, 2025, 8:27:14 AM (8 days ago) Aug 28
to nvda-...@nvaccess.org
In your step 7 Noelia, I think you want:
 -c c:\newConfigurationFolder

rather than 
 -c:\newConfigurationFolder

In this case: -c is the command line argument to specify the config path.  You can also use --config-path=CONFIGPATH if you prefer.
"c:\newConfigurationFolder" is a folder called "newConfigurationFolder" in the root of c:\

As you noted, from near the end of the user guide: https://download.nvaccess.org/documentation/userGuide.html#CommandLineOptions



--

Quentin Christensen
Training and Support Manager

NV Access

Subscribe to email updates (blog, new versions, etc): https://eepurl.com/iuVyjo

Noelia

unread,
Aug 28, 2025, 8:41:10 AM (8 days ago) Aug 28
to nvda-...@nvaccess.org
Oh, thanks Quentin. I have made a mistake while typing. You are right.

Sergio Gómez

unread,
Aug 28, 2025, 9:32:37 AM (8 days ago) Aug 28
to nvda-...@nvaccess.org

Wow, thank you! I’ve already tried it and it works perfectly.  
I do have another question though: is it possible to set the folder I created in another location as the default one? What I mean is, I’d like NVDA to start with that configuration folder when the system boots up.  

Thanks again for the steps — everything’s working great!

Sergio G. C.

Noelia

unread,
Aug 28, 2025, 12:36:35 PM (8 days ago) Aug 28
to nvda-...@nvaccess.org
I don't find such an option.
If you have problems with the %appdata%, you may change the Windows registry to store and use NVDA configuration from local instead of roaming folder.

This is a piece of the user guide, from source code, to paste it in English since my language is Spanish, and if I open the guide from NVDA's menu it will appear in Spanish:

### System Wide Parameters {#SystemWideParameters}

NVDA allows some values to be set in the system registry which alter the system wide behaviour of NVDA.
These values are stored in the registry under one of the following keys:

* 32-bit system: `HKEY_LOCAL_MACHINE\SOFTWARE\nvda`
* 64-bit system: `HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\nvda`

The following values can be set under this registry key:

| Name |Type |Possible values |Description|
|---|---|---|---|
|`configInLocalAppData` |DWORD |0 (default) to disable, 1 to enable |If enabled, stores the NVDA user configuration in the local application data instead of the roaming application data|
|`serviceDebug` |DWORD |0 (default) to disable, 1 to enable |If enabled, disables [Secure Mode](#SecureMode) on [secure screens](#SecureScreens). Due to several major security implications, the use of this option is strongly discouraged|
|`forceSecureMode` |DWORD |0 (default) to disable, 1 to enable |If enabled, forces [Secure Mode](#SecureMode) to be enabled when running NVDA.|



Sergio Gómez

unread,
Aug 28, 2025, 12:45:45 PM (8 days ago) Aug 28
to nvda-...@nvaccess.org

Thank you very much for the information, Noelia. By the way, if the Windows user folder (C:\Users\Username) contains an accent, can problems with python be generated? I worry this and if you can clarify it...

Thank you so much.

Sergio G. C.

Noelia

unread,
Aug 28, 2025, 1:01:20 PM (8 days ago) Aug 28
to nvda-...@nvaccess.org
I'm not sure since I don't have specific info about this, but, assuming you are asking about problems with NVDA, I don't think that accented characters would cause issues.
I've tested with my second surname (Martínez), for the configuration folder of NVDA without problems, and I don't believe that if the folder corresponds to the username this causes issues.


Sergio Gómez

unread,
Aug 28, 2025, 1:05:26 PM (8 days ago) Aug 28
to nvda-...@nvaccess.org

It is that I read once a person generated a complement by having an accent in the name of the user folder, and left me a little scared, the truth. But if you don't have the problem, then I think I can be calm.

Thank you very much for answering all this, really.

Sergio G. C.

Quentin Christensen

unread,
Aug 28, 2025, 9:18:21 PM (7 days ago) Aug 28
to nvda-...@nvaccess.org
No problem Noelia!  I only thought to pick it up for anyone reading it who wasn't sure how it all worked.  You had exactly the right answer :)

Quentin Christensen

unread,
Aug 28, 2025, 9:21:18 PM (7 days ago) Aug 28
to nvda-...@nvaccess.org
I do recall seeing an issue once where NVDA was installed in a folder with unusual characters in it, even though Windows lets you.  I would recommend trying to stick to fairly simple names for system folders just in case (from memory that issue wasn't even NVDA itself but it broke eSpeak-NG I think) - ah yep, here it was: NVDA 2019.3Beta1 crashes when setting synthesizer to eSpeak NG if path name contains accented character · Issue #10607 · nvaccess/nvda

We fixed that, but you never know, it may cause issues with other programs or dependencies.

Noelia

unread,
Aug 29, 2025, 12:22:29 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org
Thanks Quentin. Sergio, please ignore my previous answer about this topic, since this is right.

Cyrille BOUGOT

unread,
Aug 29, 2025, 3:14:17 AM (7 days ago) Aug 29
to NVDA Screen Reader Discussion, Quentin Christensen
Hi

To be more complete, if you have NVDA installed in a path with accented (non-ASCII) character and try to use eSpeak, NVDA does not crash anymore. Though, eSpeak can't still run and the synth fallback to OneCore or silence, and trying to select it fails (See #11392).

Cheers,

Cyrille

Sergio Gómez

unread,
Aug 29, 2025, 5:49:05 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

Hello:

I will have a new computer in which the user folder will be called "Sergio Gómez" (yes, with the accent in "Gómez"). Do you think this could give problems? I suppose no, if Noelia has no problems, I suppose I will not have them; Even so, I prefer to ask you since I don't take any doubts.

Thank you.

Greetings.

Sergio G. C.

Sergio Gómez

unread,
Aug 29, 2025, 5:50:36 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

Do not worry, Noelia, your example of how you have it helped me anyway.

Sergio G. C.

Gene Asner

unread,
Aug 29, 2025, 8:06:15 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org
Consdering that NVDA is sed internationally and I have never seen such a
problem discussed before, I doubt it.

Gene

On 8/29/2025 4:48 AM, 'Sergio Gómez' via NVDA Screen Reader Discussion
wrote:
> Hello:
>
> I will have a new computer in which the user folder will be called
> "Sergio Gómez" (yes, with the accent in "Gómez"). Do you think this
> could give problems? I suppose no, if Noelia has no problems, I suppose
> I will not have them; Even so, I prefer to ask you since I don't take
> any doubts.
>
> Thank you.
>
> Greetings.
>
> Sergio G. C.
>
> El 29/08/2025 a las 3:21, Quentin Christensen escribió:
>> I do recall seeing an issue once where NVDA was installed in a folder
>> with unusual characters in it, even though Windows lets you.  I would
>> recommend trying to stick to fairly simple names for system folders
>> just in case (from memory that issue wasn't even NVDA itself but it
>> broke eSpeak-NG I think) - ah yep, here it was: NVDA 2019.3Beta1
>> crashes when setting synthesizer to eSpeak NG if path name contains
>> accented character · Issue #10607 · nvaccess/nvda
>> <https://github.com/nvaccess/nvda/issues/10607>
>>>> *64-bit system: `HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\nvda`
>>>>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>>>>> ---
>>>>> You received this message because you are
>>>>> subscribed to the Google Groups "NVDA
>>>>> Screen Reader Discussion" group.
>>>>> To unsubscribe from this group and stop
>>>>> receiving emails from it, send an email to
>>>>> nvda-users+...@nvaccess.org
>>>>> <mailto:nvda-users%2Bunsu...@nvaccess.org>.
>>>>> To view this discussion visit
>>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/3cc4cc09-99f2-4ea2-b580-74aadac3e9cd%40icloud.com.
>>>>>
>>>>> --
>>>>> ***
>>>>> Please note: the NVDA project has a Citizen and
>>>>> Contributor Code of Conduct.
>>>>> NV Access expects that all community members
>>>>> will read and abide by the rules set out in
>>>>> this document while participating in this group.
>>>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>>>
>>>>> You can contact the group owners and moderators
>>>>> via nvda-user...@nvaccess.org
>>>>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>>>>> ---
>>>>> You received this message because you are
>>>>> subscribed to the Google Groups "NVDA Screen
>>>>> Reader Discussion" group.
>>>>> To unsubscribe from this group and stop
>>>>> receiving emails from it, send an email to
>>>>> nvda-users+...@nvaccess.org.
>>>>> To view this discussion visit
>>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpydG%3D8c-jLLQFkxOXg5Hy-7-M94xH9vUgG8F5YE8JvOO1Q%40mail.gmail.com
>>>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpydG%3D8c-jLLQFkxOXg5Hy-7-M94xH9vUgG8F5YE8JvOO1Q%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>>
>>>>> Quentin Christensen
>>>>> Training and Support Manager
>>>>>
>>>>> NV Access
>>>>> www.nvaccess.org <http://www.nvaccess.org>
>>>>>
>>>>> Training: https://www.nvaccess.org/shop/
>>>>> Certification: https://certification.nvaccess.org/
>>>>> Subscribe to email updates (blog, new versions,
>>>>> etc): https://eepurl.com/iuVyjo
>>>>> User group:
>>>>> _https://groups.google.com/a/nvaccess.org/g/nvda-users_
>>>>> Other groups:
>>>>> https://github.com/nvaccess/nvda/wiki/Connect
>>>>> Mastodon: https://fosstodon.org/@NVAccess
>>>>> Facebook: http://www.facebook.com/NVAccess
>>>>> <http://www.facebook.com/NVAccess>
>>>>> --
>>>>> ***
>>>>> Please note: the NVDA project has a Citizen and
>>>>> Contributor Code of Conduct.
>>>>> NV Access expects that all community members will
>>>>> read and abide by the rules set out in this
>>>>> document while participating in this group.
>>>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>>>
>>>>> You can contact the group owners and moderators via
>>>>> nvda-user...@nvaccess.org
>>>>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>>>>> ---
>>>>> You received this message because you are
>>>>> subscribed to the Google Groups "NVDA Screen Reader
>>>>> Discussion" group.
>>>>> To unsubscribe from this group and stop receiving
>>>>> emails from it, send an email to
>>>>> nvda-users+...@nvaccess.org.
>>>>> To view this discussion visit
>>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAKsDpFhqjyUQUYbrZJ_L6ct47dvA7WShLx3T8WUPHzwxZnQomQ%40mail.gmail.com
>>>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAKsDpFhqjyUQUYbrZJ_L6ct47dvA7WShLx3T8WUPHzwxZnQomQ%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>>>
>>>>> --
>>>>> ***
>>>>> Please note: the NVDA project has a Citizen and
>>>>> Contributor Code of Conduct.
>>>>> NV Access expects that all community members will read
>>>>> and abide by the rules set out in this document while
>>>>> participating in this group.
>>>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>>>
>>>>> You can contact the group owners and moderators via
>>>>> nvda-user...@nvaccess.org.
>>>>> ---
>>>>> You received this message because you are subscribed to
>>>>> the Google Groups "NVDA Screen Reader Discussion" group.
>>>>> To unsubscribe from this group and stop receiving
>>>>> emails from it, send an email to
>>>>> nvda-users+...@nvaccess.org.
>>>>> To view this discussion visit
>>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpye27FHuPuZjiJ7YEYgpgKpSYtmKnY9euFRm29JkpeXFhQ%40mail.gmail.com
>>>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpye27FHuPuZjiJ7YEYgpgKpSYtmKnY9euFRm29JkpeXFhQ%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>> --
>>>> ***
>>>> Please note: the NVDA project has a Citizen and
>>>> Contributor Code of Conduct.
>>>> NV Access expects that all community members will read
>>>> and abide by the rules set out in this document while
>>>> participating in this group.
>>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>>
>>>> You can contact the group owners and moderators via
>>>> nvda-user...@nvaccess.org
>>>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>>>> ---
>>>> You received this message because you are subscribed to
>>>> the Google Groups "NVDA Screen Reader Discussion" group.
>>>> To unsubscribe from this group and stop receiving emails
>>>> from it, send an email to
>>>> nvda-users+...@nvaccess.org.
>>>> To view this discussion visit
>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/be889b21-15d7-465d-9e24-ec24f2b38b8b%40icloud.com
>>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/be889b21-15d7-465d-9e24-ec24f2b38b8b%40icloud.com?utm_medium=email&utm_source=footer>.
>>>>
>>>> --
>>>> ***
>>>> Please note: the NVDA project has a Citizen and Contributor
>>>> Code of Conduct.
>>>> NV Access expects that all community members will read and
>>>> abide by the rules set out in this document while
>>>> participating in this group.
>>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>>
>>>> You can contact the group owners and moderators via
>>>> nvda-user...@nvaccess.org.
>>>> ---
>>>> You received this message because you are subscribed to the
>>>> Google Groups "NVDA Screen Reader Discussion" group.
>>>> To unsubscribe from this group and stop receiving emails
>>>> from it, send an email to nvda-users+...@nvaccess.org.
>>>> To view this discussion visit
>>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpyeYJBvmN1Xy-MM%3DD0OhrkHdbHU-4eiQ5xsJdBbHVqu%2BTg%40mail.gmail.com
>>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpyeYJBvmN1Xy-MM%3DD0OhrkHdbHU-4eiQ5xsJdBbHVqu%2BTg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>> --
>>> ***
>>> Please note: the NVDA project has a Citizen and Contributor
>>> Code of Conduct.
>>> NV Access expects that all community members will read and
>>> abide by the rules set out in this document while
>>> participating in this group.
>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>
>>> You can contact the group owners and moderators via
>>> nvda-user...@nvaccess.org
>>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>>> ---
>>> You received this message because you are subscribed to the
>>> Google Groups "NVDA Screen Reader Discussion" group.
>>> To unsubscribe from this group and stop receiving emails from
>>> it, send an email to nvda-users+...@nvaccess.org.
>>> To view this discussion visit
>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/e48c74f0-0bb2-46d4-9197-c32badb869fa%40icloud.com
>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/e48c74f0-0bb2-46d4-9197-c32badb869fa%40icloud.com?utm_medium=email&utm_source=footer>.
>>>
>>> --
>>> ***
>>> Please note: the NVDA project has a Citizen and Contributor Code
>>> of Conduct.
>>> NV Access expects that all community members will read and abide
>>> by the rules set out in this document while participating in this
>>> group.
>>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>>
>>> You can contact the group owners and moderators via
>>> nvda-user...@nvaccess.org.
>>> ---
>>> You received this message because you are subscribed to the
>>> Google Groups "NVDA Screen Reader Discussion" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to nvda-users+...@nvaccess.org.
>>> To view this discussion visit
>>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpydHnCD%2B2xT05ubhJdBvAYH7Tef09kM_vMyjvuK%3DSxteKg%40mail.gmail.com
>>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAAtLpydHnCD%2B2xT05ubhJdBvAYH7Tef09kM_vMyjvuK%3DSxteKg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>> --
>> ***
>> Please note: the NVDA project has a Citizen and Contributor Code
>> of Conduct.
>> NV Access expects that all community members will read and abide
>> by the rules set out in this document while participating in this
>> group.
>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>
>> You can contact the group owners and moderators via
>> nvda-user...@nvaccess.org
>> <mailto:nvda-users%2Bman...@nvaccess.org>.
>> ---
>> You received this message because you are subscribed to the Google
>> Groups "NVDA Screen Reader Discussion" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to nvda-users+...@nvaccess.org.
>> To view this discussion visit
>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/ea62b128-9150-4154-a510-7db2615b2072%40icloud.com
>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/ea62b128-9150-4154-a510-7db2615b2072%40icloud.com?utm_medium=email&utm_source=footer>.
>>
>>
>>
>> --
>>
>> Quentin Christensen
>> Training and Support Manager
>>
>> NV Access
>> www.nvaccess.org <http://www.nvaccess.org>
>>
>> Training: https://www.nvaccess.org/shop/
>> Certification: https://certification.nvaccess.org/
>> Subscribe to email updates (blog, new versions, etc):
>> https://eepurl.com/iuVyjo
>> User group: _https://groups.google.com/a/nvaccess.org/g/nvda-users_
>> Other groups: https://github.com/nvaccess/nvda/wiki/Connect
>> Mastodon: https://fosstodon.org/@NVAccess
>> Facebook: http://www.facebook.com/NVAccess
>> <http://www.facebook.com/NVAccess>
>> --
>> ***
>> Please note: the NVDA project has a Citizen and Contributor Code of
>> Conduct.
>> NV Access expects that all community members will read and abide by
>> the rules set out in this document while participating in this group.
>> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
>>
>> You can contact the group owners and moderators via
>> nvda-user...@nvaccess.org.
>> ---
>> You received this message because you are subscribed to the Google
>> Groups "NVDA Screen Reader Discussion" group.
>> To unsubscribe from this group and stop receiving emails from it, send
>> an email to nvda-users+...@nvaccess.org.
>> To view this discussion visit
>> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAKsDpFgTasFOpzHsQXguqVyEqPcwKfy_3q%2BC-gw6r7%2BJsusWHQ%40mail.gmail.com
>> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/CAKsDpFgTasFOpzHsQXguqVyEqPcwKfy_3q%2BC-gw6r7%2BJsusWHQ%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>
> --
> ***
> Please note: the NVDA project has a Citizen and Contributor Code of Conduct.
> NV Access expects that all community members will read and abide by the
> rules set out in this document while participating in this group.
> https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md
> <https://github.com/nvaccess/nvda/blob/master/CODE_OF_CONDUCT.md>
>
> You can contact the group owners and moderators via
> nvda-user...@nvaccess.org.
> ---
> You received this message because you are subscribed to the Google
> Groups "NVDA Screen Reader Discussion" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to nvda-users+...@nvaccess.org
> <mailto:nvda-users+...@nvaccess.org>.
> To view this discussion visit
> https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/02eda296-7ca5-47b5-bd91-2ba361ae83b6%40icloud.com
> <https://groups.google.com/a/nvaccess.org/d/msgid/nvda-users/02eda296-7ca5-47b5-bd91-2ba361ae83b6%40icloud.com?utm_medium=email&utm_source=footer>.

Sergio Gómez

unread,
Aug 29, 2025, 9:09:08 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org
Thanks for the clarification, Gene, you leave me quieter.

Best regards.
Sergio G. C.

Rui Fontes

unread,
Aug 29, 2025, 9:52:12 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

Hello!


I have already noticed some problems with add-ons...


Best regards,

Rui Fontes
NVDA portuguese team



Sergio Gómez

unread,
Aug 29, 2025, 10:30:09 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

Don't tell me, rui?! I hope the add-ons are few, because if there were many who give problems, then I'm doing bad...

Thanks for answering, Rui.

Sergio G. C.

Rui Fontes

unread,
Aug 29, 2025, 11:15:07 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

Send me a list of the addons you use and I can check.


Best regards,

Rui Fontes
NVDA portuguese team



Sergio Gómez

unread,
Aug 29, 2025, 11:48:05 AM (7 days ago) Aug 29
to nvda-...@nvaccess.org

I have all these add-ons (quite a good list):

- Acapela TTS Voices for NVDA – Engines  
- Application Dictionary  
- TeleNVDA Remote Assistance  
- Command Helper  
- Input Lock  
- Calculator  
- Check Input Gestures  
- Clip Contents Designer  
- Clipspeak  
- Columns Review  
- Count Selected Text Items (wordCount)
- IBMTTS Driver  
- Cursor Locator  
- Day of the Week  
- Microsoft Word Text Editor: Accessibility Add-on  
- Emoticons  
- Braille Input via PC Keyboard  
- Unicode Braille Input  
- NVDA Basic Commands Extension  
- Link Manager  
- Add-on Management Tools  
- Clipboard History  
- Instant Translate  
- Microsoft Edge Discard Announcements  
- Note Diary for NVDA  
- Notepad++  
- Custom Notifications  
- ObjPad  
- Outlook Extended  
- PlaceMarkers  
- ProgressReader  
- VLC Media Player: Accessibility Add-ons  
- Resource Monitor  
- RHVoice  
- Search With  
- Update Channel Selector  
- Speech Logger  
- NVDA.ES Store  
- Time Zoner  
- Tiflotecnia Voices for NVDA  
- WhatsApp  
- WhatsAppPlus  
- Windows App Essentials  


Best regards.

Sergio G. C.
El 29/08/2025 a las 17:14, Rui Fontes escribió:

Rui Fontes

unread,
Aug 29, 2025, 12:02:22 PM (7 days ago) Aug 29
to nvda-...@nvaccess.org

I know some of them... 😊


Going to try to test as many as possible in the weekend...

With NVDA 2025.3, right?


Rui Fontes

Sergio Gómez

unread,
Aug 29, 2025, 1:35:01 PM (7 days ago) Aug 29
to nvda-...@nvaccess.org

I use NVDA 2025.2, by the way.

Thanks, Rui.

Sergio G. C.
Reply all
Reply to author
Forward
0 new messages