Find All InfoPath Form Libraries in SharePoint Online using PowerShell

Requirement: Find All InfoPath Form libraries in SharePoint Online. How to Find All InfoPath Form Libraries in SharePoint Online Site? In SharePoint Online, InfoPath forms can be stored in form libraries, which are special types of document libraries that are designed to store and manage InfoPath forms. If you need to find…

Read more

Find and Replace User ID in SharePoint InfoPath Forms using PowerShell

Requirement: Replace User IDs in InfoPath Forms. A little background: A particular user’s User account changed in the Active directory, and in SharePoint, we ran the Move-SPUser cmdlet to accommodate the user’s SAM account name change. However, many InfoPath form libraries have numerous InfoPath forms with an old user ID. Of course,…

Read more

How to Hide a Field in InfoPath New Form of SharePoint List?

Requirement:We have a customized InfoPath form for a SharePoint List with the “Request Number” field, which gets updated by an event receiver (or workflows sometimes) on Item created event. So, we wanted to hide the “Request Number” field from New Form. Solution: At a high level, insert a “section” control and move…

Read more

InfoPath Form: Show Thank You Page on Submit

Requirement: To deliver a better user experience, I wanted to show a neatly designed thank you page on submitting a customized SharePoint list form in InfoPath. Although we can customize the standard popup message shown on successful submissions through “Submit Options” under the Data tab, we wanted to customize the entire look…

Read more

Find All InfoPath List Forms in SharePoint using PowerShell

Requirement: Find all customized InfoPath list forms in SharePoint. Tasked to report a listing of all the InfoPath List forms customized in the SharePoint web application during a migration project. PowerShell Script to Find All InfoPath List Forms in SharePoint With the deprecation of InfoPath in SharePoint 2016 and Office 365, we…

Read more

Cascading Dropdown in SharePoint List using Infopath Forms

What is Cascading drop down? Cascading drop-downs are linked drop-down controls, where the content of the second drop-down depends on the selection of the first one. E.g., When you choose a Country in the first drop-down, the second drop-down State is automatically filtered to the list of states actually in that county….

Read more

Fix “The form cannot be rendered. This may be due to a Misconfiguration of the Microsoft SharePoint Server state service” Error in SharePoint 2013

Problem: InfoPath form-based list form in a migrated SharePoint 2013 environment from SharePoint 2010 gave this error message: “The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server state service.” Solution: Create a State Service Application as in How to Create State Service Application in…

Read more

“There has been a critical error while processing the form.” – Error in InfoPath

Problem: SharePoint browser-enabled InfoPath form gave this error message: There has been a critical error while processing the form.Click Start Over to load a new copy of the form. If this error persists, contact the support team for the Web site. Click Close to exit this message. Error details:Object doesn’t support property or…

Read more

Create Form Library in SharePoint using PowerShell

Requirement: Create form library in SharePoint using PowerShell. PowerShell to Create Form Library in SharePoint Here is the SharePoint PowerShell script to create form library:

Read more