From 19ae31359ca16ff2c9c2a9db719ba10044b97edf Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Sat, 14 Sep 2024 16:32:37 -0400 Subject: [PATCH] Update powershell.md --- assets/powershell.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/powershell.md b/assets/powershell.md index 37ac0a72..0bd4b368 100644 --- a/assets/powershell.md +++ b/assets/powershell.md @@ -48,7 +48,9 @@ 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`