How to I stop MoUsoCoreWorker.exe from running or get it to run & end?

Page 7 of 9 FirstFirst ... 56789 LastLast

  1. Posts : 7,606
    Windows 10 Home 20H2
       #61

    BazzaG said:
    Nope.
    Why not try hiding them?

    BazzaG said:
    I did a clean install of Win10 around October last year.
    There is no reason why your clean installed 20H2 is different from mine unless you afterward installed something I have not installed.
      My Computer


  2. Posts : 294
    Windows 10 Home
       #62

    On my pc's, MoUsoCoreWorker.exe is triggered by just opening PC Settings. However it disappears after a short time after that.
    Mark
      My Computer


  3. Posts : 21,421
    19044.1586 - 21H2 Pro x64
       #63

    When I woke my PC up in the morning, MoUsoCoreWorker.exe was listed in powercfg output. Less then an hour later, it's not listed. I'm not sure if that time varies.

    I then opened Windows Update, but didn't check for updates as I have updates paused, then I went to Windows Security and checked for updates and still no MoUsoCoreWorker.exe reported in powercfg output.

    UPDATE:
    I had to restart my PC for unrelated reasons and MoUsoCoreWorker.exe wasn't in the powercfg output.
    Last edited by steve108; 07 Jun 2021 at 09:50.
      My Computer


  4. Posts : 7,606
    Windows 10 Home 20H2
       #64

    You may use the following PowerShell command to check for updates:
    Code:
    (new-object -com "Microsoft.Update.Session").CreateupdateSearcher().Search("IsInstalled=0 and IsHidden=0").Updates|FT -property Title
    It will just display the updates but not download/install them.

    Code:
    Windows PowerShell
    Copyright (C) Microsoft Corporation. All rights reserved.
    
    Try the new cross-platform PowerShell https://aka.ms/pscore6
    
    PS C:\Windows\system32> (new-object -com "Microsoft.Update.Session").CreateupdateSearcher().Search("IsInstalled=0 and IsHidden=0").Updates|FT -property Title
    
    Title
    -----
    2020-11 Cumulative Update for .NET Framework 3.5 and 4.8 for Windows 10, version 20H2 for x64 (KB4580419)
    
    
    PS C:\Windows\system32> powercfg /requests
    DISPLAY:
    None.
    
    SYSTEM:
    None.
    
    AWAYMODE:
    None.
    
    EXECUTION:
    None.
    
    PERFBOOST:
    None.
    
    ACTIVELOCKSCREEN:
    None.
    
    PS C:\Windows\system32>
      My Computer


  5. Posts : 21,421
    19044.1586 - 21H2 Pro x64
       #65

    Matthew Wai said:
    You may use the following PowerShell command to check for updates:
    Code:
    (new-object -com "Microsoft.Update.Session").CreateupdateSearcher().Search("IsInstalled=0 and IsHidden=0").Updates|FT -property Title
    It will just display the updates but not download/install them.

    ..........
    Very cool Matthew. Is there a way to make it show optional PREVIEW updates? Or does it already show optional PREVIEW updates and I have none pending installation? ...... which would be surprising to me.
    Last edited by steve108; 07 Jun 2021 at 11:15.
      My Computer


  6. Posts : 4,224
    Windows 10
       #66

    @steve108: just tried it on my production desktop and it showed an (optional) driver update as my only outstanding item. So it appears that -- on this system at least -- the answer to your question "Does it already show optional updates...?" is "Yes!"
    HTH,
    --Ed--

    How to I stop MoUsoCoreWorker.exe from running or get it to run & end?-image.png
      My Computers


  7. Posts : 21,421
    19044.1586 - 21H2 Pro x64
       #67

    EdTittel said:
    @steve108: just tried it on my production desktop and it showed an (optional) driver update as my only outstanding item. So it appears that -- on this system at least -- the answer to your question "Does it already show optional updates...?" is "Yes!"
    HTH,
    --Ed--

    How to I stop MoUsoCoreWorker.exe from running or get it to run & end?-image.png
    Hi Ed,

    0. Thanks for your reply. Yes, the command does show an optional driver update for me too, as your reported. I have that update blocked because it's a printer driver from 2009.
    1. I asked the wrong question. I meant to ask "Is there a way to show pending PREVIEW updates"
    2. The powershell command wasn't showing any pending PREVIEW updates, so I decided to unpause Windows Updates and suddenly the Preview Update for .NET starting downloading, so I disconnected from the internet to stop it. So my question in 1. still remains Is there a way to show pending PREVIEW updates without me unpausing WU.
    3. This nonsense of M$ shoving PREVIEW updates down my throat is highly annoying.
      My Computer


  8. Posts : 4,224
    Windows 10
       #68

    @steve108: OK, now I understand. I don't see any mechanism to distinguish and block updates by category. Maybe @Matthew Wai can shed more light on this specific issue? I still use WUMT and/or WUMgr to handle update selection prior to download/install myself. Recently, in fact, WUMT has proved instrumental in lifting a recurring logjam on Defender updates on an old (2012) Lenovo laptop. =e=
      My Computers


  9. Posts : 16,932
    Windows 10 Home x64 Version 22H2 Build 19045.4170
       #69

    steve108 said:
    1. I asked the wrong question. I meant to ask "Is there a way to show pending PREVIEW updates"
    Steve, Ed,

    I have a PS script that includes Previews. For example, it currently shows me 2021-05 Cumulative Update Preview for Windows 10 Version 21H1 for x64-based Systems (KB5003214)

    I think it will show that even if updates are paused but I never use pause so cannot be certain.

    Perhaps you'd like to try it.

    draft v1.ps1
    Code:
    $Session = new-object -com "Microsoft.Update.Session"
    $ctr = "(IsInstalled=0 and DeploymentAction=*)"
    $Result = $Session.CreateupdateSearcher().Search($ctr).Updates
    $Result | Select Title,Identity,IsHidden,LastDeploymentChangeTime,KBArticleIDs,IsInstalled,MaxDownloadSize,Description,SupportUrl | Format-List -Property Title,@{l='UpdateID';e={$_.Identity.UpdateID}},@{l='PublishedDate';e={$_.LastDeploymentChangeTime.ToString('yyyy-MM-dd')}},@{l='KBArticle';e={$_.KBArticleIDs}},IsHidden,IsInstalled,MaxDownloadSize,Description,SupportUrl
    The code looks a bit messy because I'm experimenting with output options and have not done any tidying up.
    But it runs reliably and gives me correct results.
    In case of word wrapping issues with the post, note that it has 4 lines beginning
    Code:
    $Session = ...
    $ctr = ...
    $Result = ...
    $Result | ...

    Sample output
    Code:
    Title           : 2021-05 Cumulative Update Preview for Windows 10 Version 21H1 for x64-based Systems (KB5003214)
    UpdateID        : 9cf27d23-e3ca-47ff-8ccc-4df99d5326fb
    PublishedDate   : 2021-05-25
    KBArticle       : 5003214
    IsHidden        : False
    IsInstalled     : False
    MaxDownloadSize : 110423184013
    Description     : Install this update to resolve issues in Windows. For a complete listing of the issues that are
                      included in this update, see the associated Microsoft Knowledge Base article for more information.
                      After you install this item, you may have to restart your computer.
    SupportUrl      : https://support.microsoft.com/help/5003214


    I call it a draft because I'm actually trying to emulate in PS what I have previously used PSWindowsUpdate and then VBS for and I'm not interested in its current interim state. I intend to complete late in the year 202* but might well be late.
    It is mainly based on abbodi's response in start-wuscan cmdlet is not available ... - MSDocs as well as some other MSDocs references.

    Best of luck,
    Denis
      My Computer


  10. Posts : 21,421
    19044.1586 - 21H2 Pro x64
       #70

    Thanks @Try3 for sharing your script,

    I tried the script lines in a powershell windows and it's only showing the one single pending printer driver. It's not showing a pending .NET Prievew update which M$ tried to install when I unpaused updates (but I stopped it by disconnecting from the internet before download finished and it's not it WU history as being installed either). It's not showing the KB5003214 which I don't have installed either. My WU is currently paused.

    Will be interesting to see what others report.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 16:50.
Find Us




Windows 10 Forums