Posts

RabbitMQ and ErLang

 After installing Erlang and RabbitMQ , then open http://localhost:15672 and if this url not opening. Then open RabbitMQ command line and type "rabbitmq-plugins.bat enable rabbitmq_management" , press enter and reopen url again.

The model backing the context has changed since the database was created. Consider using Code First Migrations to update the database

One way to resolve this error is to use Code First Migrations to update the database schema to match the new model. To do this, you can use the following steps: Open the Package Manager Console in Visual Studio by going to Tools -> NuGet Package Manager -> Package Manager Console. In the Package Manager Console, run the command Enable-Migrations to enable migrations in the project. Run the command Add-Migration <migration-name> to create a new migration for the changes you made to the model. Run the command Update-Database to apply the changes to the database.

VMware Workstation does not support nested virtualization

  If you want use vmware use below commands in windows powershell and reboot system: bcdedit /set hypervisorlaunchtype off and, If you want use Windows hyper-V bcdedit /set hypervisorlaunchtype auto Windows Hyper-v and VMWARE, don't work together at same time.

Enable Microsoft Hyper-V

 Enable-WindowsOptionalFeature -Online -FeatureName $("Microsoft-Hyper-V", "Containers") -All

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

SharePoint – The administration service is running so all administration jobs will be run in the timer service

https://amalhashim.wordpress.com/2013/01/28/sharepoint-the-administration-service-is-running-so-all-administration-jobs-will-be-run-in-the-timer-service/ When I was trying to deploy a solution it keep on saying the status as deploying… After a while I tried to execute following command stsadm -o execadmsvcjobs It gave me this message The administration service is running so all administration jobs will be run in the timer service This issue can be resolved by executing following commands in SharePoint Management Shell net stop SPAdminV4 Start-SPAdminJob net start SPAdminV4

How to remove app from SharePoint 2013/2016

I have installed an SharePoint App for creating surveys but when try to uninstall / remove it from the site it shows exception message " sorry we couldn't remove the app ". Solution: I have used following Power-Shell commands to install/remove app successfully  $instances = Get-SPAppInstance -Web <URL> $instance = $instances | where {$_.Title -eq '<app_title>'}   Uninstall-SPAppInstance -Identity $instance

SharePoint 2013 Developer

Very useful link: http://www.learningsharepoint.com/sharepoint-2013-developer-tutorials-and-samples/ This link contains following contain  JS Link Delegate Controls How to hide NewsFeed, SkyDrive, Sites (DeltaSuiteLinks) in SharePoint 2013 Master Page & Layout Pages(Design Manager) CallOut Popups Custom Actions, Features, Solutions How to Add a Custom Action for Site Action or Settings menu in SharePoint 2013 Social How to Programmatically Follow Documents in SharePoint 2013   Uploading JavaScript (JS Files) as Javascript Display Template in SharePoint 2013 Create Task Indicators for Status Column in SharePoint 2013 using JS Link Color Code List Items using JS Link in SharePoint 2013 See more  SharePoint 2013 JS Link Samples & Tutorials>> How to Add\Remove Newsfeed,Skydrive Links by Overriding “SuiteLinksDelegate” Delegate Control in SharePoint 2013 Add Links to Promoted Actions (Share,Follow,SYNC) by Overrid...

SharePoint 2013 – Hide NewsFeed, SkyDrive, Sites (DeltaSuiteLinks)

http://www.learningsharepoint.com/2012/08/09/sharepoint-2013-hide-newsfeed-skydrive-sites-deltasuitelinks/

Add,Remove Links in Top Suitebar (SkyDrive,Sites,NewsFeed) in SharePoint 2013

http://www.learningsharepoint.com/2013/02/10/addremove-links-in-top-suitebar-skydrivesitesnewsfeed-in-sharepoint-2013/

How to: Customize the Document Set Ribbon in SharePoint Server 2010 (ECM)

This is to allow user  to download all contents of document set as zip file rather than download each file individually. https://msdn.microsoft.com/en-us/library/ff512775.aspx 

Start or Stop SharePoint Server Search

Stop /Start SharePoint Server Search before configuring Search Application Service. Get-SPEnterpriseSearchServiceInstance -Local | Start-SPEnterpriseSearchServiceInstance OR Get-SPEnterpriseSearchServiceInstance -Local | Stop-SPEnterpriseSearchServiceInstance

Audit Log Reports Link Missing

Problem Audit Log Reports Link is missing even though you have enabled Auditing on the site collection. Solution Enable the  Reporting  feature under Site Collection Features.

SharePoint Web Service Cross Domain Ajax Calls

Image
Handling Cross-Domain Ajax Calls,  Internet Explorer (IE) to enable cross-domain access.