Why testing & installing the "old" build instead of using the newer Windows 10 Insider Preview Build 17655.1000? https://forums.mydigitallife.net/th...-17655-1000-pc-fast-skip-rs_prerelease.76955/
there is no secret that dism since 16299 can add cabs and esd, so only editionpack-professional-package is needed to be extract i think
Well, knowing what I know, I must have missed this, and you just save a tremendous amount of time! Thank you so much.
hi there is an account named "DefaultAccount" description says it is a user account managed by the system . any idea whats the use of it , how can i disable it safely ? can it create a vulnerability in the system ?
Once again I forgot the user on this forum who published this fix. @Enthousiast knows it off the top of his head! Save this as a command file. Code: @echo off (cd /d "%~dp0")&&(NET FILE||(powershell start-process -FilePath '%0' -verb runas)&&(exit /B)) >NUL 2>&1 SET UserToRemove="defaultuser0" REM 'CALL' check registry subroutine check for existance and remove. FOR /f "tokens=*" %%a IN ('REG query "HKLM\Software\Microsoft\Windows NT\CurrentVersion\ProfileList"^|find /i "s-1-5-21"') DO CALL :ChkRegistry "%%a" GOTO :Finish :ChkRegistry REM ----------------------------------------------------------------------- REM Results of ERRORLEVEL are: REM 0 -- If UserToRemove is found in the registry then run rest of script. REM 1 -- If UserToRemove is NOT found in the registry then exit script. REM ----------------------------------------------------------------------- FOR /f "tokens=3" %%g in ('reg query %1 /v ProfileImagePath') DO SET UserProfilePath=%%g FOR /f "tokens=3 delims=\" %%e in ('echo %UserProfilePath%') DO SET ProfileName=%%e FOR /f "tokens=1 delims=." %%f IN ('echo %ProfileName%') DO SET ParseRegistry=%%f ECHO %UserToRemove%|find /I "%ParseRegistry%" > NUL IF ERRORLEVEL=1 GOTO :Finish REM Remove that user... RMDIR "%SystemDrive%\Users\%ProfileName%" /s /q REG delete %1 /f >nul IF EXIST "%SystemDrive%\Users\%ProfileName%" GOTO :RetryDirRemove GOTO :Finish :RetryDirRemove TAKEOWN /F "%ProfileName%" >nul TIMEOUT /T 2 >nul ICACLS "%ProfileName%" /GRANT *S-1-1-0:F >nul TIMEOUT /T 2 >nul RMDIR "%SystemDrive%\Users\%ProfileName%" /s /q :Finish REM End of script...