How to remove unwanted terminal output of vscode for window11

sourabha pradhan 0 Reputation points
2022-08-22T06:08:21.487+00:00

please anyone help me
233330-2022-08-22-1.png

Microsoft 365 and Office Install, redeem, activate For business Windows
Windows for business Windows Client for IT Pros User experience Other
{count} vote

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,916 Reputation points
    2022-08-22T14:46:29.47+00:00

    Hello there,

    -Open Visual Studio Code and press F1 to open the command panel
    -Search for Preferences: Open Settings (JSON) and open it. It will open a settings.json file
    You should see something like this
    {
    "editor.fontSize": 17,
    "code-runner.runInTerminal": true,
    "terminal.integrated.defaultProfile.windows": "PowerShell"
    }

    Paste the code below, above "terminal.integrated.defaultProfile.windows": "PowerShell"
    "terminal.integrated.profiles.windows":
    {
    "PowerShell":
    {
    "source": "PowerShell",
    "args": ["-noLogo"]
    }
    },

    Bow check the code

    I hope this information helps.

    ------------------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    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.