J'ai besoin de enable long paths but my Windows 11 Home edition does not have the stratégie de groupe editor.
Existe-t-il un moyen de enable this from the ligne de commande or install stratégie de groupe editor on my machine?
Comment activer long paths on Windows 11 Home?
Re: Comment activer long paths on Windows 11 Home?
The proper way to enable long paths in Windows is documented [here](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry)
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.
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.