Revert changes to exchange 2013 provider

Fix applied on deadlock for scheduled task
Support added to server configuration for powershell remoting
This commit is contained in:
robvde 2013-03-04 18:31:13 +04:00
parent 484e7102b8
commit b00e11a2b9
7 changed files with 108 additions and 4 deletions

View file

@ -119,7 +119,13 @@ namespace WebsitePanel.EnterpriseServer
finally
{
// complete task
TaskManager.CompleteTask();
try
{
TaskManager.CompleteTask();
}
catch (Exception)
{
}
}
}
}