Last active
September 7, 2019 21:00
-
-
Save PrzemyslawKlys/0eb1ea6f5490838c5bad312b0fa9af26 to your computer and use it in GitHub Desktop.
PowerShell Profile
This file contains hidden or 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
Clear-Host | |
Write-Color "Windows PowerShell" | |
Write-Color "Copyright (C) Microsoft Corporation. All rights reserved." -LinesAfter 1 | |
<# Alternatively if you don't have Write-Color | |
Clear-Host | |
Write-Host "Windows PowerShell" | |
Write-Host "Copyright (C) Microsoft Corporation. All rights reserved." | |
Write-Host | |
#> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Type
code $Profile
when in Powershell console. This will open up VSCode with your profile, where you simply paste the code from above.