I am not able to open Logic App designer in VS Code?

Diptangshu Karmakar 0 Reputation points
2025-03-11T12:21:56.6233333+00:00

I am not able to open Logic App workflow in designer in VS Code, getting the below error.

Error:

Starting Design Time Api
5:45:58 PM: Running command: "C:\Users\diptangshu.karmakar\.azurelogicapps\dependencies\FuncCoreTools\func host start --port 8000" with pid: "21048"...
'C:\Users\diptangshu.karmakar\.azurelogicapps\dependencies\FuncCoreTools\func' is not recognized as an internal or external command,
operable program or batch file.
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,388 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Khadeer Ali 3,830 Reputation points Microsoft External Staff
    2025-03-11T13:38:54.9966667+00:00

    @Diptangshu Karmakar ,

    The error message you're encountering indicates that the func command from the Azure Functions Core Tools is not recognized. This typically means that the Azure Functions Core Tools are not installed correctly or the path to the executable is not set in your environment variables.

    To resolve this issue, you can try the following steps:

    1. Check Installation: Ensure that the Azure Functions Core Tools are installed. You can install them via npm with the command: npm install -g azure-functions-core-tools@3 --unsafe-perm true
    2. Verify Path: Make sure that the path to the func executable is included in your system's PATH environment variable. You can do this by:
      1. Searching for "environment variables" in the Windows search bar and selecting "Edit the system environment variables."
      2. In the System Properties window, click on the "Environment Variables" button.
      3. Under "User variables," find and select the PATH variable, then click "Edit."
      4. Ensure the path to the Azure Functions Core Tools (e.g., C:\Users\<your-username>\.azurelogicapps\dependencies\FuncCoreTools) is included.
    3. Restart VS Code: After making changes to the environment variables, restart Visual Studio Code to ensure it picks up the new settings.
    4. Run Command Again: Try to open the Logic App designer again after performing the above steps.

    If the problem persists, you may want to check for any additional errors in the Output window in Visual Studio Code, specifically under "Azure Logic Apps (Standard)."


    References:

    Hope this helps. Do let us know if you have any further queries.


    If this answers your query, do click Accept Answer and Yes for "Was this answer helpful." And if you have any further questions, let us know.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.