Windows – Disable Background Intelligent Transfer Service

serviceswindows 10

I try to Disable Background Intelligent Transfer Service in win 10 but after restart my computer rerun and start for download .
I disable this service in services of windows. I first right click on the service name and choose stop and then right click on the service name and choose properties under general tab select StartUp Type : Disabled.

How can I prevent of rerun this service in start of computer?
enter image description here

Best Answer

You cannot have control over windows services as you used to. Windows 10 can start any services and re-enable any features at any time without any notifications. And it does that, specially when updates are applied.

You can remove some services (like ASP.NET State Service or Application Host Helper Service) by using the Turn Windows Features On or Off feature, but the main windows ones you cannot actually control.

The only way to make sure the services you want are disabled is to make a batch file that runs at startup and disabled them every time.

sc config "NameOfService" start= disabled
sc stop "NameOfService"

Note: that space after "=" must be there.