I'm developing an Add In for Outlook (2007 and 2010) using .NET4 to be deployed within a company. I've been using App configs to store user and system configuration, but I've been told by the IT guys that registry entries are preferred over App config (as they are easier to manage and update, compared to a .dll.config file on many machines as part of the deployment and future maintenance).
From my digging around the web it seems like everyone prefers app.config, unless you want to make it harder for your user to find your settings deep underneath registry entries and make them obscure. What does the community think?