From 305678d5ecc792ef0952791b110c069e58d89e33 Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Sat, 14 Sep 2024 16:32:27 -0400 Subject: [PATCH] Update powershell.md --- assets/powershell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/powershell.md b/assets/powershell.md index 9950816b..37ac0a72 100644 --- a/assets/powershell.md +++ b/assets/powershell.md @@ -48,7 +48,7 @@ weekly_file.txt to monthly_file.txt __Export-Csv__ converts a set of string into CSV and saves in a file. This Cmdlet is very important in reporting. -```Get-Command -Verb Export```` +```Get-Command -Verb Export``` `Get-Command -Verb Export | Select-Object CommandType, Name, Version, Source | Export-Csv - NoTypeInformation -Path C:\NewFolder\ExportCommands.CSV`