Have my service set to login using 'Local System Account' with 'Allow service to interact with desktop' ticked.
Here's my C# connection string which works allowing interaction with DB when I execute the application outside of the Quartz/Windows Service:
<connectionStrings>
<add name="ArbDBConnStr"
connectionString="Data Source=(LocalDB)\MSSQLLocalDB;Initial Catalog=aspnet-Arb-20160906102730;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
What do I have to do to enable the the windows service to be able to access the db?
Also no info in SQL Server logs that I can see that would shed any light - what should I be seeing?


