Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://superuser.com/questions/950997/disable-error-reporting-in-windows-10-home?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
What is left is background intelligent transfer service ... i disabled it and stoped it in services yet it runs back after a few minutes ...
Read the background carefully.
https://answers.microsoft.com/en-us/windows/forum/windows_10-performance/how-do-i-permanantly-disable-bits-background/61ed6216-15d2-4b2b-ae82-a20e61d57d3b?auth=1
Step 1:
1.1. Open notepad.exe and type the following command.
@echo off
sc stop BITS
sc config BITS start= disabled
exit
1.2. Save it as Disable_BITS.bat and after saving it remember its location as we need it later.
Step 2:
2.1. Open Task Scheduler from Start button and typing it.
2.2. In the scheduler look at the right Action sidebar and click on Create Task. Please do not choose Create Basic Task, because it will not provide us with higher permissions for the execution of our program.
2.3. It will ask for name and I prefer naming it as Disable BITS. Leave the description, no need of that.
2.4. Check mark the option Run with highest privileges.
2.5. Click Next, and in Triggers tab, create New trigger with “On an event”
2.6. In Log option, choose Microsoft-Windows-Bits-Client/Analytic.
2.7. In Source option, choose Bits-Client.
2.8. Leave the Event ID, that is not necessary.
2.9. Now create another trigger with the same options but choose Mircrosoft-Windows-Bits-Client/Operational.
2.10. Click Next, and navigate to Action tab.
2.11. Click New, and Browse the Disable_BITS.bat file we made in Step 1.
2.12. Leave the Optional and click Next.
2.13. Uncheck all the options in Conditions tab.
2.14. Also uncheck “Stop the task if it runs longer than” from Settings tab. Click OK.
That's all. Now whenever the Background Intelligent Transfer Service will run, our special task will execute and run the code which will ultimately stop the service and that will not let it use our precious data.
These steps are shown in the following video very nicely, do check this out:
https://www.youtube.com/watch?v=t-xnDU7e7yg
Why don't I have that thing ?!?!