Remove alias (curl) from Powershell

Skip this step if you already have a Powershell profile:

New-Item $profile -force -itemtype file

Then edit your profile:

notepad $profile

Add the following line to it:

remove-item alias:curl

Save, close notepad and lose and open Powershell to apply the profile.

Or reload the profile with the command below:

. $profile