1. doubtfire

    doubtfire MDL Junior Member

    May 26, 2015
    94
    8
    0
  2. evaw

    evaw MDL Novice

    Jan 7, 2021
    14
    4
    0
    #18442 evaw, Feb 14, 2021
    Last edited: Feb 14, 2021
    Yes, 20h2 with last update kb4601319! (without updates - all ok)
    PS. Edge chromium browser (in internet components menu)
     
  3. evaw

    evaw MDL Novice

    Jan 7, 2021
    14
    4
    0
    No.
    This problem with 19042.804, in 19042.631 - all ok.
     
  4. amnester

    amnester MDL Junior Member

    Nov 9, 2018
    72
    18
    0
    MSMG please update PowerShell 7 v. 7. 1. 1 to v.7.1.2
     
  5. WerewolfofWaldorf

    WerewolfofWaldorf MDL Novice

    Jan 20, 2021
    8
    0
    0
    I’m trying this out in a different computer at the moment, and trying to convert the install.esd to wim. In following the command prompt, of...

    dism /get-wiminfo /wimfile:c:\win10wim-iso\sources\install.esd

    ...where I have the iso copied to to work with, I’m getting an “Error: 11 An attempt was made to load a program with an incorrect format. The DISM log file can be found at C:\windows \logs \dism\dism.log”.

    Is there something wrong with my Windows at this point that DISM.exe won’t load?
     
  6. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    MSMG, How do I uninstall OneDrive with official honey (dism)?
     
  7. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,735
    240
    ^
    hello you don't need to uninstall onedrive, just use the group policy and disable it (gpedit.msc) ok
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    I know about it! But I need to completely remove it from the image!
     
  9. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,735
    240
    ok :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    is there in the Remove Menu -> Select Windows Components.
    in [6] SystemApps
     
  11. xCyBx

    xCyBx MDL Senior Member

    Aug 6, 2018
    356
    718
    10
    #18455 xCyBx, Feb 16, 2021
    Last edited: Feb 16, 2021
    The correct way to remove OneDrive completely from windows, First show the hidden component and remove by dism.

    Run by NSudo.

    Code:
    @echo off
    
    REM get windows build
    for /f "tokens=3 delims=." %%x in ('dir "%WinDir%\servicing\Version" /a:d /b 2^>nul') do (
        set "WindowsBuild=%%x"
    )
    
    REM if arch equal x64
    If exist "%WinDir%\SysWOW64" (
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1" /v "DefVis" /t REG_DWORD /d "2" /f
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1" /v "Visibility" /t REG_DWORD /d "1" /f
        reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1\Owners" /f
    
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-WOW64-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1" /v "DefVis" /t REG_DWORD /d "2" /f
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-WOW64-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1" /v "Visibility" /t REG_DWORD /d "1" /f
        reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-WOW64-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1\Owners" /f
    )
    
    REM if arch equal x86
    If not exist "%WinDir%\SysWOW64" (
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~x86~~10.0.%WindowsBuild%.1" /v "DefVis" /t REG_DWORD /d "2" /f
        reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~x86~~10.0.%WindowsBuild%.1" /v "Visibility" /t REG_DWORD /d "1" /f
        reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~x86~~10.0.%WindowsBuild%.1\Owners" /f
    )
    
    If exist "%WinDir%\SysWOW64" (
        Dism.exe /Online /Remove-Package /PackageName:Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1
        Dism.exe /Online /Remove-Package /PackageName:Microsoft-Windows-OneDrive-Setup-WOW64-Package~31bf3856ad364e35~amd64~~10.0.%WindowsBuild%.1
    )
    
    If not exist "%WinDir%\SysWOW64" (
        Dism.exe /Online /Remove-Package /PackageName:Microsoft-Windows-OneDrive-Setup-Package~31bf3856ad364e35~x86~~10.0.%WindowsBuild%.1
    )
    
    pause
    exit
    
     
  12. xCyBx

    xCyBx MDL Senior Member

    Aug 6, 2018
    356
    718
    10
  13. nosirrahx

    nosirrahx MDL Expert

    Nov 7, 2017
    1,263
    607
    60
    For some reason CCleaner has the ability to uninstall a bunch of windows bloat that usually can't be natively, OneDrive included. DISM++ likely can also remove it from a live system.
     
  14. Bira

    Bira MDL Senior Member

    Oct 4, 2017
    286
    164
    10
    HOW CAN I LOOP LANGUAGES "TIME ZONE" AND "INPUT LOCALE" TO PUT IN THE ASSEMBLED IMAGE
     
  15. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,828
    2,429
    60
    ^ Can you formulate your question better and turn off capslock?
     
  16. Bira

    Bira MDL Senior Member

    Oct 4, 2017
    286
    164
    10
    #18460 Bira, Feb 17, 2021
    Last edited: Feb 17, 2021
    I would like to make a "loop => For", to identify, for each installed language assembled the "Time Zone" and "Input Locale"