All About SharePoint Administration
My work Experiences on SharePoint 2003/2007/2010/2013/O365/SharePoint Online Administration
Friday, July 2, 2021
Wednesday, June 23, 2021
Thursday, March 19, 2020
Tuesday, March 17, 2020
O365 Features
New Features of O365
================
================
Thursday, February 23, 2017
Increase the Column width of the web Part in a SharePoint page
Problem: Increase the Column width of the web Part in a SharePoint page
Solution:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("div.ms-vh-div:contains('URL')").css("width", "400px")
});
</script>
reference: https://channel9.msdn.com/Blogs/MVP-Office-Dev/Change-column-width-in-SharePoint-List
Solution:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("div.ms-vh-div:contains('URL')").css("width", "400px")
});
</script>
reference: https://channel9.msdn.com/Blogs/MVP-Office-Dev/Change-column-width-in-SharePoint-List
Friday, June 24, 2016
Creating new HOSTNAME BASED SITECOLLECTION In SharePoint 2010
Creating new HOST NAME BASED SITECOLLECTION In SharePoint 2010
Step1:
New-SPSite -url http://contoso.customer1.com -HostHeaderWebApplication http://webapplicationname/ -Name "TestingDemoApp" -Template
sts#0 -OwnerAlias Domain Name \UserName
New-SPSite -url
http://contoso.customer2.com -HostHeaderWebApplication http://webapplicationname/ -Name "Testing Demo App 2 "
-Template sts#0 -OwnerAlias Domain Name\UserName
Step2:
Include the newly created Site Collection details in the Bindings section of IIS.
That's Now you can able to access the newly created Host Name Based Site collections.
Tuesday, April 26, 2016
Switch Authentication from NTLM to kerberos
Switch Authentication from NTLM to Kerberos
Plan details for switching authentication from NTLM to
Kerberos on Saturday 23rd 2016
Step1: Make sure AD team has applied
the required settings to Use Kerberos .
Execute the following command on the WFE to see all our web
applications details by Verifying Service Principal Names (SPNs) using SETSPN
command line Prompt:
setspn
–L spapp10
Step2: Change the authentication in CA for each web app
Chose
the Negotiate (Kerberos) option and Save
Step3: Change authentication details in IIS to each web app:
Step4:
Testing :
Subscribe to:
Posts (Atom)