@Echo Off
Title Reg Converter v1.2 & Color 1A
cd %systemroot%\system32
call :IsAdmin
REM ; created by Walter Glenn
REM ; for How-To Geek
REM ; article: http://www.howtogeek.com/266621/how-to-make-windows-10-accept-file-paths-over-260-characters/
Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /v "LongPathsEnabled" /t REG_DWORD /d "1" /f
Exit
:IsAdmin
Reg.exe query "HKU\S-1-5-19\Environment"
If Not %ERRORLEVEL% EQU 0 (
Cls & Echo You must have administrator rights to continue ...
Pause & Exit
)
Cls
goto:eof
🟩 🟩 🟩
登錄檔
Windows Registry Editor Version 5.00
; created by Walter Glenn
; for How-To Geek
; article: http://www.howtogeek.com/266621/how-to-make-windows-10-accept-file-paths-over-260-characters/
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001