· 2 min read

Using PnP Office 365 CLI in Azure Shell

At the European SharePoint Conference 2017 in the Hackathon results session, Waldek Mastykarz from the PnP team announced the Office365 CLI which gives you the ability to manage an Office 365 on any platform. I had the idea to run this inside the Azure Shell

At the European SharePoint Conference 2017 in the Hackathon results session, Waldek Mastykarz from the PnP team announced the Office365 CLI which gives you the ability to manage an Office 365 on any platform. I had the idea to run this inside the Azure Shell

At the European SharePoint Conference 2017 in the Hackathon results session, Waldek Mastykarz from the PnP team announced the Office365 CLI which gives you the ability to manage an Office 365 on any platform.

We had the idea to run this inside the Azure Shell, giving you the ability to manage the Office 365 platform on any device including mobile Azure app. Awesome!

Initially, this proved to be challenging at the start because running the npm install with the global flag generates an permissions denied error and the command requires elevation.

Example connection error when running the NPM install command

It doesn’t appear to be a feature of the shell to let the user elevate so we were stuck on installing this package; but we managed to find another Microsoft resource to change the NPM config and run the installation and the Office 365 CLI in the Azure Shell.

Let’s get going…

In order to run these commands, you need to have an Azure subscription and have the cloud shell setup. Its best to run this setup on a computer rather than inside the Shell on a mobile device.

Open the Azure Shell and run these commands:

mkdir ~/.npm-global npm config set prefix '~/.npm-global' nano ~/.bashrc export PATH="$HOME/.npm-global/bin:$PATH"

Restart the Cloud Shell

npm i -g @pnp/office365-cli

To test:

spo connect https://yourtenant-admin.sharepoint.com help

In Edge:

Example running the Office 365 CLI in Edge

On iOS:

Example running Office 365 CLI on iOS Azure App

Credit

The credit for most of the operation goes to the Azure MS PnP team that had an article for installing the Azure Building Blocks into a Azure Shell. We adapted this for the Office 365 CLI based on this post: https://github.com/mspnp/template-building-blocks/wiki/Install-Azure-Building-Blocks-in-Azure-Cloud-Shell

Next steps

To see more:

Update: The CLI for Microsoft 365 is now available as default in the Azure Shell: Announcement: Office 365 CLI available in Azure Cloud Shell | Microsoft Developer Blogs

Enjoy!

Back to Blog