Skip to content

Instantly share code, notes, and snippets.

@CamW
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CamW/382ca8c4f362ada94f26 to your computer and use it in GitHub Desktop.
Save CamW/382ca8c4f362ada94f26 to your computer and use it in GitHub Desktop.
Create Powershell profile and fix curl alias issue.
#Create a profile if it doesn't already exist
New-Item $profile -ItemType File -Force
#Replace file in Documents\WindowsPowerShell with this
Set-Location c:\
rm alias:curl
Clear-Host
#Test if a profile exists
Test-Path $profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment