Sebastian Peter
Sebastian Peter

Reputation: 31

Adapting maximum file path length (>260 chars) for an IIS application on Windows 10 server

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

Answers (1)

Jokies Ding
Jokies Ding

Reputation: 3504

Have you tried to modify the value of system.web/httpRuntime/maxURLLength?

The default limit of maxURLLength is 260.

enter image description here

Upvotes: 1

Related Questions