diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-03 04:14:45 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-03 04:14:45 -0700 |
commit | ae7197c6a692f9b67e98a721ed5debb582bfa599 (patch) | |
tree | d0dae32f072fa0395754b1b16cdf96a57614231d /powershell.html.markdown | |
parent | f5516715c094a7f4ed78f5cfd4099edf112350bd (diff) |
[powershell/*] fix syntax highlighting
Diffstat (limited to 'powershell.html.markdown')
-rw-r--r-- | powershell.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown index 2e7539a5..50e1e27e 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -677,7 +677,7 @@ Powershell as a Tool: Getting Help: -```Powershell +```powershell # Find commands Get-Command about_* # alias: gcm Get-Command -Verb Add @@ -694,7 +694,7 @@ Update-Help # Run as admin If you are uncertain about your environment: -```Powershell +```powershell Get-ExecutionPolicy -List Set-ExecutionPolicy AllSigned # Execution policies include: @@ -708,7 +708,7 @@ help about_Execution_Policies # for more info $PSVersionTable ``` -```Powershell +```powershell # Calling external commands, executables, # and functions with the call operator. # Exe paths with arguments passed or containing spaces can create issues. |