Heinrich Ulbricht

Results 61 comments of Heinrich Ulbricht

(Note: Just found this fork which seems to have implemented removing likes: https://github.com/atreyagagan/delete-tweets/commit/fc1af439fe9515ccd7f8284b6f70f787251c6db2 - maybe it's useful, maybe not.)

I noticed this as well. My theory so far is that this might be retweets of suspended accounts that still surface in the tweet count. But that's pure speculation and...

I'll check this as soon as the current export expires so I can create a new one. Then I'll compare the counts.

I added this functionality in my fork. I'm refraining from opening a pull request, though, since I changed quite a lot and it was a rather quick implementation.

Thanks from September 2021!

@anandasanyal Could you please edit the ticket content and add more details about what you are trying to do, which results you observe and which results you expect? Especially the...

You can add a list web part like this using PnP cmdlets: ``` Connect-PnPOnline https://.sharepoint.com/sites/test $page = Add-PnPClientSidePage -Name "Home_Custom.aspx" -Publish $list = Get-PnPList "Shared Documents" # get your list...

@anandasanyal Yes you can; I wasn't sure since you mentioned PnP. I would suggest searching for the implementation of the PnP cmdlets over here: https://github.com/SharePoint/PnP-PowerShell They are implemented using CSOM.

@anandasanyal I had to set the property `selectedListId` to the ID of the list to show (Documents lib in your case). Try this instead of setting `Name`. (But I'm just...