Showing posts with label SharePoint 2010. Show all posts
Showing posts with label SharePoint 2010. Show all posts

Web Application is prompting for Username and Password Credentials in SharePoint 2013




An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL.

  • Go to Run -> REGEDIT  - > HKEY_LOCAL_MACHINE -> SYSTEM -> CurrentControlSet -> Control -> Lsa -> MSV1_0


  • Right Click on MSV1_0 -> New -> Multi-String value


  • Name it has ‘BackConnectionHostNames’. Now Right click & Select ‘Modify’
  • Enter the Hostname of the site.
  • Click Ok.
  • Now Restart IIS & Restart machine.

How to disable the Edit Link page option in SharePoint

In this article we are able to see how to restrict users to delete the web parts from the page.
We give the different type of permissions based on their role, but most of the people having access to delete the web parts in the page.

We are referring all the pages from the Site Pages library, be default library’s will inherit the permissions from the site level, so every on having access to edit and delete the web parts.
we have to disable the Edit links option, for that we will stop inheriting the permissions for that particular site pages library and give read permissions to the site library and keep the permissions as is at site level.

Steps to follow.
Navigate to that particular site.
Click on Site Contents
Click on Site Pages library
Navigate to library setting
Click on Permissions for this document library
Stop inheriting the permissions on the top left
Click on OK and confirm


Give read only access to the site pages library, now on one can see the Edit link to edit the page.

How to add column in to List using Power Shell

In this Post we are able to show, how to add the “Multi Choice” column   to the Particular list and also we can check the condition that column is available in that list or not.
In our Example we created a List with Name “SharePoint List” using power shell created a column and adding the Values.

Add-PSSnapin Microsoft.SharePoint.PowerShell
#Get the Site URL
$weburl = Get-SPWeb "http://dotnetsharepoint.com/sites/SharePoint/SharePoint2013"
#Get the List Name
$list = $weburl.lists["SharePoint List"]
#check condition field is available or not
if($list.Fields.ContainsField("SharePoint") -eq $true)  {
      Write-Host  "FieldName already avilable in the List"
 }
 else
 {
 #Add New choice field to the list
$list.Fields.Add("SharePoint", [Microsoft.SharePoint.SPFieldType]::Choice,
$false)
#Add Choices to the field
$ChoiceField = $list.Fields.GetField("SharePoint")
#Get the field #Required Field
$ChoiceField.Required = $true
#Set Default value
$ChoiceField.DefaultValue = “SharePoint2013"
#Allow Fill-in Choices
$ChoiceField.FillInChoice = $false
#Add the Drop down choice values
$ChoiceField.Choices.Add("SharePoint2013")
$ChoiceField.Choices.Add("SharePoint2010")
$ChoiceField.Choices.Add("SharePoint2007")
#Commit changes
$ChoiceField.update()
$list.update()
}

OutPut:



SharePoint Online Real Time Training Contact: JLAKSHMITULASI@GMAIL.COM

Block and unblock of attachment types in SharePoint

  In SharePoint by default few attachments are blocked and will not be allowed to be uploaded.
 If we want to allow uploading of blocked file type then we need to delete the file type from "Blocked file types".
Follow the below simple steps to allow block file types into your site in SharePoint.
  Navigate to Central Administration->Manage Web Applications->select desired web application->Blocked file types as show in figure below


And in the below window, remove the undesired file types from the blocked file types. You will now be able to add that file to your site.
Also you can add any file type extension you don’t desire to be uploaded. Just type the extension of file type you want to block in braces. Ex: if you want to block word document then type {.doc} in separate line in below window and click ok.



File types Extensions blocked by default in SharePoint 2013 are:

  • .ade
  • .adp
  • .app
  • .asa
  • .ashx
  • .asmx
  • .asp
  • .bas
  • .bat
  • .cdx
  • .cer
  • .chm
  • .class
  • .cmd
  • .cnt
  • .com
  • .config
  • .cpl
  • .crt
  • .csh
  • .der
  • .dll
  • .exe
  • .fxp
  • .gadget
  • .grp
  • .hlp
  • .hta
  • .htr
  • .htw
  • .ida
  • .idc
  • .idq
  • .ins
  • .isp
  • .its
  • .jse
  • .json
  • .ksh
  • .lnk
  • .mad
  • .maf
  • .mag
  • .mam
  • .maq
  • .mar
  • .mas
  • .mat
  • .mau
  • .mav
  • .maw
  • .mcf
  • .mda
  • .mdb
  • .mde
  • .mdt
  • .mdw
  • .mdz
  • .ms-one-stub
  • .msc
  • .msh
  • .msh1
  • .msh1xml
  • .msh2
  • .msh2xml
  • .mshxml
  • .msi
  • .msp
  • .mst
  • .ops
  • .pcd
  • .pif
  • .pl
  • .prf
  • .prg
  • .printer
  • .ps1
  • .ps1xml
  • .ps2
  • .ps2xml
  • .psc1
  • .psc2
  • .pst
  • .reg
  • .rem
  • .scf
  • .scr
  • .sct
  • .shb
  • .shs
  • .shtm
  • .shtml
  • .soap
  • .stm
  • .svc
  • .url
  • .vb
  • .vbe
  • .vbs
  • .vsix
  • .ws
  • .wsc
  • .wsf
  • .wsh
  • .xamlx



Enable list and library Versions using PowerShell Script except the hidden lists

Enable list and library Versions using PowerShell Script  except the hidden lists
Using this script we can Enable Version with Major Version Limit under site content(Only visible list, not hidden list) all list and library

Add-PSSnapin microsoft.sharepoint.powershell -ErrorAction SilentlyContinue

$web = get-spsite "https://dotnetsharepoint.com/"

# For All Sub Sites
foreach ($spWeb in $web.AllWebs)
{
$lists = $spWeb.lists
foreach ($list in $lists)
{
#Only visible list under site contents
if(!$list.Hidden)
{
    # Enabling version   
    if($list.EnableVersioning -eq $false)
    {  
         write-host $list.title "Version Enabled for this site"
         $list.Enableversioning = $true
         $List.MajorVersionLimit = 5
         $list.update()
    }
}

}

}

Export user list from SharePoint groups using PowerShell script

Export user list from SharePoint groups using PowerShell script
 We can get all users from all groups in SharePoint using below script. Using the below script we can get sub rooms users also.
  
Add-PsSnapin Microsoft.SharePoint.PowerShell


$URL= "https://Dotnetsharepoint.com"

     $site = Get-SPSite $URL
   
     #Write the Header to "Tab Separated Text File"
        "Site Name `t Group Name `t User Name “| out-file "D:\SPUsersList.xslx"
       
     #Iterate through all Webs (All Sub rooms)
      foreach ($web in $site.AllWebs)
      {
        #Write the Header to "Tab Separated Text File"
        "$($web.title) `t" | out-file "D:\SPUsersList.xslx" -append

         #Get all Groups  
         foreach ($group in $Web.groups)
         {
                "`t `t $($Group.Name)" | out-file "D:\SPUsersList.xslx" -append
             
                        foreach ($user in $group.users)
                        {
                           #Exclude Built-in User Accounts                            

                                "`t `t `t $($user.name)" | out-file "D:\SPUsersList.xslx" -append
                        }
         }
     }

    write-host "Report Generated at D:\SPUsersList.xlsx"

Set the masterpage using PowerShell in SharePoint

Set the masterpage using PowerShell in SharePoint
 Using Power Shell We can easily change our custom master page in our SharePoint site,once we prepare the script we can use for every time to change the master page.
 "Get-SPWeb" i used to get the site URL of the SharePoint in a variable.

We have two Properties to control the master Page settings, CustomMasterUrl and MasterUrl

Site Master Page         ---   CustomMasterUrl
System Master Page    ---   MasterUrl

Example:
$web = Get-SPWeb http://Dotnetsharepoint.com
$web.CustomMasterUrl = "/_catalogs/masterpage/Custom.master"
$web.MasterUrl = "/_catalogs/masterpage/Custom.master"
$web.Update()


If we have a site collection under a managed path like "sites”, we can change using 

“/sites/SITECOLLECTION/_catalogs/masterpage/Custom.master"
$web.CustomMasterUrl = "/sites/DotnetSharePoint/_catalogs/masterpage/Custom.master"
$web.MasterUrl = "/sites/DotnetSharePoint/_catalogs/masterpage/Custom.master


sorry we're having trouble refreshing your tasks sharepoint 2013

We enable my site with all the feature having a task list in the quick launch,we created a new tasks in the site,when we tried to refresh the tasks i was not refreshing it was  showing an error as shown  in the screen shot.
                          

Resolution:

Step 1: we have to check the "Work Management Service Application" is there or not,Navigate to Central Admin->Application Management->Service Application.If my case  service application is available as shown below.



Step 2: Now check the service is in started mode or not,Navigate to Central Admin->Application Management ->Manage  services on server.check the status.
In my case it was not started.click on start.






Step 3:
Also verify the Service having permissions with "Application Pool" Service account with Full Control.
In my case i given the application pool Service  account with full control to "Work Management   Service Application"

Finally we verified at tasks,it was refreshing with out any issues.




Add SharePoint Calendar ListView in Page programmatically

Add SharePoint Calendar ListView in Page programmatically
 In my previous article i explain about  how to add  SharePoint list view in page
Add SharePoint ListView in Page
Add SharePoint ListView in Page

   We are going to add default calendar view in ASPX page.  I tried to use html normal view, but it's not showing calendar. after googling i found the solution. For calendar we have to change the Type and add Scope, RecurrenceRowset.

In Elements we have to add default calendar view , add the following code in Elements.

  <File Path="Module1\Calendar.aspx" Url="Calendar.aspx" Type="GhostableInLibrary">
      <View List="Lists/Calendar" BaseViewID="2"  WebPartZoneID="WPListcalendarView" WebPartOrder="1"  DefaultView="TRUE" DisplayName="Calendar" Name="Calendar" Type="CALENDAR" Scope="Recursive" RecurrenceRowset="TRUE">
      </View>
   </File>

ASPX page have to call the calendar webpart, add the following code in ASPX page.

<asp:Content ID="Content" ContentPlaceHolderID="PlaceHolderMain" runat="server">
 <WebPartPages:WebPartZone ID="WPZMOC" runat="server">
                <ZoneTemplate></ZoneTemplate>
            </WebPartPages:WebPartZone>
</asp:Content>

SharePoint Online Real Time Training Contact: JLAKSHMITULASI@GMAIL.COM

Error occurred in deployment step 'Add Solution': Operation is not valid due to the current state of the object

Error occurred in deployment step 'Add Solution': Operation is not valid due to the current state of the object
     When i am deploying the solution using Visual studio , it builds fine but while Adding solution gives error :
"Error occurred in deployment step 'Add Solution': Operation is not valid due to the current state of the object".

This is a generic error, I resolve this issue by Reset the IIS. (IISRESET)

Here is the Reference.
 
SharePoint Online Real Time Training Contact: JLAKSHMITULASI@GMAIL.COM

Sorry Something Went Wrong

Many times we are getting this error message like Sorry Something Went Wrong with Correlation ID as shown below.

Replace your Correlation  ID and run the script in SharePoint PowerShell,In C drvice with specified file name we get the message related to the Correlation.

Easily we can find the solution.for executing the script it will take few miniutes time.

get-splogevent | where-object {$_.Correlation -eq "9a34859c-60bf-a0da-b50a-fa2880d55674"} | fl message > C:/SPLog.log 

SharePoint Online Real Time Training Contact: JLAKSHMITULASI@GMAIL.COM

How to add custom column into a Page Layout in SharePoint

How to add custom column into a Page Layout in SharePoint
We can add custom columns easily by using "listItemProperty"

->Navigate to SharePoint Designer

->Open your Page Layout

->Drag and drop "ListItemProperty" to desired location in the toolbox, server controls.

we have something like the following:

<SharePointWebControls:ListItemProperty runat="server" id="ListItemProperty1"/>

In this we can add "Property" value using desired property

Example:

1) <SharePointWebControls:ListItemProperty runat="server" Property="DocumentUrl" id="ListItemPropertycustom1"/>

2) <SharePointWebControls:ListItemProperty runat="server" Property="Assoociated_x0020_Document_x003a_Link_x0020_Title" id="ListItemPropertycustom2"/>

Note:

->If we have spaces in a custom field use "_0x0020_"

->We are calling secondary lookup fields, then the colon is represented by "_x003a_"

Reference: List of Custom column field IDs

How to Add Page Title on their browser's title bar in SharePoint Programatically and Customly

How to Add Page Title on their browser's title bar in SharePoint Programatically and Customly

Add Page Title Customly 

        
        Navigate to SharePoint Designer -> Open your Page Layout -> In Content "PlaceHolderPageTitle" place drag and drop "ListItemProperty" in the toolbox, server controls.

we have something like the following:

<SharePointWebControls:ListItemProperty runat="server" id="ListItemProperty1"/>

In this we can add "Property", I am adding "BaseName" Property to show the title on their browser's title bar in the Page.

<asp:Content id="Content1" ContentPlaceholderID="PlaceHolderPageTitle" runat="server">
 <SharePoint:ListItemProperty ID="ListItemProperty1"  Property="BaseName" maxlength="40" runat="server"/>
</asp:Content>

Add Page Title Programatically 

           

              I  created Custom PageLayout for my pages programatically, so in that PageLayout page i call "ListItemProperty" in PlaceHolderPageTitle" place.

<asp:Content id="Content1" ContentPlaceholderID="PlaceHolderPageTitle" runat="server">
 <SharePoint:ListItemProperty ID="ListItemProperty1"  Property="BaseName" maxlength="40" runat="server"/>
</asp:Content>




Get QueryString Value in SharePoint webpart and pass that value to browser's title bar in the page Programatically

Get QueryString Value in SharePoint webpart and pass that value to browser's title bar in the page Programatically

          Using "HtmlTitle" we can pass the browser's title bar in the Page. I am passing QueryString Value with Page url in the list, so first i am getting the Query String value and passing that value to "HtmlTitle ". The following is the code for getting QueryString Value and pass that value to title bar in the page.

 using System.Web.UI.HtmlControls

public string querystringvalue = string.Empty;
 protected void Page_Load(object sender, EventArgs e)
        {
                      //Getting Query String Value
                      querystringvalue = Convert.ToString(HttpContext.Current.Request.QueryString["value"]);
                       HtmlTitle tagTitle = new HtmlTitle();
                       tagTitle.Text = "querystringvalue ";
                       Page.Header.Controls.Remove(   
                          Page.Header.FindControl("PlaceHolderPageTitle").Parent);
                        Page.Header.Controls.Add(tagTitle);
        }

How to create Calculated field in list Schema

How to create Calculated field in list Schema
            I want to create Calculated field in list schema, Formula SP"&(TEXT([Created],”yyyy”)) the following code help you to create this formula in Schema

"SP"& (TEXT([Created],”yy”))  
"SP"& (TEXT([Created],”yy”))  

 <Field Type="Calculated" ID="{CG453ACF-2131-4836-AGJ9-3EF894A57225}"        EnforceUniqueValues="FALSE" Indexed="FALSE" LCID="1033" ResultType="Text"  DisplayName="CalID" StaticName="CalID" Name="CalID" Required="FALSE" >
       <Formula>="SP"&amp;TEXT(Created,"yyyy")</Formula>
           <FieldRefs>
                <FieldRef Name="Created"/>
       </FieldRefs>
 </Field>

In Previous article we can check  How to create Calculated Fields in SharePoint List &  with some Date and Time Formulas.

Get attachments in SharePoint custom list Programatically

Get attachments in SharePoint custom list Programatically

I want to get Attachments based on SPQuery, the following code will help you to get the attachments.

               SPLIobjItems = Customlist.GetItems(spqueryobj);

                 foreach (SPListItem SPLIobj in SPLIobjItems )
                      {                          
                            foreach (String attachmentname in SPLIobj .Attachments)
                             {             
                               //Based on SPLIobj getting attachments
                                String attachmentURL = SPLIobj .Attachments.UrlPrefix + attachmentname;
                                
                                 attchedvalue = attachmentURL ;
                             }
                        }

Get url and take last value of url using jquery

 Get url and take last value of url using jquery
Get current url on PageLoad and assign that value to asp.net textbox control.

Ex: I get this url using the following script, in that url i want to get url of the last value and the name lakshmi.
http://www.dotnetsharepoint.com/2014/01/cannnot-connect-to-performance-point/lakshmi.aspx

<asp:TextBox ID="txt_name" runat="server"></asp:TextBox>

Script:

$(document).ready(function () {
       var currenturl = $(location).attr('href');
       //alert(currenturl );    //In currenturl  i am getting current url
       var pagename = jloc.substr(jloc.lastIndexOf('/') + 1);
       //alert(pagename);    // In pagename i am getting "lakshmi.aspx"
       var name = pagename.split('.')[0];  //In name am getting the "lakshmi"
       //alert(name);
       var fname = $("#<%=txt_txtname.ClientID%>").val(name);  //assign value to asp textbox
       $("#mytext").val(name); //html id type



Cannot connect to performance point services contact the administrator for details

When I am trying to create new data source in the dashboard designer I am getting this issue

 



 

Navigate to Application Management ->Service applications->Configure Service application associations->Click on Default



 

Check the PerformancePoint Service Application Proxy Click Ok.
Now we can able to create new data source.

Cannot complete this action as the Secure Store Shared Service is not responding. Please contact your administrator



When I am configuring Performance Point Service in SharePoint 2013 I am facing this error

Cannot complete this action as the Secure Store Shared Service is not responding. Please contact your administrator.

Before we have to check

Go to System Settings->Manage Services on Server.

We have to enable the Following Services.

Performance Point Service

Secure Store Service

Claims Windows token Service.

Finally Reset the IIS.


How to create SharePoint List views in List Schema

How to create SharePoint List views in List Schema
      I have created custom view through list schema in VS 2012. While creating first time i cant able to get the custom view under the list settings view. I miss some fields. Using the following code i can able to see the view in under the list settings view.
 We can create the number of views based on "BaseViewID" , Default while creating list in Visual Studio BaseViewID="1". While creating more views BaseViewID must be 'Unique'.
Example:2,3,4...

<View Name="{7689D8A2-546E-4371-84B0-7656B654A6SW}" BaseViewID="2" Type="HTML" WebPartZoneID="Main" DisplayName="sp" MobileView="TRUE" Url="sp.aspx" ImageUrl="/_layouts/15/images/generic.png" SetupPath="pages\viewpage.aspx" DefaultView="FALSE" TabularView="FALSE" ModerationType="Moderator"  >
        <Toolbar Type="Standard" />
        <XslLink Default="TRUE">main.xsl</XslLink>
        <JSLink>clienttemplates.js</JSLink>
        <RowLimit Paged="TRUE">30</RowLimit>
        <ViewFields>
          <FieldRef Name="Name"/>
          <FieldRef Name="Adress"/>
        </ViewFields>
        <Query>
          <OrderBy>
            <FieldRef Name="ID">
            </FieldRef>
          </OrderBy>
        </Query>
        <ParameterBindings>
          <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
          <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)" />
        </ParameterBindings>

      </View>

Labels

.Net Interview Questions add custom button in sharepoint using javascript Add custom column property into a PageLayout in SharePoint Add Page Title on their browser's title bar in SharePoint Customly add zip files in blogger Add-SPOSiteCollectionAppCatalog : Must have Manage Web Site permissions or be a tenant admin in order to add or remove sites from the site collection app catalog allow list Advance SmartObject An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL. Angular 2 Angular JS Angularjs Angularjs 1 anonymous users accessing lists and libraries App Permissions for SharePoint 2013 asp.net membership unique email Asp.net TreeView Control asp.net. Attendees in SharePoint Auto refresh list using Content Editor WebPart in SharePoint 2013. Auto Refresh SharePoint list using JavaScript Block and unblock of attachment types in SharePoint Blogger C# Callouts in SharePoint 2013 Cascading Dropdown list in SharePoint change onenote to another location. change SuiteBarLeft in SharePoint 2013 check if userid exists in database c# click node text to expand/collapse in Treeview client object model Close webpart CQWP crate chart using BI site in PPS Create a modern team site collection in SharePoint online Create BI chart in PPS SharePoint 2013 create filter in dashboard designer. create kpi's in dashboard designer create kpi's in SharePoint 2013 dashboard designer Create List Create List In SharePoint Create List using Power Shell Script Create Lookup Field in List using Power Shell Script Create lookup field in List create SharePoint List custom view. create SharePoint List views in List Schema create site collection in site collection in SharePoint using powershell created Date Time calculated field in SharePoint Cross site Collection in SharePoint 2013 Crud Operation in Asp.net Using Stored Procedure Custom MasterPage Approval in SharePoint custom view for survey list Customly add SharePoint List view in Page. delete items in sharepoint using powershell Difference between Angular 1.x & Angular 2 difference between Office 365 and Windows Azure difference between Windows Azure and Office 365 in sharepoint? DifferenceBetween discussion board Display Data in Grid View display radio buttons and choice fields horizontally in SharePoint 2013 Document library DotNet Drag and drop documents in document library in SharePoint dynamically populating values from one list to another list using jquery in sharepoint edit and delete buttons in datagridview Edit Links email notification using Nintex enable anonymous access in SharePoint 2013 enable app catalog sharepoint online site collection powershell Enable appcatalog site collection level using PowerShell based on Input file Enable versions for list and library except the hidden lists using PowerShell Script Error occurred in deployment step 'Recycle IIS Application Pool': Cannot resolve model for the project package Errors&Solutions Export document library in sharepoint using powershell Export particular Group in Term Store Management in SharePoint 2013 Export to Excel first release Flow Flow features free disk space on servers using powershell Friendly URLs and Managed Navigation in SharePoint 2013 get a list of site collection with template in web application using PowerShell Script in SharePoint Get attachments in SharePoint custom list using c# get current list item id sharepoint programmatically Get current url using jquery Get data from SharePoint list using Rest api & Angular JS Get Random Get Random SharePoint items using PowerShell Get Random values from SharePoint list using PowerShell Get url of the last value using jquery Get-SPOSite : The managed path sites/yoursitename is not a managed path in this tenant. Getting Email From User Hide “Edit Links” in left navigation SharePoint 2013 hide button in sharepoint based on permissions Hide column in SharePoint List view hide fields using client side object model Hide list in Quick Launch in SharePoint using PowerShell How to add Custom Tiles to SharePoint site Page. How to add extension files in Search Navigation in SharePoint 2013 How to Add Multiple users Using SharePoint People Picker How to add SharePoint list view in Page using C# How to Approve MasterPage using PowerShell in SharePoint How to bind Multiple users Using SharePoint People Picker how to change indicators on kpi performance how to check if an email address already exists in the database in asp.net how to configure workflow manager platform for SharePoint 2013 how to create calculated value using powershell how to create certificate in SharePoint How to create flow. how to create gantt chart webpart in sharepoint how to create KPI indicators in Dashboard designer How to create moden communication site in SharePoint online How to create Multi selected filter in Dashboard How to create nintex workflow in sharepoint how to create rdlc reports in asp.net How to Display Data Grid View in ASP.net How to enable anonymous access in SharePoint How to find data in datagridview in c# How to get image names from the folder using C# how to get particular list content type id in SharePoint 2013 How to get QueryString value in SharePoint WebPart Programatically how to get the current item id for newly created item using REST API and JQuery how to hide list in sharepoint how to know who created list in sharepoint How to make a Site Collection Read-Only in SharePoint 2010 How to overlay Office 365 shared calendar on SharePoint Site how to pass jquery value to asp.net textbox control How to pass pagename as a browser's title bar in the page how to remove unused Application Pool in SharePoint how to remove zone using powershell script How to send mail to particular group of people using PowerShell how to update modified by and created by using powershell how to uplaod RAR files in blogger import csv data into sharepoint import data using powershell Import group to term store management using SharePoint 2013. InfoPath InfoPath Cascading Dropdown list Insert update delete in datagridview in C# winforms Integration from SharePoint to k2. K2 Smart Forms for SharePoint JavaScript Injection jquery JSON K2 blackpearl K2 Designer K2 Designer Workflow. K2 smartform cascading dropdown list k2 Workflow K2 workflow to send a mail with PDF left navigation Local Term Set in managed meta data Managed meta data navigation in SharePoint 2013 Managed metadata service in SharePoint 2013. Managed Navigation in SharePoint 2013. Managed Promoted Sites. meta data navigation Microsoft Flow New Features New-SPConfigurationDatabase The user does not exist or is not unique NintexWorkFlow Office 365 OneDrive OneNote overwrite existing document in sharepoint using javascript PDF Converter PDF Method in K2 Performance Point Service in SharePoint 2013 PerformancePoint Services Configurtion PerformancePoint Services Configurtion for SharePoint 2013 PerformancePoint Services in SharePoint Server 2013 Popularity trends in SharePoint 2013 Pages populate dropdown list dynamicallyusing jquery Power Power Automate Power Shell Power shell script to get SharePoint site size. PowerApps powershell read xml PowerShell Script PowerShell script to get list of users from SharePoint groups PowerShell Scripts in SharePoint 2013 Powershell to set the masterpage in SharePoint Promoted Links Promoted Sites psconfig.exe quick launch Rdlc reports Readonly Column in SharePoint Editview Realtime DotNet Interview Questions Recent Dotnet interview questions Recent SharePoint interview questions recover deleted OneNote page. OneNote content is missing Regional Settings in SharePoint 2013 Replace New Item text in SharePoint Rest API Schedule PowerShell Script Search in SharePoint 2013 Search navigation in SharePoint 2013 Secure store service SecureStore Services SecureStore Services configuration for SharePoint 2013 self-signed certificate on IIS Server Send email to members of SharePoint Group using PowerShell sharepint2010 sharepoin2010 SharePoint 2013 SharePoint 2010 SharePoint 2013 SharePoint 2013 Dashboard Designer SharePoint 2013 features SharePoint 2013 Interview Questions SharePoint 2013. SharePoint 2013.disable views from user to create SharePoint 2013.Power shell SharePoint 2013.SharePoint 2010 SharePoint 2016 SharePoint Administration SharePoint Alerts and Reminders SharePoint App Configuration SharePoint Apps SharePoint Bulk upload SharePoint Calculated field SharePoint Calendar View sharepoint interview questions SharePoint online interview questions SharePoint online training SharePoint Onprem vs Online SharePoint RealTime Online Training SharePoint2010 SharePoint2013 SharePoint2016 SharePointInterview SharePointOnline SharePointOnline;Restore deleted site;SharePoint 2013 show data in datagridview in C# Simple Insert update Delete Retrieve Clear in asp.net. Site Collection Operations in SharePoint 2013 Site Collection Read-Only in SharePoint 2013 site contents Sorting & Filtering SPO SPSite Site Collection Operation parameters in SharePoint 2013 Step by step to create rdlc report in .Net Store names in text files in C# Sub site Subsite Term store management. The server was unable to save the form at this time. please try again UI New look update created by using client side object model update field values in SharePoint using powershell update items in SharePoint list using client object model update modified by field using client side object model upload zip files in blog use IsNullOrEmpty in PowerShell VirtoSoftware VirtoSofware vitrosoftware WebParts what is Document Set in SharePoint 2010 What is Filter in SharePoint Dashboard what is Limited-access user permission lock down mode feature What is Modern Team site What is Target Audience in SharePoint Who Created Site Using PowerShell Workflow in SharePoint 2013 Workflow management platform in SharePoint 2013 Workflow manager for SharePoint 2013 XSL-Template.