You can remove the blocked file types in SharePoint programmatically by accessing a collection on an SPWebApplication object.
Collection<string> be = webApplication.BlockedFileExtensions;
if (be.Contains("dll")) be.Remove("dll");
webApplication.Update();
Like this:
Be the first to like this post.
This entry was posted on June 1, 2010 at 8:30 am and is filed under WSS 3.0 e MOSS 2007. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.