Repetitive tasks are a necessary evil. Many IT administrators rely on PowerShell scripts to automate their duties and monitor systems. Scripts can be run to complete operations in Office 365 and SharePoint Online. A script is a collection of PowerShell commands (also known as cmdlets) saved as a text file with a .ps1 extension for later use.
How does one execute a .ps1 file against their SharePoint Online tenant? That’s where SharePoint Online Management Shell comes into play.
SharePoint Online Management Shell is a Windows PowerShell module created to manage SharePoint Online.
Permissions for SharePoint Online PowerShell Management
To run SharePoint Online PowerShell commands, you must be assigned the SharePoint or global administrator role in Office 365.
Connecting to SharePoint Online with Powershell
Once SharePoint Online Management Shell is installed on your PC, you need to use it to connect to SharePoint Online. (Note that the commands below may already be integrated into your script.)
You can connect using one of the following commands, based on whether your tenant has multifactor authentication (MFA) enabled:
Multi-Factor Authentication Enabled
Connect-SPOService -Url https://yourtenant-admin.sharepoint.com
Without Multi-Factor Authentication Enabled
Connect-SPOService -Url https://yourtenant-admin.sharepoint.com -Credential [email protected]
You will need to replace “yourtenant” with the URL of your Office 365 tenant and “[email protected]” with your Office 365 login. A dialog box will appear prompting you to enter your credentials.
Running a .PS1 File in SharePoint Online Management Shell
Now that you’ve installed SharePoint Online Management Shell and connected to SharePoint Online, you can run your .ps1 file. To do so, type or paste the following into the PowerShell console:
& “C:\ScriptPath\Script.ps1”
You’ll need to replace the fake path above with your script’s actual file path, which you can copy from the address bar of Windows File Explorer, if needed:
Next, hit Enter on your keyboard to run the script. That’s all there is to it!
Troubleshooting Running a .PS1 File In PowerShell
If PowerShell won’t let you run any .ps1 files, you may need to update your device’s execution policy. Execution policies are a safeguard put in place to prevent malicious scripts from running on your PC.
You can update your execution policy settings by running the following command in PowerShell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
Replace “RemoteSigned” with your desired execution policy. The available options are:
- Restricted – No scripts can run.
- AllSigned – Only scripts signed by a trusted publisher can run.
- RemoteSigned – Scripts downloaded from the internet must be signed by a trusted publisher to run.
- Unrestricted – All scripts can run.
If you don’t feel comfortable changing the execution policy, you can also unblock a script to run it without changing the execution policy.
What Office 365 tasks do you automate using scripts? Comment below and let us know!
Additional How-To Articles
How to Create a SharePoint Site
Before we get into how to create a SharePoint site, here is a brief history lesson regarding SharePoint and its terminology. For years, when discussing SharePoint on-premises architecture, the community differentiated between site collections and...
How to Create a Folder in SharePoint
One of the main functions of SharePoint is document management. While SharePoint as a platform is versatile and can wear numerous hats, it shines as a file storage and collaboration tool. Many users are comfortable structuring document shares using...
How to Create a Form in SharePoint
SharePoint is more than a document repository. It empowers users to store, collaborate on, and manipulate all types of data. This article will cover how to create a form in SharePoint for any list. Using SharePoint lists, users can capture...
0 Comments