After upgrading to ITMS 8.6 GA release (also known as the RTM release), you can't change when an image package under Image Management can be deleted. By default it is set to "1 week" but this needs to change to "Never Delete"
Issue description:
The following has been done:
ITMS 8.6
Unknown. Possible issue with the web browser and how the request is handled.
Broadcom Developers decided to remove the option "Control disabled for Deployment Solution Package Server images" from the page since it is irrelevant for external packages.
It appears that when Save is selected on the page that the specified setting is ignored for external packages. This is expected behavior.
NOTE: The drop-down option for ‘Package files will be deleted from the client computer if unused for’ was removed in ITMS 8.6 RU2.
There is a workaround to manually change the selected frequency directly on the database as shown here:
--This query updates the table where the interval is stored. This query changes the interval of "10080" (1 week) to "-1" (Never Delete).
update RM_ResourcePackage
set state = replace (cast (state as nvarchar (max)), '<deleteAfterInterval>10080</deleteAfterInterval>', '<deleteAfterInterval>-1</deleteAfterInterval>')
where GUID = 'AddGUIDhere'