SharePoint 2010 and PowerShell are united to allow running virtually any command from from a command-line interface, and even, from a remote computer that's not even inside the server's domain. Objective: Run SharePoint Commands from any Remote PC Requirements: Windows PowerShell V2 (CTP3) Windows Remote Management - WinRM (CTP3) Needed Configurations #ENABLE WinRM > Net Start WinRM > Enable-PSRemoting > Set-WSManQuickConfig #Create HTTPS listener winrm create winrm/config/listener?Address=*+Transport=HTTPS @{Hostname="DESTINY_HOSTNAME";CertificateThumbprint="7fd53c46a38c60c089f3ab3451258f917011c655"} CertificateThumbprint can be found running mmc, > File, Add Snapp-in > Certificates, Add > Personal, Certificates > Double Click certificate, Details, Certificate, Thumbprint > Select all, copy to notepad > Delete all white-spaces and ? characters, leave only numbers and leters #set trusted hosts on origin computer #ORIGIN HOST MUST ...