Reputation: 31
I set the registry key HKLM\SYSTEM\CurrentControlSet\Control\FileSystem LongPathsEnabled to 1, so that long paths are enabled on my system. Additionally every application, that should be allowed to use long file paths, needs to include a longPathAware tag in its application manifest. So is there a way to make this work for an IIS application? I already tried to include the longPathAware tag in an application manifest of my main .dll, but this still does not seem to work.
Upvotes: 3
Views: 1947
Reputation: 3504
Have you tried to modify the value of system.web/httpRuntime/maxURLLength?
The default limit of maxURLLength is 260.
Upvotes: 1