[DISCUSSION] Windows 10 Insider Preview Build 17650.1001 (PC) [FAST SKIP - RS_Prerelease]

Discussion in 'Windows 10' started by Enthousiast, Apr 19, 2018.

  1. MrG

    MrG MDL Expert

    May 31, 2010
    1,403
    1,625
    60
  2. pp03

    pp03 MDL Senior Member

    Apr 12, 2014
    279
    46
    10
  3. MrG

    MrG MDL Expert

    May 31, 2010
    1,403
    1,625
    60
    That's it?
    How about Lean too?
     
  4. pp03

    pp03 MDL Senior Member

    Apr 12, 2014
    279
    46
    10
    #204 pp03, May 2, 2018
    Last edited: May 2, 2018
    i want to make ltsc look-alike version like dhjohns has done
     
  5. bkul

    bkul MDL Member

    Apr 2, 2015
    163
    44
    10
    Open Curly bracket correspondent to close curly bracket next to exit statement is absent :)
     
  6. kosta20071

    kosta20071 MDL Addicted

    Jan 8, 2012
    791
    483
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    I will put out instructions when I can. Maybe tonight, maybe tomorrow, I don't know.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. pp03

    pp03 MDL Senior Member

    Apr 12, 2014
    279
    46
    10
    thanks, waiting
     
  9. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    Here you go!
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. pp03

    pp03 MDL Senior Member

    Apr 12, 2014
    279
    46
    10
    one simple thing :) how to extract esd?
     
  11. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    7-zip
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    WTF????? :eek:
     
  14. pp03

    pp03 MDL Senior Member

    Apr 12, 2014
    279
    46
    10
    #217 pp03, May 3, 2018
    Last edited: May 4, 2018
    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
     
  15. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    Well, knowing what I know, I must have missed this, and you just save a tremendous amount of time! Thank you so much.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Ahsan

    Ahsan MDL Addicted

    Dec 3, 2009
    828
    167
    30
    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 ?
     
  17. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    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...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...