Since the evolution of PowerShell, Development framework can be used in conjunction with CSOM API of SharePoint. This type of development could be relatively more useful in scenarios where we do not have direct access to SharePoint Server and only client machines are accessible.
In this article, we will explore the steps that can be helpful in setting up the client machines for PowerShell development.
Following are the steps that we can follow to setup the client machines.
Step 1 Download Windows Management Framework 3.0
- Click on "Download".
- Select “Windows6.1-KB2506143-x64.msu” file to download.
- Click "Next".
- Save the downloaded file to the local folder.
Step 2 Install Windows Management Framework 3.0
- Run the Executable (.exe) File “Windows6.1-KB2506143-x64.msu”.
Wait till the installer has been completed.
Step 3 Copy SharePoint CSOM DLLs
Add all the SharePoint CSOM DLLs from any SharePoint System to the local folder.
Step 4 Add the DLL references
Add reference to the required SharePoint DLLs to the PowerShell Code.
At the bare minimum, we need to add the reference of the following two DLLs -
- Microsoft.SharePoint.Client.dll
- Microsoft.SharePoint.Client.Runtime.dll
Step 5 Perform Configuration Test
- Write PowerShell code targeting SharePoint On-Premise site.
- Run PowerShell Script
And sure enough we will get the output of the PowerShell Commands.
The successful execution of the script proves that we have done the configuration correctly.
Hope you find it helpful.