Last active
April 10, 2025 15:25
-
-
Save eugrus/cc1fe82a32baa8eed656921680f92d96 to your computer and use it in GitHub Desktop.
%SystemRoot%\System32\WindowsPowerShell\v1.0\Profile.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Encoding | |
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8 | |
[Console]::InputEncoding = [System.Text.Encoding]::UTF8 | |
$PSDefaultParameterValues = @{ '*:Encoding' = 'utf8' } | |
# Aliases | |
function fcurl { irm -UserAgent curl @args } | |
function gs { & gswin64c @args } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment