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:
The following has been done:
ITMS 8.6
Unknown. Possible issue with the web browser and how the request is handled.
Dev decided to remove this option from the page: Control disabled for Deployment Solution Package Server images since it is irrelevant for external packages.
It appeared that when save is pressed on the page and the specified setting is ignored for external packages. This is correct behavior since the setting does not make any sense in this case, just during implementation it was forgotten to disable this control (package location and source controls are).
This 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:
--This query updates the table where we store the interval. 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'