The proper way to enable long paths in Windows is documented here
It can be implemented by dropping the following into a .reg file and running it if you aren't comfortable editing le registre directly.
`Windows Éditeur du registre Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001
The real problem 90% of the time is going to be getting applications to support it and not the système de fichiers. Programmers hardcode [MAX_PATH](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry) (260 chars) into their code and have been doing so for many many years.
It is lazy programming rather than using the windows heap to store the path names.
Some applications are written well enough to get around this but you will find more that don't work than do.