I ran this as a .Bat file and now my Windows Update Fails Is there anyway of enabling Windows Update again ? Thank you and regards Sir
I tried these scripts and regs and now my windows update is not working anymore Can someone please kindly help me get windows update to work again ? Thank you
@abbodi1406 I'm trying to track down what is causing explorer to hang/crash when waking from sleep on 1709 and 1809. I'm thinking it might be related to my overzealous disabling of services. You posted these 18 months ago.. Do you have a current list of services safe to disable? Which windows 10 services you guys disable ?! Which windows 10 services you guys disable ?!
Spoiler Code: for %%G in ( BthAvctpSvc CertPropSvc CDPSvc CscService DiagTrack DisplayEnhancementService DoSvc DevicesFlow DevQueryBroker DsmSvc DusmSvc DPS diagnosticshub.standardcollector.service dmwappushservice GraphicsPerfSvc LxpSvc MapsBroker NaturalAuthentication PcaSvc RemoteRegistry SEMgrSvc SharedRealitySvc SmsRouter Spooler TrkWks StiSvc SecurityHealthService Sense TabletInputService WaaSMedicSvc WarpJITSvc WerSvc wercplsupport WpcMonSvc WMPNetworkSvc WSearch WdNisDrv WdNisSvc WinDefend XboxNetApiSvc ) do ( sc config %%G start= disabled ) for %%G in ( BcastDVRUserService BluetoothUserService CaptureService CDPUserSvc ConsentUxUserSvc DevicePickerUserSvc MessagingService OneSyncSvc PhoneSvc PimIndexMaintenanceSvc PrintWorkflowUserSvc UnistoreSvc UserDataSvc ) do reg query HKLM\SYSTEM\ControlSet001\Services\%%G /v Start 1>nul 2>nul && ( reg add HKLM\SYSTEM\ControlSet001\Services\%%G /v Start /t REG_DWORD /d 4 /f reg add HKLM\SYSTEM\ControlSet001\Services\%%G /v UserServiceFlags /t REG_DWORD /d 0 /f ) rem 1809 required for %%G in ( cbdhsvc DevicesFlowUserSvc WpnUserService ) do reg query HKLM\SYSTEM\ControlSet001\Services\%%G /v Start 1>nul 2>nul && ( reg add HKLM\SYSTEM\ControlSet001\Services\%%G /v Start /t REG_DWORD /d 3 /f reg add HKLM\SYSTEM\ControlSet001\Services\%%G /v UserServiceFlags /t REG_DWORD /d 3 /f )
I first set the ones I don't want to manual and only disable them if they insist on starting up. I try to use group polices first before disabling services. Also I'm running LTSC and don't use UWP apps so a couple disabled services are related to that. Here's what I end up with; Code: BitLocker Drive Encryption Service Connected Devices Platform User Service Connected User Experiences and Telemetry File History Service GameDVR and Broadcast User Service IP Helper Network Connection Broker Network Connectivity Assistant Touch Keyboard and Handwriting Panel Service Update Orchestrator Service Windows Biometric Service Windows Camera Frame Server Windows Search Windows Update Windows Update Medic Service WinHTTP Web Proxy Auto-Discovery Service
@qwesta same as explained in second post https://forums.mydigitallife.net/th...services-you-guys-disable.75202/#post-1374839 run it during installation
No change to servicies only these schedule tasks Code: "Microsoft\Windows\Diagnosis\RecommendedTroubleshootingScanner" "Microsoft\Windows\Flighting\FeatureConfig\ReconcileFeatures" "Microsoft\OneCore\DirectX\DirectXDatabaseUpdater" and those are locked Code: "Microsoft\Windows\WaaSMedic\PerformRemediation" "Microsoft\Windows\UpdateOrchestrator\Backup Scan" "Microsoft\Windows\WindowsUpdate\sihpostreboot"
For the locked ones I open cmd.exe in execti and use to disable: schtasks /Change /TN "Microsoft\Windows\WaaSMedic\PerformRemediation" /Disable schtasks /Change /TN "Microsoft\Windows\UpdateOrchestrator\Backup Scan" /Disable schtasks /Change /TN "Microsoft\Windows\WindowsUpdate\sihpostreboot" /Disable
Code: SCHTASKS /Change /TN "Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /DISABLE This causes setup not to advance to the username screen in OOBE. Thanks, I thought this service was useless and I disabled it. Since I have never used Win10 1809 I thought this version of Windows no longer had this feature.
@abbodi1406 Hello and thank you for your contribution! Have you some news for Windows 10 1809-1909? In your last post you suggest to disable the DevicesFlow service, but it doesn't exist, only DevicesFlowUserSvc and DevicesFlowUserSvc_?????. Thanks!!