pnp / PnP-PowerShell

SharePoint PnP PowerShell CmdLets
https://pnp.github.io/powershell
Other
985 stars 665 forks source link

Example 1 incorrect on Clear-PnPRecycleBinItem Microsoft Docs page #3015

Open rakova17 opened 3 years ago

rakova17 commented 3 years ago

Hello.

I originally opened this issue here: https://github.com/MicrosoftDocs/office-docs-powershell/issues/6893 and was instructed to come here (see link).

Example 1 on this page is incorrect: https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/clear-pnprecyclebinitem?view=sharepoint-ps

This:

Get-PnPRecycleBinItem | ? FileLeafName -like "*.docx" | Clear-PnpRecycleBinItem

Should be:

Get-PnPRecycleBinItem | ? LeafName -like "*.docx" | Clear-PnpRecycleBinItem

Thanks!

ToddKlindt commented 3 years ago

I submitted a fix for this in PR #3016.