Last active
February 21, 2022 13:04
-
-
Save madskristensen/ef64f0809302ea7a289f to your computer and use it in GitHub Desktop.
Disable built-in Visual Studio packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//********************************************************// | |
// HOW TO: | |
// Create a file called devenv.pkgundef in the same directory as devenv.exe. | |
// It's usually located at C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE | |
// Then call "devenv.exe /updateconfiguration" from an elevated command prompt. | |
// REMARKS: | |
// Each GUID below represent a package that Visual Studio is loading. This is the | |
// list of package that I personally don't ever use. You can modify the list of | |
// package GUIDs to match yours. | |
// For full list, see https://github.com/hmemcpy/SlimVS | |
//********************************************************// | |
// Architecture Tools | |
[$RootKey$\Packages\{1fafd918-ae4a-4602-8efa-bdb72a1d9f6c}] | |
[$RootKey$\Packages\{2a2100a2-0ac5-48ee-b56d-c9e5832e6f1e}] | |
[$RootKey$\Packages\{3a46ebd4-e03f-4840-ab9f-e3d6d385b89f}] | |
[$RootKey$\Packages\{59e21b88-8e88-47de-9fee-935fa485af40}] | |
[$RootKey$\Packages\{6f255d24-e053-4357-b0bb-d73d577f5eb4}] | |
[$RootKey$\Packages\{718d98a4-3763-497a-8930-5081a62544ff}] | |
[$RootKey$\Packages\{9befcb41-a026-46ba-9f8a-aa2c2619bb18}] | |
[$RootKey$\Packages\{ad5399fa-d19b-4e2a-97f8-508acf96236e}] | |
[$RootKey$\Packages\{BD9C702A-8738-4E0B-954F-44078D8EB457}] | |
[$RootKey$\Packages\{DD1683A7-5A4C-4234-81B3-A4CC91DBEAC9}] | |
[$RootKey$\Packages\{e1bc0ae8-0af6-41f4-b12a-de109db41662}] | |
[$RootKey$\Packages\{ed281a55-31b1-41ba-8fd3-6547a7e539cd}] | |
[$RootKey$\Packages\{fa1929d0-d314-4897-9248-6fe1faf50a89}] | |
[$RootKey$\Packages\{3452be84-3dd6-4133-839d-efb6208b469d}] | |
[$RootKey$\Packages\{85be9ba4-2924-4119-94d5-21f9b547831b}] | |
// Code Analysis | |
[$RootKey$\Packages\{B20604B0-72BC-4953-BB92-95BF26D30CFA}] | |
[$RootKey$\Packages\{A8DC7E73-6BF8-4D90-840A-9A95832A2B47}] | |
[$RootKey$\Packages\{0b35348f-867a-4ab9-85f9-29bc71441c2a}] | |
[$RootKey$\Packages\{26a9ce85-c3c7-436e-9a48-0dc9c5b781e9}] | |
[$RootKey$\Packages\{b515653f-fb69-4b64-9d3f-f1fcf8421dd0}] | |
// Database Tools | |
[$RootKey$\Packages\{001ec92e-f8a6-48eb-8c07-c2a41a7da51a}] | |
[$RootKey$\Packages\{00a9524f-427f-46ee-8a20-615c25ecbe6f}] | |
[$RootKey$\Packages\{00b73ab4-7a2a-4ddf-90c9-e78a163ab06a}] | |
[$RootKey$\Packages\{00FEE386-5F9F-4577-99F4-F327FAFC0FB9}] | |
[$RootKey$\Packages\{220A4C17-7E7C-4663-BBCC-5E607C6543CD}] | |
[$RootKey$\Packages\{74bc53b2-d9b7-4579-abe5-43d11a7ecd03}] | |
[$RootKey$\Packages\{DF308C9B-1270-403A-93E2-C05EDFB56A93}] | |
[$RootKey$\Packages\{ed19932f-5443-4587-a005-1cb9158b2f64}] | |
[$RootKey$\Packages\{EF828E39-70F5-4b8e-A3A0-4C0ECD28A69A}] | |
[$RootKey$\Packages\{fef13793-c947-4fb1-b864-c9f0be9d9cf6}] | |
// Server Explorer | |
[$RootKey$\Packages\{198E76C1-34C0-424D-9957-B3EBD80265FB}] | |
// Progression/GraphProvider Package | |
[$RootKey$\Packages\{5f2e5e42-4192-4d79-a0d8-1d881e808829}] | |
[$RootKey$\Packages\{ad1a73b0-c489-4c9c-b1fe-eea54cd19a4f}] | |
[$RootKey$\Packages\{f5aee24d-62a8-4a0e-8164-75a76da2ddb7}] | |
// Silverlight | |
[$RootKey$\Packages\{CB22EE0E-4072-4ae7-96E2-90FCCF879544}] | |
// Help | |
[$RootKey$\Packages\{4A791146-19E4-11D3-B86B-00C04F79F802}] | |
// WCF Designer | |
[$RootKey$\Packages\{bc9ca0b3-bb4f-449a-967c-29a8fae32086}] | |
// Export template | |
[$RootKey$\Packages\{f1e4cfca-4573-4345-8718-7bde2b1f0be8}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What kind of performance improvement are you seeing with this?