Saturday, June 2, 2018

Highlight Today’s date in SharePoint 2013 Calendar List

Step 1: Go to your Calendar list, Edit page and add Script Editor Web Part to it.



Step 2: Paste the below code to Script Editor Web Part
Code:
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function(){
    //append text
    var originText=$(".ms-acal-today").find("nobr").text();
    $(".ms-acal-today").find("nobr").text(originText+"Today");

    //change the background
    $(".ms-acal-today").css("background-color","yellow");
});
</script>





Wednesday, February 14, 2018

Increase OneDrive for Business Storage 1 TB to 5 TB







To increase OneDrive for Business storage for particular user 

Connect-SPOService -Url https://domain-admin.sharepoint.com -credential admin@domain.onmicrosoft.com


Set-SPOSite -Identity "https://domain-my.sharepoint.com/personal/user1_domain_onmicrosoft_com" -StorageQuota "5120000"



To increase OneDrive for Business storage for all users

References:

Also

Search Box