<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>NUBO GmbH</title>
    <description>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.
</description>
    <link>http://www.nubo.eu/</link>
    <atom:link href="http://www.nubo.eu/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Mon, 08 Jul 2019 14:14:12 +0000</pubDate>
    <lastBuildDate>Mon, 08 Jul 2019 14:14:12 +0000</lastBuildDate>
    <generator>Jekyll v3.8.5</generator>
    
    
    <item>
        <title>Reminder - Access Web Apps are being retired from SharePoint beginning of April 2018</title>
        <description>Microsoft no longer recommended Access Services for new apps in March 2017. The feature is going to be retried from Office 365 this April. Administrators had the opportunity to disable the creation of new Access apps with a switch in the admin pages.

</description>
        <pubDate>Wed, 21 Feb 2018 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2018/02/Reminder-Access-Web-Apps-Are-Retired-From-SharePoint-Online/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2018/02/Reminder-Access-Web-Apps-Are-Retired-From-SharePoint-Online/</guid>
        
        <category>SharePoint Online</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>How do I authenticate towards Graph API with PowerShell?</title>
        <description>The Graph Explorer is a good way to play around with the Graph API endpoints without worrying about how the authentication process has to be performed towards your environment. On the other hand, our aim is to write PowerShell scripts which perform operations against our resources in an autonomous way. This can be done after we understood how to identify ourselves, ensure that we have proper permissions, and perform the desired operations.

</description>
        <pubDate>Mon, 29 Jan 2018 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2018/01/How-Do-I-With-PowerShell-Towards-Graph-API/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2018/01/How-Do-I-With-PowerShell-Towards-Graph-API/</guid>
        
        <category>Graph API</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Getting started with the Graph API and PowerShell</title>
        <description>The Microsoft Graph API is used to connect to the data that drives productivity such as mail, calendar, contacts, documents, directory, devices, and more through a unified endpoint accessible through REST. The API can be used to build productivity apps, governance solutions, or to perform automation/maintenance activities towards these assets in the organization. You can get started with the graph API here.

</description>
        <pubDate>Tue, 09 Jan 2018 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2018/01/Getting-started-with-the-Graph-API-and-PowerShell/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2018/01/Getting-started-with-the-Graph-API-and-PowerShell/</guid>
        
        <category>Graph API</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Manage the group memberships using the Yammer REST API and PowerShell</title>
        <description>This post will show how to use the Yammer REST API for managing the group memberships of a group. You can find the documentation of the Yammer REST API here.

</description>
        <pubDate>Fri, 28 Apr 2017 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/04/Managing-Group-Memberships-With-Yammer-REST-API/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/04/Managing-Group-Memberships-With-Yammer-REST-API/</guid>
        
        <category>Yammer</category>
        
        <category>Governance</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Export the recycle bin information of a SharePoint site into Excel</title>
        <description>I have been asked to create a CSV export of the site collection recycle bin on SharePoint on-premises. I came to two snippets that can be executed on the server using PowerShell. The first snippet uses the SharePoint PowerShell commandlets. The second script uses the SharePoint server side code.

</description>
        <pubDate>Fri, 28 Apr 2017 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/04/Export-Recycle-Bin-Items-From-SharePoint-With-PowerShell/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/04/Export-Recycle-Bin-Items-From-SharePoint-With-PowerShell/</guid>
        
        <category>SharePoint</category>
        
        <category>Scripts</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Assigning site collection admin rights to all OneDrive for Business sites - Revisited</title>
        <description>The problem
In a previous blog post I showed how to assign site collection admin rights to all SharePoint Online site collections in your tenant. You can use the script presented here if you want to do the same for OneDrive for business sites. I am going to use parts of the script we presented in the post on how you loop over all user profiles in SharePoint Online and will extend it with the necessary commands.


  
    
      [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint.Client”)
      Out-Null
    
    
      [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint.Client.Runtime”)
      Out-Null
    
    
      [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint.Client.UserProfiles”)
      Out-Null
    
  

</description>
        <pubDate>Fri, 21 Apr 2017 05:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/04/Assigning-site-collection-admin-rights-to-all-onedrive-sites-revisited/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/04/Assigning-site-collection-admin-rights-to-all-onedrive-sites-revisited/</guid>
        
        <category>OneDrive for Business</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Enumerate OneDrive for Business contents using PowerShell</title>
        <description>The aim of this script is to get a fast overview about the contents of a OneDrive for Business document library. The script uses CSOM to traverse the data and outputs it for further analysis into a CSV file. Your user requires access to the OneDrive for Business personal site. This could be achieved by using the instructions of one of my previous posts.

</description>
        <pubDate>Thu, 20 Apr 2017 06:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/04/Enumerate-OneDrive-For-Business-Contents/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/04/Enumerate-OneDrive-For-Business-Contents/</guid>
        
        <category>OneDrive for Business</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Export properties form all OneDrive for Business sites in Office 365</title>
        <description>Few months ago I created a script running over provisioned OneDrive for Business sites using the MySite host in a tenant. The technique was working fine until you reached a higher amount of OneDrive sites. It started to return less sites and became unreliable. Therefore, I created a new script allowing you to loop over all provisioned OneDrive for Business sites using CSOM. You can use this script to create an inventory of your sites.

</description>
        <pubDate>Mon, 10 Apr 2017 06:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/04/Extract-OneDrive-For-Business-Properties/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/04/Extract-OneDrive-For-Business-Properties/</guid>
        
        <category>OneDrive for Business</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Retrieving SharePoint Online Sites with PowerShell</title>
        <description>SharePoint service administrator use the Get-SPOSite command to query SharePoint Online site collection information. This post is going to show some examples how this can be achieved.

</description>
        <pubDate>Tue, 14 Mar 2017 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/03/Retrieving-SPO-Sites-With-Powershell/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/03/Retrieving-SPO-Sites-With-Powershell/</guid>
        
        <category>Scripts</category>
        
        <category>SharePoint Online</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
    
    <item>
        <title>Accessing videos with REST Video API through PowerShell</title>
        <description>The REST Video API is used to discover and interact with videos in the Office 365 Video service. You can find the official documentation here. This post is going to show you how you can access video data through the REST API.

</description>
        <pubDate>Wed, 08 Mar 2017 04:00:00 +0000</pubDate>
        <link>http://www.nubo.eu/en/blog/2017/03/Accessing-Videos-With-Office-365-Video-API-Through-PowerShell/</link>
        <guid isPermaLink="true">http://www.nubo.eu/en/blog/2017/03/Accessing-Videos-With-Office-365-Video-API-Through-PowerShell/</guid>
        
        <category>Governance</category>
        
        <category>Office 365 Video</category>
        
        <category>Scripts</category>
        
        <category>Office 365</category>
        
        
        <category>en</category>
        
      </item>
    
    
  </channel>
</rss>
