-- 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