chen3feng / article

本人的文章和笔记,充当懒人 Blog 来用。
9 stars 1 forks source link

修改 Windows 最长路径限制 #35

Open chen3feng opened 1 year ago

chen3feng commented 1 year ago

参照Windows文档,在 Windows 10 及以后版本以管理员权限执行:

New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
-Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force

即可。