Visual Studio 2022 Templates: Why Aren't They Showing Up?

Steven Jul 09, 2026

Are you facing a puzzling issue where your Visual Studio 2022 templates aren't showing up? You're not alone. This can be a frustrating problem, but fear not, as we've compiled a comprehensive guide to help you troubleshoot and resolve this issue. Let's dive right in.

Installing Visual Studio 2022 Community
Installing Visual Studio 2022 Community

Before we delve into the solutions, let's ensure we're on the same page. When we say 'templates aren't showing up', we're referring to the lack of visibility of your custom or installed templates in the New Project dialog box or the Add New Item dialog box in Visual Studio 2022.

Create a Windows Forms app tutorial - Windows Forms
Create a Windows Forms app tutorial - Windows Forms

Potential Causes and Initial Troubleshooting

Several factors could be causing your templates to vanish. Let's start by ruling out some common culprits.

How to Make an Android App Using Visual Studio
How to Make an Android App Using Visual Studio

First, ensure that you've installed the templates correctly. If you're using custom templates, make sure they're located in the correct folder. By default, Visual Studio looks for templates in the following folders:

  • C:\Users\\Documents\Visual Studio 2022\Templates\ProjectTemplates
  • C:\Users\\Documents\Visual Studio 2022\Templates\ItemTemplates
the settings menu in windows 10 with options to select which features are available for each user
the settings menu in windows 10 with options to select which features are available for each user

Check Template Extensions

Visual Studio supports both .zip and .vstemplate file formats for templates. Ensure that your templates are in one of these formats. If they're in a different format, consider converting them.

To convert a template, simply rename the file extension to either .zip or .vstemplate. For example, if your template is in a .vstemplate format, you can rename it to myTemplate.zip.

Samouczek: tworzenie prostej aplikacji konsolowej w języku C# - Visual Studio (Windows)
Samouczek: tworzenie prostej aplikacji konsolowej w języku C# - Visual Studio (Windows)

Verify Template Content

Sometimes, the issue might not be with the template's location or format, but with its content. Ensure that your template includes a file named 'TemplateInfo.vstemplate' in its root directory. This file contains metadata about the template and is crucial for Visual Studio to recognize it.

If this file is missing or corrupted, Visual Studio might not display your template. You can create a new TemplateInfo.vstemplate file using the Template Editor, which is included with Visual Studio.

Visual Studio Code setup—Part 1
Visual Studio Code setup—Part 1

Advanced Troubleshooting Steps

If the initial troubleshooting steps didn't work, it's time to dig deeper.

How to Install Visual Studio Code on Windows PC & Laptop
How to Install Visual Studio Code on Windows PC & Laptop
Visual Studio Code Tutorial for Beginners - Introduction
Visual Studio Code Tutorial for Beginners - Introduction
Recover Unsaved Visual Studio Code Files: Simple Ways
Recover Unsaved Visual Studio Code Files: Simple Ways
User and workspace settings
User and workspace settings
How to Install Visual Studio Code on Windows Step by Step
How to Install Visual Studio Code on Windows Step by Step
Microsoft to announce Windows Template Studio, making it easier for devs to create UWP apps
Microsoft to announce Windows Template Studio, making it easier for devs to create UWP apps
How to Make a Landing Page With Next.js, Without Coding!
How to Make a Landing Page With Next.js, Without Coding!
Unable to automatically step into the server: Get the best fixes here
Unable to automatically step into the server: Get the best fixes here
Personal Portfolio Website
Personal Portfolio Website
Simple Systems:Turn AI Templates into Repeatable Client Workflows
Simple Systems:Turn AI Templates into Repeatable Client Workflows
How to Create Your First Windows Forms (Winforms) Application in Visual Studio
How to Create Your First Windows Forms (Winforms) Application in Visual Studio
Beginner Guide:Quick Wins With No-Code AI Templates
Beginner Guide:Quick Wins With No-Code AI Templates
How To Create a Scalable Visual System for Your Agency
How To Create a Scalable Visual System for Your Agency
an image of a computer screen with some images on it
an image of a computer screen with some images on it
20 Powerful VS Code Extensions for Front-End Developers
20 Powerful VS Code Extensions for Front-End Developers
Simple Systems for Scaling a Solo Design Studio Remotely
Simple Systems for Scaling a Solo Design Studio Remotely
20+ Best Squarespace Templates for Photographers in 2022 — Applet Studio
20+ Best Squarespace Templates for Photographers in 2022 — Applet Studio
7 Simple Systems for Designing Templates That Clients Buy
7 Simple Systems for Designing Templates That Clients Buy
a colorful wall with the words geeked week written on it
a colorful wall with the words geeked week written on it
an image of a computer screen with the words courses on it
an image of a computer screen with the words courses on it

First, let's ensure that Visual Studio is correctly indexed. Sometimes, Visual Studio might not display templates if it hasn't finished indexing them.

Rebuild Visual Studio Index

To rebuild the Visual Studio index, follow these steps:

  1. Open Visual Studio and go to Tools > Options.
  2. In the Options dialog box, navigate to Environment > Documents.
  3. Click on the 'Clear and Rebuild' button.
  4. Restart Visual Studio and check if your templates are now visible.

Check Visual Studio Extensions

Sometimes, third-party extensions can interfere with Visual Studio's template functionality. To rule out this possibility, try disabling your extensions temporarily.

To disable extensions, go to Extensions > Manage Extensions. Here, you can disable each extension individually or all at once.

If none of the above solutions worked, it might be time to consider reinstalling Visual Studio. Before you do, make sure to backup your templates to prevent data loss.

In the end, remember that troubleshooting is a process of elimination. By systematically checking each potential cause, you'll eventually find the solution to your template visibility issue. Happy coding!