Missing Create GUID in Visual Studio Enterprise 2017?

12,678

Solution 1

Please follow troubleshoot section in this documentation. https://social.technet.microsoft.com/wiki/contents/articles/33047.create-guid-tool-in-visual-studio.aspx

If the tool does not appear under the Tools menu, click Tools > External Tools (see image above). It may be that the tool was not registered correctly within the IDE. Using the External Tools window, we can add a reference to guidgen.exe.

Solution 2

Mine was in Microsoft Visual Studio 11.0 instead of the Microsoft Visual Studio

Under c:\program files (x86) there are several MVS folders and each with a Common7 folder and some with Tools folder.

In one of then guidgen.exe is hiding.

Replace the links from Tools -> External Tools -> Create GUID, for example in my case

c:\program files (x86)\Microsoft Visual Studio 11.0\Common7\Tools

Share:
12,678

Related videos on Youtube

Karthik
Author by

Karthik

Updated on June 09, 2022

Comments

  • Karthik
    Karthik almost 2 years

    Where can I find Create GUID options in Visual Studio 2017?

    I'm using Visual Studio Enterprise 2017 Edition and I'm not finding the Create GUID options from the Tools menu.

    • wannadream
      wannadream almost 7 years
    • Karthik
      Karthik almost 7 years
      @wannadream - Thanks. That helped. Post it as an answer. Will mark yours as an answer
    • Shay
      Shay almost 6 years
      Just switch to use PowerShell and type [guid]:NewGuid()
    • nam
      nam over 5 years
      @ShayNissel Did you mean New-Guid?
    • Shay
      Shay over 5 years
      @nam it's actually [guid]::NewGuid() but New-Guid is way shorter
  • Peter-Paul
    Peter-Paul almost 7 years
    For people missing the .exe file the troubleshooter refers to: modify your visual studio installation to include Desktop development with C++. This is what adds the guidgen.exe to your visual studio.
  • Fabrice T
    Fabrice T over 6 years
    @Peter-Paul Thanks, I hadn't guidgen.exe in my VS installation folder.
  • nam
    nam over 5 years
    Or, better yet. In PowerShell, New-Guid.