diff options
author | Laoujin <woutervs@hotmail.com> | 2015-12-05 15:18:15 +0100 |
---|---|---|
committer | Laoujin <woutervs@hotmail.com> | 2015-12-05 15:18:15 +0100 |
commit | ad19e8803a4ebc21f16d3407cf64f368b0745597 (patch) | |
tree | 76290257861dff81e45e66d48b3cdee9002d55d6 | |
parent | 69acce34c15c540bedf3dc040649d3c9abd3c52b (diff) |
[PowerShell/en]: didn't recognize code blocks
-rw-r--r-- | powershell.html.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown index 4bc1ab39..8920d254 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -18,6 +18,7 @@ rather than plain text. [Read more here.](https://technet.microsoft.com/en-us/library/bb978526.aspx) If you are uncertain about your environment: + ``` Get-ExecutionPolicy -List Set-ExecutionPolicy AllSigned @@ -33,6 +34,7 @@ $PSVersionTable ``` Getting help: + ``` # Find commands Get-Command about_* # alias: gcm @@ -49,6 +51,7 @@ Update-Help # Run as admin ``` The tutorial starts here: + ``` # As you already figured, comments start with # @@ -292,6 +295,7 @@ $Shortcut.Save() Configuring your shell + ``` # $Profile is the full path for your `Microsoft.PowerShell_profile.ps1` # All code there will be executed when the PS session starts |