function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Girish ParwaniGirish Parwani 

extract all metadata which was created or changed

i need to provide a package.xml file that explicitly lists all contents / metadata that got created or changed in dev sandbox. are there any tools that can simplify this task. does anything need to be done to exclude artifacts related to installed packages.
pconpcon
There are a couple of ways to do this.  You could use a tool like Solenopsis [1] that uses the ANT library to pull down all the data and then does a filesystem level diff on the files.  Then creates a package.xml and package.zip file for the ones that have changed.  You could do the same thing yourself if you want to scour through the source code [2].  Optionally, you could use the MetadataAPI and get the If-Modified-Since header [3] for all of the metadata you care about.

[1] http://solenopsis.org/
[2] https://github.com/solenopsis/Solenopsis
[3] https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/sobject_describe_with_ifmodified_header.htm