How to resolve “'installutil' is not recognized as an internal or external command, operable program or batch file.”?

后端 未结 12 1797
情话喂你
情话喂你 2020-12-07 08:41

Just tried to run an application via the following:

\"enter

I have browsed to

12条回答
  •  醉酒成梦
    2020-12-07 09:10

    According Microsoft Page :

    If you’re using the Visual Studio command prompt, InstallUtil.exe should be on the system path. If not, you can add it to the path, or use the fully qualified path to invoke it. This tool is installed with the .NET Framework, and its path is :

    %WINDIR%\Microsoft.NET\Framework[64]\

    For example, for the 32-bit version of the .NET Framework 4 or 4.5.*, if your Windows installation directory is C:\Windows, the path is :

    C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe

    For the 64-bit version of the .NET Framework 4 or 4.5.*, the default path is :

    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe

提交回复
热议问题