Unable to Load Assembly Group in SharePoint

1. SharePoint Web services applicati on pool should be running in IIS.

2. Set it to run with SPFarmAdmin account.

3. IIS Reset.

Still if you are facing issues then execute the following script.

Security Token service application pool:

  1. $uc = [Microsoft.SharePoint.Administration.SPUserCodeService]::Local  
  2. $uc.WorkerProcessExecutionTimeout = 5000  
  3. $uc.Update()  
  4. $tier = $uc.Tiers[""] # default Tier has no Name  
  5. $tier.MaximumWorkerProcesses = 2 # number of CPU Cores + 1  
  6. $tier.Update()