Had this error when trying to update SharePoint SPFieldLookupValueCollection using PowerShell. Just to share a small part of my PowerShell that DID NOT Work $valueCol […]
Bulk Import User Profile Photo using PowerShell
Bulk importing user profile photo can be a pain in the arse, imaging you have few thousand of employee photos to be imported into your SharePoint. […]
PowerShell script to disable Limited Access Lock Down mode for all Site Collections
I always like to make use of PowerShell to do stuff. When dealing with a lot of Site Collection, it is advisable to script your […]
PowerShell script to Open or Close SharePoint Web Parts
If you ever need to make changes to your SharePoint Web Parts such as hiding/showing, this post will help you to cut down unnecessary time. Run the […]
How to check my CPU Temperature using PowerShell Remotely
Thought it would be helpful to share how to remotely check your Computer temperature especially when you have a computer at home and you want […]
SharePoint Permission Back Up and Restore in PowerShell
Hi SharePoint Admins! I’ve recently worked on a module to enhance SharePoint Backup experience. If you haven’t known SharePoint Native Backup enough, please read this. SharePoint Native […]
SharePoint Limited Access Permission – Careful when using BreakInheritance
This post is for SharePoint Developer or Admin who deals with SharePoint APIs (PowerShell or C#) I have recently discovered a killing command from SharePoint […]
Scripting your SharePoint Farm Backup with PowerShell in Task Scheduler
Hi guys, Today, I would like to share one of the SharePoint admin must-do deployment steps which is to configure a task scheduler and to […]
PowerShell script to test SharePoint Send Mail
Thought it would be good to share some of my script to the public Copy the below script and save as .ps1 file. Run it […]
Setting up Subscription Setting – SharePoint 2013
[sourcecode type=”powershell”] $appPool = Get-SPServiceApplicationPool "SharePoint Web Services Default" $appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPool –Name "Subscription Settings Service Application" –DatabaseName Settings_Service $proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication […]