Advertisement
ZeroCool22

Disable Win. 10 Junk APP'a and more..

Aug 7th, 2015
15,341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.74 KB | None | 0 0
  1. Como desactivar/Borrar todas las mierdas de APP's que no usan y demas basuras:
  2.  
  3. Copian y pegan el codigo de abajo en el wordpad y lo guardan como un .bat
  4.  
  5. @ECHO OFF
  6. COLOR 1F
  7. SET V=1.7
  8. TITLE Windows 10 TNBT: The Next Big Tweak v%V% (x64)
  9. ECHO #########################################################
  10. ECHO # #
  11. ECHO # WINDOWS 10 BUILD 10240 X64 TNBT: THE NEXT BIG TWEAK #
  12. ECHO # #
  13. ECHO # CURRENT REVISION: %V% #
  14. ECHO # AUTHOR: SEBASTIAN KOEHLING #
  15. ECHO # #
  16. ECHO #########################################################
  17.  
  18. REM ======================= Registry tweaks =======================
  19. ECHO.
  20. :regstart
  21. set /p registry="Apply registry tweaks? y/n: "
  22. if '%registry%' == 'n' goto servstart
  23. if /i "%registry%" neq "y" goto regstart
  24.  
  25. :reg0start
  26. set /p reg0="Replace Utilman with CMD? y/n: "
  27. if '%reg0%' == 'n' goto reg1start
  28. if /i "%reg0%" neq "y" goto reg0start
  29. reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe" /v "Debugger" /t REG_SZ /d "cmd.exe" /f > NUL 2>&1
  30.  
  31. :reg1start
  32. set /p reg1="Disable Quick Access as default view in Explorer? y/n: "
  33. if '%reg1%' == 'n' goto reg2start
  34. if /i "%reg1%" neq "y" goto reg1start
  35. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d 0 > NUL 2>&1
  36.  
  37. :reg2start
  38. set /p reg2="Show computer shortcut on desktop? y/n: "
  39. if '%reg2%' == 'n' goto reg3start
  40. if /i "%reg2%" neq "y" goto reg2start
  41. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f > NUL 2>&1
  42.  
  43. :reg3start
  44. set /p reg3="Show file extensions? y/n: "
  45. if '%reg3%' == 'n' goto reg4start
  46. if /i "%reg3%" neq "y" goto reg3start
  47. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f > NUL 2>&1
  48.  
  49. :reg4start
  50. set /p reg4="Disable lockscreen? y/n: "
  51. if '%reg4%' == 'n' goto reg5start
  52. if /i "%reg4%" neq "y" goto reg4start
  53. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d 1 /f > NUL 2>&1
  54.  
  55. :reg5start
  56. set /p reg5="Enable classic control panel view? y/n: "
  57. if '%reg5%' == 'n' goto reg6start
  58. if /i "%reg5%" neq "y" goto reg5start
  59. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "ForceClassicControlPanel" /t REG_DWORD /d 1 /f > NUL 2>&1
  60.  
  61. :reg6start
  62. set /p reg6="Hide indication for compressed NTFS files? y/n: "
  63. if '%reg6%' == 'n' goto reg7start
  64. if /i "%reg6%" neq "y" goto reg6start
  65. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCompColor" /t RED_DWORD /d 0 /f > NUL 2>&1
  66.  
  67. :reg7start
  68. set /p reg7="Disable Windows Update sharing? y/n: "
  69. if '%reg7%' == 'n' goto reg8start
  70. if /i "%reg7%" neq "y" goto reg7start
  71. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DownloadMode" /t REG_DWORD /d 0 /f > NUL 2>&1
  72. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d 0 /f > NUL 2>&1
  73.  
  74. :reg8start
  75. set /p reg8="Remove Pin to start? y/n: "
  76. if '%reg8%' == 'n' goto reg9start
  77. if /i "%reg8%" neq "y" goto reg8start
  78. reg delete "HKEY_CLASSES_ROOT\exefile\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
  79. reg delete "HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
  80. reg delete "HKEY_CLASSES_ROOT\mscfile\shellex\ContextMenuHandlers\PintoStartScreen" /f > NUL 2>&1
  81.  
  82. :reg9start
  83. set /p reg9="Classic vertical icon spacing? y/n: "
  84. if '%reg9%' == 'n' goto reg10start
  85. if /i "%reg9%" neq "y" goto reg9start
  86. reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v "IconVerticalSpacing" /t REG_SZ /d "-1150" /f > NUL 2>&1
  87.  
  88. :reg10start
  89. set /p reg10="Remove versioning tab from properties? y/n: "
  90. if '%reg10%' == 'n' goto reg11start
  91. if /i "%reg10%" neq "y" goto reg10start
  92. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v NoPreviousVersionsPage /t REG_DWORD /d 1 /f > NUL 2>&1
  93.  
  94. :reg11start
  95. set /p reg11="Disable jump lists? y/n: "
  96. if '%reg11%' == 'n' goto reg12start
  97. if /i "%reg11%" neq "y" goto reg11start
  98. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Start_TrackDocs" /t REG_DWORD /d 0 /f > NUL 2>&1
  99.  
  100. :reg12start
  101. set /p reg12="Remove telemetry and data collection? y/n: "
  102. if '%reg12%' == 'n' goto reg13start
  103. if /i "%reg12%" neq "y" goto reg12start
  104. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v PreventDeviceMetadataFromNetwork /t REG_DWORD /d 1 /f > NUL 2>&1
  105. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f > NUL 2>&1
  106. reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v DontOfferThroughWUAU /t REG_DWORD /d 1 /f > NUL 2>&1
  107. reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v "CEIPEnable" /t REG_DWORD /d 0 /f > NUL 2>&1
  108. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "AITEnable" /t REG_DWORD /d 0 /f > NUL 2>&1
  109. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableUAR" /t REG_DWORD /d 1 /f > NUL 2>&1
  110. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f > NUL 2>&1
  111. reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!dss-winrt-telemetry.js" /t REG_DWORD /d 0 /f > NUL 2>&1
  112. reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry.js" /t REG_DWORD /d 0 /f > NUL 2>&1
  113. reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry-event_8ac43a41e5030538" /t REG_DWORD /d 0 /f > NUL 2>&1
  114. reg add "HKLM\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-c..lemetry.lib.cortana_31bf3856ad364e35_10.0.10240.16384_none_40ba2ec3d03bceb0" /v "f!proactive-telemetry-inter_58073761d33f144b" /t REG_DWORD /d 0 /f > NUL 2>&1
  115.  
  116. :reg13start
  117. set /p reg13="Apply Internet Explorer 11 tweaks? y/n: "
  118. if '%reg13%' == 'n' goto reg14start
  119. if /i "%reg13%" neq "y" goto reg13start
  120. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DoNotTrack" /t REG_DWORD /d 1 /f > NUL 2>&1
  121. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "Search Page" /t REG_SZ /d "http://www.google.de" /f > NUL 2>&1
  122. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "Start Page Redirect Cache" /t REG_SZ /d "http://www.google.de" /f > NUL 2>&1
  123. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
  124. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
  125. reg add "HKCU\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
  126. reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
  127. reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
  128. reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
  129. reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d 1 /f > NUL 2>&1
  130. reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "RunOnceHasShown" /t REG_DWORD /d 1 /f > NUL 2>&1
  131. reg add "HKCU\Software\Policies\Microsoft\Internet Explorer\Main" /v "RunOnceComplete" /t REG_DWORD /d 1 /f > NUL 2>&1
  132.  
  133. :reg14start
  134. set /p reg14="Disable Cortana, Bing Search and Searchbar? y/n: "
  135. if '%reg14%' == 'n' goto reg15start
  136. if /i "%reg14%" neq "y" goto reg14start
  137. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f > NUL 2>&1
  138. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
  139. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f > NUL 2>&1
  140. reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "BingSearchEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
  141.  
  142. :reg15start
  143. set /p reg15="Change Logon screen background with accent color? y/n: "
  144. if '%reg15%' == 'n' goto reg16start
  145. if /i "%reg15%" neq "y" goto reg15start
  146. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "DisableLogonBackgroundImage" /t REG_DWORD /d 1 /f > NUL 2>&1
  147.  
  148. :reg16start
  149. set /p reg16="Disable Windows Error Reporting? y/n: "
  150. if '%reg16%' == 'n' goto reg17start
  151. if /i "%reg16%" neq "y" goto reg16start
  152. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v "Disabled" /t REG_DWORD /d 1 /f > NUL 2>&1
  153.  
  154. :reg17start
  155. set /p reg17="Disable automatic Windows Updates? y/n: "
  156. if '%reg17%' == 'n' goto reg18start
  157. if /i "%reg17%" neq "y" goto reg17start
  158. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "AUOptions" /t REG_DWORD /d 2 /f > NUL 2>&1
  159.  
  160. :reg18start
  161. set /p reg18="Disable Hibernation? y/n: "
  162. if '%reg18%' == 'n' goto servstart
  163. if /i "%reg18%" neq "y" goto reg18start
  164. reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
  165.  
  166. ECHO Done...
  167.  
  168. REM ======================= Removing services =======================
  169. ECHO.
  170. :servstart
  171. set /p services="Apply services tweaks? y/n: "
  172. if '%services%' == 'n' goto schedstart
  173. if /i "%services%" neq "n" if /i "%services%" neq "y" goto servstart
  174.  
  175. :serv0start
  176. set /p serv0="Disable tracking services? y/n: "
  177. if '%serv0%' == 'n' goto serv1start
  178. if /i "%serv0%" neq "y" goto serv0start
  179. sc config DiagTrack start= disabled > NUL 2>&1
  180. sc config diagnosticshub.standardcollector.service start= disabled > NUL 2>&1
  181. sc config TrkWks start= disabled > NUL 2>&1
  182. sc config WMPNetworkSvc start= disabled > NUL 2>&1
  183.  
  184. :serv1start
  185. set /p serv1="Disable WAP Push Message Routing Service? y/n: "
  186. if '%serv1%' == 'n' goto serv2start
  187. if /i "%serv1%" neq "y" goto serv1start
  188. sc config dmwappushservice start= disabled > NUL 2>&1
  189.  
  190. :serv2start
  191. set /p serv2="Disable Windows Search? y/n: "
  192. if '%serv2%' == 'n' goto serv3start
  193. if /i "%serv2%" neq "y" goto serv2start
  194. sc config WSearch start= disabled > NUL 2>&1
  195. del "C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb" /s > NUL 2>&1
  196.  
  197. :serv3start
  198. set /p serv3="Disable Superfetch? y/n: "
  199. if '%serv3%' == 'n' goto serv4start
  200. if /i "%serv3%" neq "y" goto serv3start
  201. sc config SysMain start= disabled > NUL 2>&1
  202.  
  203. :serv4start
  204. set /p serv4="Disable Windows Defender? y/n: "
  205. if '%serv4%' == 'n' goto schedstart
  206. if /i "%serv4%" neq "y" goto serv4start
  207. sc config WinDefend start= disabled > NUL 2>&1
  208. sc config WdNisSvc start= disabled > NUL 2>&1
  209. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d 1 /f > NUL 2>&1
  210. schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cache Maintenance" /Disable > NUL 2>&1
  211. schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cleanup" /Disable > NUL 2>&1
  212. schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Scheduled Scan" /Disable > NUL 2>&1
  213. schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Verification" /Disable > NUL 2>&1
  214. del "C:\ProgramData\Microsoft\Windows Defender\Scans\mpcache*" /s > NUL 2>&1
  215.  
  216. ECHO Done...
  217.  
  218. REM ======================= Removing scheduled tasks =======================
  219. ECHO.
  220. :schedstart
  221. set /p schedules="Disable unnecessary scheduled tasks? y/n: "
  222. if '%schedules%' == 'n' goto winappstart
  223. if /i "%schedules%" neq "n" if /i "%schedules%" neq "y" goto schedstart
  224.  
  225. schtasks /Change /TN "Microsoft\Windows\AppID\SmartScreenSpecific" /Disable > NUL 2>&1
  226. schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /Disable > NUL 2>&1
  227. schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /Disable > NUL 2>&1
  228. schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /Disable > NUL 2>&1
  229. schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /Disable > NUL 2>&1
  230. schtasks /Change /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /Disable > NUL 2>&1
  231. schtasks /Change /TN "Microsoft\Windows\NetTrace\GatherNetworkInfo" /Disable > NUL 2>&1
  232. schtasks /Change /TN "Microsoft\Windows\Windows Error Reporting\QueueReporting" /Disable > NUL 2>&1
  233.  
  234. ECHO Done...
  235.  
  236. REM ======================= Removing Windows default apps =======================
  237. ECHO.
  238. :winappstart
  239. set /p winapps="Remove windows default apps? y/n: "
  240. if '%winapps%' == 'n' goto odrivestart
  241. if /i "%winapps%" neq "n" if /i "%winapps%" neq "y" goto winappstart
  242.  
  243. powershell "Get-AppxPackage *3d* | Remove-AppxPackage" > NUL 2>&1
  244. powershell "Get-AppxPackage *bing* | Remove-AppxPackage" > NUL 2>&1
  245. powershell "Get-AppxPackage *zune* | Remove-AppxPackage" > NUL 2>&1
  246. powershell "Get-AppxPackage *photo* | Remove-AppxPackage" > NUL 2>&1
  247. powershell "Get-AppxPackage *communi* | Remove-AppxPackage" > NUL 2>&1
  248. powershell "Get-AppxPackage *solit* | Remove-AppxPackage" > NUL 2>&1
  249. powershell "Get-AppxPackage *phone* | Remove-AppxPackage" > NUL 2>&1
  250. powershell "Get-AppxPackage *soundrec* | Remove-AppxPackage" > NUL 2>&1
  251. powershell "Get-AppxPackage *camera* | Remove-AppxPackage" > NUL 2>&1
  252. powershell "Get-AppxPackage *people* | Remove-AppxPackage" > NUL 2>&1
  253. powershell "Get-AppxPackage *office* | Remove-AppxPackage" > NUL 2>&1
  254. powershell "Get-AppxPackage *xbox* | Remove-AppxPackage" > NUL 2>&1
  255.  
  256. ECHO Done...
  257.  
  258. REM ======================= Disable / Remove OneDrive =======================
  259. ECHO.
  260. :odrivestart
  261. set /p onedrive="Disable OneDrive? y/n: "
  262. if '%onedrive%' == 'n' goto hoststart
  263. if /i "%onedrive%" neq "y" goto odrivestart
  264. reg add "HKLM\Software\Policies\Microsoft\Windows\OneDrive" /v DisableFileSyncNGSC /t REG_DWORD /d 1 /f > NUL 2>&1
  265.  
  266. ECHO Done...
  267.  
  268. REM ======================= Blocking Telemetry Servers =======================
  269. ECHO.
  270. :hoststart
  271. set /p hostsblock="Block Windows telemetry servers? y/n: "
  272. if '%hostsblock%' == 'n' goto finish
  273. if /i "%hostsblock%" neq "n" if /i "%hostsblock%" neq "y" goto hoststart
  274.  
  275. copy "%WINDIR%\system32\drivers\etc\hosts" "%WINDIR%\system32\drivers\etc\hosts.bak" > NUL 2>&1
  276. attrib -r "%WINDIR%\system32\drivers\etc\hosts" > NUL 2>&1
  277. FIND /C /I "vortex.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  278. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  279. FIND /C /I "vortex-win.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  280. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex-win.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  281. FIND /C /I "telecommand.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  282. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telecommand.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  283. FIND /C /I "telecommand.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
  284. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telecommand.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
  285. FIND /C /I "oca.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  286. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 oca.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  287. FIND /C /I "oca.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
  288. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 oca.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
  289. FIND /C /I "sqm.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  290. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  291. FIND /C /I "sqm.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
  292. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
  293. FIND /C /I "watson.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  294. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  295. FIND /C /I "watson.telemetry.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
  296. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.telemetry.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
  297. FIND /C /I "redir.metaservices.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  298. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 redir.metaservices.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  299. FIND /C /I "choice.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  300. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 choice.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  301. FIND /C /I "choice.microsoft.com.nsatc.net" %WINDIR%\system32\drivers\etc\hosts
  302. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 choice.microsoft.com.nsatc.net>>%WINDIR%\system32\drivers\etc\hosts
  303. FIND /C /I "df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  304. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  305. FIND /C /I "reports.wes.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  306. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 reports.wes.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  307. FIND /C /I "services.wes.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  308. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 services.wes.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  309. FIND /C /I "sqm.df.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  310. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 sqm.df.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  311. FIND /C /I "telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  312. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  313. FIND /C /I "watson.ppe.telemetry.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  314. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 watson.ppe.telemetry.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  315. FIND /C /I "telemetry.appex.bing.net" %WINDIR%\system32\drivers\etc\hosts
  316. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.appex.bing.net>>%WINDIR%\system32\drivers\etc\hosts
  317. FIND /C /I "telemetry.urs.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  318. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.urs.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  319. FIND /C /I "telemetry.appex.bing.net:443" %WINDIR%\system32\drivers\etc\hosts
  320. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 telemetry.appex.bing.net:443>>%WINDIR%\system32\drivers\etc\hosts
  321. FIND /C /I "settings-sandbox.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  322. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 settings-sandbox.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  323. FIND /C /I "vortex-sandbox.data.microsoft.com" %WINDIR%\system32\drivers\etc\hosts
  324. IF %ERRORLEVEL% NEQ 0 ECHO ^0.0.0.0 vortex-sandbox.data.microsoft.com>>%WINDIR%\system32\drivers\etc\hosts
  325. attrib +r "%WINDIR%\system32\drivers\etc\hosts" > NUL 2>&1
  326.  
  327. :finish
  328. CLS
  329. ECHO #########################################################
  330. ECHO # #
  331. ECHO # WINDOWS 10 BUILD 10240 X64 TNBT: THE NEXT BIG TWEAK #
  332. ECHO # #
  333. ECHO # CURRENT REVISION: %V% #
  334. ECHO # AUTHOR: SEBASTIAN KOEHLING #
  335. ECHO # #
  336. ECHO #########################################################
  337. ECHO.
  338. ECHO Installation complete.
  339. ECHO Press any key to exit.
  340. PAUSE > NUL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement