Disable "Visual Studio Standard Collector" service
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: HighSystem Functionality Loss Risk: High
This action improves privacy with high impact when you run the recommended script. - Batch (batchfile)These changes use Windows system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script disables the Visual Studio Standard Collector service. This service is part of the Visual Studio Log Collection Tool 1. The service's primary function is to collect logs for the Diagnostics Hub, similar to the Diagnostic Hub Standard Collector service 2. However, it has previously been identified as having a vulnerability that could allow privilege elevation, potentially compromising system security 3.
Disabling this service is recommended for several reasons:
- It reduces the attack surface of your computer, decreasing the likelihood of future vulnerabilities being exploited.
- It optimizes your computer performance by preventing unnecessary data collection about user activities and behaviors.
Overview of default service statuses
VSStandardCollectorService150
(tested on Microsoft Visual Studio Community 2022):
OS Version | Status | Start type |
---|---|---|
Windows 11 (≥ 21H2) | 🟡 Missing | N/A |
This script should only be used by advanced users.
This script is not recommended for daily use as it breaks important functionality.
Consider creating a system restore point before doing any changes.
Sources
- Visual Studio Log Collection Tool. (2023).
Original: https://www.microsoft.com/en-us/download/details.aspx
Archived: https://web.archive.org/web/20231124160804/https://www.microsoft.com/en-us/download/details.aspx?id=12493 - I can't start VSStandardCollectorService150. Microsoft Q&A. learn.microsoft.com. (2024).
Original: https://learn.microsoft.com/en-us/answers/questions/891356/i-cant-start-vsstandardcollectorservice150
Archived: https://web.archive.org/web/20240314123619/https://learn.microsoft.com/en-us/answers/questions/891356/i-cant-start-vsstandardcollectorservice150#answer-929168 - CVE-2018-0952: Privilege Escalation Vulnerability in Windows Standard Collector Service. Atredis Partners. (2024).
Original: https://www.atredis.com/blog/cve-2018-0952-privilege-escalation-vulnerability-in-windows-standard-collector-service
Archived: https://web.archive.org/web/20240413105955/https://www.atredis.com/blog/cve-2018-0952-privilege-escalation-vulnerability-in-windows-standard-collector-service - Diagnostic Hub Standard Collector Elevation of Privilege Vulnerability. (2023).
Original: https://msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2018-0952
Archived: https://archive.ph/2023.11.24-161134/https://msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2018-0952
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Disable "Visual Studio Standard Collector" service" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable "Visual Studio Standard Collector" service" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable "Visual Studio Standard Collector" service
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
:: Disable service(s): `VSStandardCollectorService150`
PowerShell -ExecutionPolicy Unrestricted -Command "$serviceName = 'VSStandardCollectorService150'; Write-Host "^""Disabling service: `"^""$serviceName`"^""."^""; <# -- 1. Skip if service does not exist #>; $service = Get-Service -Name $serviceName -ErrorAction SilentlyContinue; if(!$service) { Write-Host "^""Service `"^""$serviceName`"^"" could not be not found, no need to disable it."^""; Exit 0; }; <# -- 2. Stop if running #>; if ($service.Status -eq [System.ServiceProcess.ServiceControllerStatus]::Running) { Write-Host "^""`"^""$serviceName`"^"" is running, stopping it."^""; try { Stop-Service -Name "^""$serviceName"^"" -Force -ErrorAction Stop; Write-Host "^""Stopped `"^""$serviceName`"^"" successfully."^""; } catch { Write-Warning "^""Could not stop `"^""$serviceName`"^"", it will be stopped after reboot: $_"^""; }; } else { Write-Host "^""`"^""$serviceName`"^"" is not running, no need to stop."^""; }; <# -- 3. Skip if already disabled #>; $startupType = $service.StartType <# Does not work before .NET 4.6.1 #>; if (!$startupType) { $startupType = (Get-WmiObject -Query "^""Select StartMode From Win32_Service Where Name='$serviceName'"^"" -ErrorAction Ignore).StartMode; if(!$startupType) { $startupType = (Get-WmiObject -Class Win32_Service -Property StartMode -Filter "^""Name='$serviceName'"^"" -ErrorAction Ignore).StartMode; }; }; if ($startupType -eq 'Disabled') { Write-Host "^""$serviceName is already disabled, no further action is needed"^""; Exit 0; }; <# -- 4. Disable service #>; try { Set-Service -Name "^""$serviceName"^"" -StartupType Disabled -Confirm:$false -ErrorAction Stop; Write-Host "^""Disabled `"^""$serviceName`"^"" successfully."^""; } catch { Write-Error "^""Could not disable `"^""$serviceName`"^"": $_"^""; }"
Ijo6IFJlc3RvcmUgc2VydmljZShzKSB0byBkZWZhdWx0IHN0YXRlOiBgVlNTdGFuZGFyZENvbGxlY3RvclNlcnZpY2UxNTBgXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwiJHNlcnZpY2VOYW1lID0gJ1ZTU3RhbmRhcmRDb2xsZWN0b3JTZXJ2aWNlMTUwJzsgJGRlZmF1bHRTdGFydHVwTW9kZSA9ICdNYW51YWwnOyAkaWdub3JlTWlzc2luZ09uUmV2ZXJ0ID0gICRmYWxzZTsgV3JpdGUtSG9zdCBcIl5cIlwiUmV2ZXJ0aW5nIHNlcnZpY2UgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiBzdGFydCB0byBgXCJeXCJcIiRkZWZhdWx0U3RhcnR1cE1vZGVgXCJeXCJcIi5cIl5cIlwiOyA8IyAtLSAxLiBTa2lwIGlmIHNlcnZpY2UgZG9lcyBub3QgZXhpc3QgIz47ICRzZXJ2aWNlID0gR2V0LVNlcnZpY2UgLU5hbWUgJHNlcnZpY2VOYW1lIC1FcnJvckFjdGlvbiBTaWxlbnRseUNvbnRpbnVlOyBpZiAoISRzZXJ2aWNlKSB7IGlmICgkaWdub3JlTWlzc2luZ09uUmV2ZXJ0KSB7IFdyaXRlLU91dHB1dCBcIl5cIlwiU2tpcHBpbmc6IFRoZSBzZXJ2aWNlIGBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCIgaXMgbm90IGZvdW5kLiBObyBhY3Rpb24gcmVxdWlyZWQuXCJeXCJcIjsgRXhpdCAwOyB9OyBXcml0ZS1XYXJuaW5nIFwiXlwiXCJGYWlsZWQgdG8gcmV2ZXJ0IGNoYW5nZXMgdG8gdGhlIHNlcnZpY2UgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIi4gVGhlIHNlcnZpY2UgaXMgbm90IGZvdW5kLlwiXlwiXCI7IEV4aXQgMTsgfTsgPCMgLS0gMi4gRW5hYmxlIG9yIHNraXAgaWYgYWxyZWFkeSBlbmFibGVkICM+OyAkc3RhcnR1cFR5cGUgPSAkc2VydmljZS5TdGFydFR5cGUgPCMgRG9lcyBub3Qgd29yayBiZWZvcmUgLk5FVCA0LjYuMSAjPjsgaWYgKCEkc3RhcnR1cFR5cGUpIHsgJHN0YXJ0dXBUeXBlID0gKEdldC1XbWlPYmplY3QgLVF1ZXJ5IFwiXlwiXCJTZWxlY3QgU3RhcnRNb2RlIEZyb20gV2luMzJfU2VydmljZSBXaGVyZSBOYW1lPSckc2VydmljZU5hbWUnXCJeXCJcIiAtRXJyb3JBY3Rpb24gSWdub3JlKS5TdGFydE1vZGU7IGlmICghJHN0YXJ0dXBUeXBlKSB7ICRzdGFydHVwVHlwZSA9IChHZXQtV21pT2JqZWN0IC1DbGFzcyBXaW4zMl9TZXJ2aWNlIC1Qcm9wZXJ0eSBTdGFydE1vZGUgLUZpbHRlciBcIl5cIlwiTmFtZT0nJHNlcnZpY2VOYW1lJ1wiXlwiXCIgLUVycm9yQWN0aW9uIElnbm9yZSkuU3RhcnRNb2RlOyB9OyB9OyBpZiAoJHN0YXJ0dXBUeXBlIC1lcSBcIl5cIlwiJGRlZmF1bHRTdGFydHVwTW9kZVwiXlwiXCIpIHsgV3JpdGUtSG9zdCBcIl5cIlwiYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiBoYXMgYWxyZWFkeSBleHBlY3RlZCBzdGFydHVwIG1vZGU6IGBcIl5cIlwiJGRlZmF1bHRTdGFydHVwTW9kZWBcIl5cIlwiLiBObyBhY3Rpb24gcmVxdWlyZWQuXCJeXCJcIjsgfSBlbHNlIHsgdHJ5IHsgU2V0LVNlcnZpY2UgLU5hbWUgXCJeXCJcIiRzZXJ2aWNlTmFtZVwiXlwiXCIgLVN0YXJ0dXBUeXBlIFwiXlwiXCIkZGVmYXVsdFN0YXJ0dXBNb2RlXCJeXCJcIiAtQ29uZmlybTokZmFsc2UgLUVycm9yQWN0aW9uIFN0b3A7IFdyaXRlLUhvc3QgXCJeXCJcIlJldmVydGVkIGBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCIgd2l0aCBgXCJeXCJcIiRkZWZhdWx0U3RhcnR1cE1vZGVgXCJeXCJcIiBzdGFydCwgdGhpcyBtYXkgcmVxdWlyZSByZXN0YXJ0aW5nIHlvdXIgY29tcHV0ZXIuXCJeXCJcIjsgfSBjYXRjaCB7IFdyaXRlLUVycm9yIFwiXlwiXCJGYWlsZWQgdG8gZW5hYmxlIGBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCI6ICRfXCJeXCJcIjsgRXhpdCAxOyB9OyB9OyA8IyAtLSA0LiBTdGFydCBpZiBub3QgcnVubmluZyAobXVzdCBiZSBlbmFibGVkIGZpcnN0KSAjPjsgaWYgKCRkZWZhdWx0U3RhcnR1cE1vZGUgLWVxICdBdXRvbWF0aWMnIC1vciAkZGVmYXVsdFN0YXJ0dXBNb2RlIC1lcSAnQm9vdCcgLW9yICRkZWZhdWx0U3RhcnR1cE1vZGUgLWVxICdTeXN0ZW0nKSB7IGlmICgkc2VydmljZS5TdGF0dXMgLW5lIFtTeXN0ZW0uU2VydmljZVByb2Nlc3MuU2VydmljZUNvbnRyb2xsZXJTdGF0dXNdOjpSdW5uaW5nKSB7IFdyaXRlLUhvc3QgXCJeXCJcImBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCIgaXMgbm90IHJ1bm5pbmcsIHN0YXJ0aW5nIGl0LlwiXlwiXCI7IHRyeSB7IFN0YXJ0LVNlcnZpY2UgJHNlcnZpY2VOYW1lIC1FcnJvckFjdGlvbiBTdG9wOyBXcml0ZS1Ib3N0IFwiXlwiXCJTdGFydGVkIGBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCIgc3VjY2Vzc2Z1bGx5LlwiXlwiXCI7IH0gY2F0Y2ggeyBXcml0ZS1XYXJuaW5nIFwiXlwiXCJGYWlsZWQgdG8gc3RhcnQgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiwgcmVxdWlyZXMgcmVzdGFydCwgaXQgd2lsbCBiZSBzdGFydGVkIGFmdGVyIHJlYm9vdC5gcmBuJF9cIl5cIlwiOyB9OyB9IGVsc2UgeyBXcml0ZS1Ib3N0IFwiXlwiXCJgXCJeXCJcIiRzZXJ2aWNlTmFtZWBcIl5cIlwiIGlzIGFscmVhZHkgcnVubmluZywgbm8gbmVlZCB0byBzdGFydC5cIl5cIlwiOyB9OyB9XCIi
Help
How to apply or restore "Disable "Visual Studio Standard Collector" service" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open Command Prompt
Open Command Prompt as Administrator. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable Visual Studio data collection
- Configure programs
These scripts disable future local and cloud data collection by Visual Studio about you and your behavior. These do not clean existing data collected abo...
Same Goal
Other guides in Disable Visual Studio data collection See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.