All users having access to SharePoint site and belongs to which SharePoint group. Powershell script to get list of users group wise.
powershellscript
Access Requests Explained for SharePoint 2013 – With a Script to Assign Default Groups
One of the features of SharePoint that has been around is the ability for users that need access to a site, and are denied access, through the “Request Access” process. To enable or review these settings, go to “Settings” >… Read More ›
Configuring SQL Server 2014 AlwaysOn Availability Group using PowerShell
Introduction Earlier on I was trying to search for some scenarios to implement AlwaysOn Availability Groups using PowerShell, although I was able to find some interesting post however non of them represented a complete scenario starting from a fresh windows… Read More ›
Partial Index Reset of a single content source
Partial Index Reset of a single content source. SharePoint will rebuild the index for these sources, when the next full crawl is started.
IIS Reset on all SP Servers using PowerShell
This script will list all SP Servers and restarts IIS on all of them. add-PSSnapin microsoft.sharepoint.powershell $spserver = get-spserver | ?{$_.role -eq “Application”} foreach ($server in $spserver) { write-host “Performing IIS Reset on Server:”$server.name iisreset $server.Name }
Get Database Size for all SharePoint Data Bases using PowerShell
how to check content database size, get sharepoint content database size, Get Database Size SharePoint Data Bases
PowerShell Script to get all the Active Directory groups in your SharePoint Farm
Get all the Active Directory groups in your SharePoint Farm
SharePoint 2013 Site Template ID List for PowerShell
Below table, you can find SharePoint 2013 Site Template ID list, for reference.Template IDTitleGLOBAL#0Global templateSTS#0Team SiteSTS#1Blank SiteSTS#2Document WorkspaceMPS#0Basic Meeting WorkspaceMPS#1Blank Meeting WorkspaceMPS#2Decision Meeting WorkspaceMPS#3Social Meeting WorkspaceMPS#4Multipage Meeting WorkspaceCENTRALADMIN#0Central Admin SiteWIKI#0Wiki SiteBLOG#0BlogSGS#0Group Work SiteTENANTADMIN#0Tenant Admin SiteAPP#0App TemplateAPPCATALOG#0App Catalog SiteACCSRV#0Access Services SiteACCSRV#1Assets… Read More ›