Guiconfig fails to launch in VScode

Hello,

When I run the guiconfig from VScode, it shows this error message:

"

* Executing task in folder peripheral_uart: west build -d d:\Works\peripheral_uart\build -t guiconfig


* The terminal process failed to launch: Path to shell executable "cmd" is not a file or a symlink.

"

I have set the cmd path in VSCode for "terminal.integrated.profiles.windows":

       "Command Prompt": {
            "path": [
                "C:\\Windows\\System32\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
So how to solve this error?
Thanks
Parents
  • Hi,

    You could try to change "terminal.integrated.profiles.windows" line to

    "terminal.integrated.defaultProfile.windows": "nRF Connect"

    in your (Preferences: Open User Settings) settings.json file.

    Best regards,
    Dejan

  • Hi,

    I have changed my setting.json and now the file is the following:

    {
        "nrf-connect.enableTelemetry": false,
        "window.zoomLevel": 1,
        "files.autoSave": "afterDelay",
        "git.openRepositoryInParentFolders": "never",
        "diffEditor.hideUnchangedRegions.enabled": true,
        "cmake.showOptionsMovedNotification": false,
        "terminal.integrated.defaultProfile.windows": "nRF Connect",
    }
    but the situation is the same as before.
    Perhaps I have not understood exactly your suggestion: could you be more precise?
    Thank you
Reply
  • Hi,

    I have changed my setting.json and now the file is the following:

    {
        "nrf-connect.enableTelemetry": false,
        "window.zoomLevel": 1,
        "files.autoSave": "afterDelay",
        "git.openRepositoryInParentFolders": "never",
        "diffEditor.hideUnchangedRegions.enabled": true,
        "cmake.showOptionsMovedNotification": false,
        "terminal.integrated.defaultProfile.windows": "nRF Connect",
    }
    but the situation is the same as before.
    Perhaps I have not understood exactly your suggestion: could you be more precise?
    Thank you
Children
Related