pnp / PnP-PowerShell

SharePoint PnP PowerShell CmdLets

Home Page:https://pnp.github.io/powershell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example 1 incorrect on Clear-PnPRecycleBinItem Microsoft Docs page

rakova17 opened this issue · comments

Hello.

I originally opened this issue here: MicrosoftDocs/office-docs-powershell#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!

I submitted a fix for this in PR #3016.