Is it possible to revert back the installed package(if any content modified with package installation) in CQ5 from the package manager console.?
Asked
Active
Viewed 2,248 times
1 Answers
2
Yes, it is. According to the documentation:
You can perform the following actions with packages:
- Uninstall packages, which reverts to the snapshop of in-repository content at the time of the last installation.
- Just go to the CRX Package manager and click on a package.
- You'll be given a blue edit bar below the package details.
- Click on "More" on the right-hand side, and then "Uninstall".
- Check the logs to make sure it completes successfully.

anotherdave
- 6,656
- 4
- 34
- 65
-
Thank you anotherdave, If i install the package A,B, & C sequentially in the same order. and after for few reasons if i uninstall package A. will the changes done by package B and C still be there or do i need to reinstall the package B and C? – VAr Nov 15 '13 at 10:03
-
Ah, that's interesting question :) I *presume*, that it will look at the timestamp of the A install & rollback to this point, & so you would lose B&C, though I haven't tried it. If reinstalling B&C is complex, you could possibly create a package on another environment running a pre-A version, containing just the files A has affected & revert that way — by performing another install over the top rather than rolling back. – anotherdave Nov 15 '13 at 12:00