| 
	
		|  Autor | Tema: DoSvc BITS Wuauserv ¿Como evitar que devoren el ancho de banda W10?  (Leído 6,254 veces) |  
	| 
			| 
					
						| henao81 
								
								 Desconectado 
								Mensajes: 37
								
								   | 
 
Saludos, bueno el tema es ese mismo, el ancho de banda es devorado casi en su totalidad por esos servicios (DoSvc, BITS y Wuauserv) que forman parte del célebre svchost.exe (netsvcs) yo, cuando ando apurado simplemente voy al Monitor de recursos y detengo el servicio. pero debe haber otra forma, algo automático a estas alturas del Win10... o no?? que el usuario decida cuando actualizar... 
 
 |  
						| 
								|  |  
								|  |  En línea | 
 
 |  |  |  | 
			| 
					
						| djinnxs 
								
								 Desconectado 
								Mensajes: 1
								
								
								
								
								
								   | 
 
ejecuta por comando estosc stop DoSvc
 sc config DoSvc start= disabled
 
 o hacete un acrhivo .bat yo em arme este para optimizar mi pc con win10
 
 :checkPrivileges
 NET FILE 1>NUL 2>NUL
 if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
 :getPrivileges
 if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
 
 setlocal DisableDelayedExpansion
 set "batchPath=%~0"
 setlocal EnableDelayedExpansion
 ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs"
 ECHO args = "ELEV " >> "%temp%\OEgetPrivileges.vbs"
 ECHO For Each strArg in WScript.Arguments >> "%temp%\OEgetPrivileges.vbs"
 ECHO args = args ^& strArg ^& " "  >> "%temp%\OEgetPrivileges.vbs"
 ECHO Next >> "%temp%\OEgetPrivileges.vbs"
 ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs"
 "%SystemRoot%\System32\WScript.exe" "%temp%\OEgetPrivileges.vbs" %*
 exit /B
 
 :gotPrivileges
 if '%1'=='ELEV' shift /1
 setlocal & pushd .
 cd /d %~dp0
 
 :Start
 sc stop DiagTrack
 sc config DiagTrack start= disabled
 sc stop dmwappushservice
 sc config dmwappushservice start= disabled
 sc stop Fax
 sc config Fax start= disabled
 sc stop wuauserv
 sc config wuauserv start= disabled
 sc stop WSearch
 sc config WSearch start= disabled
 sc stop BITS
 sc config BITS start= disabled
 sc stop MapsBroker
 sc config MapsBroker start= disabled
 sc stop TabletInputService
 sc config TabletInputService start= disabled
 sc stop WbioSrvc
 sc config WbioSrvc start= disabled
 sc stop NaturalAuthentication
 sc config NaturalAuthentication start= disabled
 sc stop SysMain
 sc config SysMain start= disabled
 sc stop TapiSrv
 sc config TapiSrv start= disabled
 sc stop SCardSvr
 sc config SCardSvr start= disabled
 sc stop DPS
 sc config DPS start= disabled
 sc stop TrkWks
 sc config TrkWks start= disabled
 sc stop iphlpsvc
 sc config iphlpsvc start= disabled
 sc stop RemoteRegistry
 sc config RemoteRegistry start= disabled
 sc stop stisvc
 sc config stisvc start= disabled
 sc stop DoSvc
 sc config DoSvc start= disabled
 reg add HKLM\SYSTEM\CurrentControlSet\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener\ /v Start /t REG_DWORD /d 0 /f
 reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection\ /v AllowTelemetry /t REG_DWORD /d 0 /f
 reg add HKLM\SOFTWARE\Microsoft\WindowsSelfHost\UI\Visibility\ /v DiagnosticErrorText /t REG_DWORD /d 0 /f
 reg add HKLM\SOFTWARE\Microsoft\WindowsSelfHost\UI\Strings\ /v DiagnosticErrorText /t REG_SZ /d "" /f
 reg add HKLM\SOFTWARE\Microsoft\WindowsSelfHost\UI\Strings\ /v DiagnosticLinkText /t REG_SZ /d "" /f
 
 
 |  
						| 
								|  |  
								|  |  En línea | 
 
 |  |  |  | 
			| 
					
						| EdePC | 
 
Saludos,
 - Windows 10 trabaja constantemente con wuaserv (Windows Update) para actualizar el Sistema Operativo, drivers, Antivirus, telemetría, etc, este trabaja con BITS (Servicio de transferencia inteligente en segundo plano) para controlar el ancho de banda que usa el usuario y el ancho de banda que usa Windows Updata dándole más importancia al ancho de banda del usuario. DoSvc (Optimización de Entrega) se encarga ver catalogar las actualizaciones que se van a recibir.
 
 - Windows 10 es así, si eres de los usuarios que quieren estar al día con su sistema en todo momento lo puedes dejar como está. Si eres un usuario que prefiere actualizar a mano cuando tenga tiempo, debes ir a Configuración de Windows > Redes e Internet > Estado > cambiar propiedades de conexión > y activar la conexión de uso medido. De esta manera Windows solo busca no busca ni descarga nada, uno debe de ir a Configuración de windows > Actualización y Seguridad > Buscar actualizaciones y aceptar descargarlas.
 
 - Los métodos de Detener servicios o deshabilitarlos no son permanentes, ya que Windows los comprueba y activa cada cierto tiempo.
 |  
						| 
								|  |  
								|  |  En línea | 
 
 |  |  |  |  |  
 
	
 
   |