I've installed .NET Core SDK on Windows 10 machine using dotnet-install scripts with the powershell command
./dotnet-install.ps1 -Channel Current
SDK was installed to default location C:\Users\[USERNAME]\AppData\Local\Microsoft\dotnet and the only way I can use it from another location is
C:\Users\[USERNAME]\AppData\Local\Microsoft\dotnet\dotnet.exe
How to make it global to use just dotnet anywhere?

