Monday, 10 September 2012

Unmanage CRM 2011 solution

-- Update the "managed" flag in the database
-- List the managed solutions
select isvisible,IsManaged,Description,UniqueName,* from Solution
where IsManaged = 1 and IsVisible = 1

-- 
begin transaction
update Solution
set IsManaged = 0
where UniqueName = <solution name to change>
commit transaction

No comments:

Post a Comment