From 2538de407badbff4b0071c33e6ff3885463801b4 Mon Sep 17 00:00:00 2001 From: John Gaunt Date: Wed, 24 Nov 2021 10:00:11 -0500 Subject: [PATCH] fixed typo --- backupBitwarden.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backupBitwarden.ps1 b/backupBitwarden.ps1 index fd077c8..0e36786 100644 --- a/backupBitwarden.ps1 +++ b/backupBitwarden.ps1 @@ -35,7 +35,7 @@ $organizations | foreach { } Write-Host "Looking for items with attachments..." -$itemsWithAttachments = $((ConverFro-Json $(bw list items --session $sessionKey)) | Where-Object attachments) +$itemsWithAttachments = $((ConverFrom-Json $(bw list items --session $sessionKey)) | Where-Object attachments) Write-Host "Found $(($itemsWithAttachments | measure).count) items with attachments." Write-Host "Downloading attachments..." $itemsWithAttachments | foreach { @@ -49,4 +49,5 @@ $itemsWithAttachments | foreach { } } -Remove-Variable -Name * -ErrorAction SilentlyContinue \ No newline at end of file +Remove-Variable -Name * -ErrorAction SilentlyContinue +pause \ No newline at end of file