Menu

#9 Using Win10lite on Enterprise 2016 LTSB

1.0
closed
nobody
None
2018-08-14
2017-05-29
fred-0
No

If I were to to use Win10lite on Enterprise 2016 LTSB, do I need to make any modifications to the scripts since Store, Edge and Cortana, among others, are not included in the OS? Thanks

Discussion

  • fred-0

    fred-0 - 2017-05-30

    I went ahead and just deleted the following lines from rmApps.cmd.

    echo.
    echo.
    echo.Following Windows Apps can be deleted...
    echo.Press "y" and enter to disable this service.
    echo.Press enter to do nothing.
    echo.Running DISM.EXE
    echo.Please wait...
    setlocal
    for /f "tokens=1,2 delims=:" %%i in ('dism /online /Get-ProvisionedAppxPackages') do (call:setupWindowsApps %%i %%j)
    endlocal

    :setupWindowsApps
    if /i not %1==PackageName goto:eof
    call:formatPkgName result %2
    find /i "%result%" WindowsApps.inf >nul
    if errorlevel 1 goto:rmWindowsApp
    goto:eof

    :rmWindowsApp
    set /p ask=Do you want to delete this app "%result%" (y/N)? || set ask=n
    if /i not %ask%==y goto:eof
    dism /Online /Remove-ProvisionedAppxPackage /PackageName:%2
    goto:eof

    and deleted "WindowsApps.inf" file.

     
  • sickdroid

    sickdroid - 2018-08-14
    • status: open --> closed
     

Log in to post a comment.