How to work with Sharepoint cmdlet without installing sharepoint?

22,860

I think the only way is to Enable-PSRemoting on Sharepoint server, then from XP computer:

Enter-PSSession -ComputerName sharepointservername
Add-PSSnapin Microsoft.SharePoint.PowerShell

In this way you can manage remotely your sharepoint server

Edit:

Sharepoint Remoting step by step

Share:
22,860
Samselvaprabu
Author by

Samselvaprabu

I am mainly working as a Build and integrator. I am maintaining ESXi servers and doing little bit of Configuration management activities (Base Clearcase and clearcase UCM) as every build and integrator.

Updated on July 15, 2022

Comments

  • Samselvaprabu
    Samselvaprabu almost 2 years

    I have to upload csv file fields into Sharepoint 2010 list using powershell. I am working in windows XP machine.

    When i am trying to add-pssnapin

    Add-PSSnapin Microsoft.SharePoint.Powershell
    

    It throws exception as

    "The Windows PowerShell snap-in 'Microsoft.SharePoint.Powershell' is not installed on this machine."

    Is it possible to work with Sharepoint Powershell cmdlet just by installing Pssnapin or by placing the necessary dlls in some location and load it?