Summary: Learn how to use PowerShell to remove a corporate user from all site collections in SharePoint Online.
How can I use Windows PowerShell to quickly remove a corporate user from all site collections in SharePoint Online?
Use the following commands (change the login user name as required):
Get-SPOSite | ForEach-object{Remove-SPOUser -...
Summary: Learn how to manage your SharePoint Online tenant installation by using Windows PowerShell cmdlets.
Christopher Weaver is a Microsoft Premier Field Engineer (PFE) who focuses on SharePoint and Office 365 solutions for large enterprise Premier customers. He has been doing PowerShell and SharePoint with Microsoft for nine years. In his...
SUMMARY: The Microsoft Scripting Guys, Ed Wilson, upcoming live appearances.
Hello Scripters,
Teresa (aka. Scripting Wife) here. We have been really busy recently working with PowerShell user groups, and we want to provide you with a convenient listing of upcoming special events. Hope we will be able to see you at one or more of the events. ...
Summary: Microsoft PFE Chris Weaver talks about getting started with Windows PowerShell and SharePoint Online.
Welcome back Chris Weaver as guest blogger. You can see his previous guest blogs.
Christopher Weaver is a Microsoft Premier Field Engineer (PFE) who focuses on SharePoint and Office 365 solutions for large enterprise Premier ...
Summary: Use PowerShell to find all devices that are connected to a computer.
How can I use Windows PowerShell to list all devices that are connected to a computer?
Use the Get-PnpDevice cmdlet and the -PresentOnly switch. Here is an example:
Get-PnpDevice -PresentOnly...