Home > OS >  What is Powershell (dotnet global)
What is Powershell (dotnet global)

Time:09-18

I was leaning a powershell tutorial where the following code was written:

dotnet tool install --global PowerShell

I tried the code — and found that it installed a something named Powershell(dotnet global)

My question is it is another version of powershell or module or tool or what? And another question is that without this Powershell(dotnet global) – Will I not be able to install any module?

I am using Windows Terminal and that thing shows like the below picture reference for powershell(dotnet global)

CodePudding user response:

https://devblogs.microsoft.com/powershell/introducing-powershell-as-net-global-tool/

Hello , I have put this link that can help you to find the answer to your question.

CodePudding user response:

You have installed PowerShell (formerly PowerShell core), the successor to Windows PowerShell.

  • Related