By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!reg.exe query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
@echo off
cls
set DUMP=%temp%\dump.txt
for %%a in ("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" ^
"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" ^
) DO CALL :CHECKREG %%a
::DONE
del "%DUMP%"
goto :EOF
:CHECKREG
REG.exe export %1 ""%DUMP%"" /y >nul
type "%DUMP%"
for /f "usebackq skip=3 tokens=2 delims==" %%y in (`type "%DUMP%"`) DO (if not exist %%y\ echo MISSING : %%y )
echo.----------------------------------------------------------
goto :EOF