-
Notifications
You must be signed in to change notification settings - Fork 388
Description
Reporting an Issue or Missing Feature
Get-PnPRecycleBinItem
This command does NOT return all items from First and Second stage recycle bin. Tried with and without the -RowLimit and there was no difference. Tested with 2.4.0
Expected behavior
Get-PnPRecycleBinItem returns all items from BOTH First and Second stage recycle bin.
Actual behavior
Get-PnPRecycleBinItem only returns items from First stage recycle bin.
Also please update your documentation here for "Example 1" as it is not accurate.
https://pnp.github.io/powershell/cmdlets/Get-PnPRecycleBinItem.html
Steps to reproduce behavior
$recycleBinItemsAll = Get-PnpRecycleBinItem
$recycleBinItemsAll.Count
$recycleBinItemsFirst = Get-PnpRecycleBinItem -FirstStage
$recycleBinItemsFirst.Count
$recycleBinItemsSecond = Get-PnpRecycleBinItem -SecondStage
$recycleBinItemsSecond.Count
Work-around
$recycleBinItemsFirst = Get-PnpRecycleBinItem -FirstStage
$recycleBinItemsFirst.Count
$recycleBinItemsSecond = Get-PnpRecycleBinItem -SecondStage
$recycleBinItemsSecond.Count
$recycleBinItems = $recycleBinItemsFirst + $recycleBinItemsSecond
$recycleBinItems.Count
What is the version of the Cmdlet module you are running?
2.4.0
Which operating system/environment are you running PnP PowerShell on?
- Windows
- Linux
- MacOS
- Azure Cloud Shell
- Azure Functions
- Other : please specify