Posts

Disable modern Lists and libraries at the Site Collection Level

 $site = Get-SPSite http://WFE $featureguid = new-object System.Guid "E3540C7D-6BEA-403C-A224-1A12EAFEE4C4" $site.Features.Add($featureguid, $true) #Re-enable modern experience  - site collection Level $featureguid = new-object System.Guid "E3540C7D-6BEA-403C-A224-1A12EAFEE4C4" $site.Features.Remove($featureguid, $true)

corona virus (COVID-19)

Image

Error InfoPath while publishing customize form

Yesterday, i have faced an error " the soap message cannot be parsed " while publishing InfoPath customized on SharePoint 2013 List. Tried multiple solution. Increase executionTimeout in web.config to 3600 Use Retention Policy to reduce list data. But finally found solution to remove Calculated fields,  then publish  customized InfoPath form  and  it works for me.

Nintex workflow purge large history list

https://community.nintex.com/community/build-your-own/blog/2015/09/16/how-to-purge-large-history-list-and-dboworkflowprogress-table

Check and clean missing features / objects from the content database

Run command -    test-spcontentdabase , this will provide list of issues. Use this command before migration. Use  http://featureadmin.codeplex.com/  tool useful for removing missing Features and cleaning up the environment. 

SSRS chart does not show all labels on Horizontal axis

http://stackoverflow.com/questions/9692628/ssrs-chart-does-not-show-all-labels-on-horizontal-axis  "Chart Axis" properties set the Interval value to "=1". Then all the labels will be shown.

Export List/Document librar Nintex Workflow from NWAdmin command line

To export list or document library nintex workflow using NWAdmin command: NWAdmin.exe -o ExportWorkflow -siteUrl "http://sv01appmoss01:1997/sites/siteCollection" -workflowName "WF Name" -filename "C:\test.nwf" -list "Shared Documents" -username "username" -password "12345" -domain "domainname" -workflowtype list