To deploy the ‘Enable Features’ using VS codes, follow the steps
- Created a new VS code project.

- Create an XML file that contains the features.

<features>
<feature>
<id>DEPARTMENTS</id>
<status>ENABLED</status>
</feature>
<feature>
<id>CLASSES</id>
<status>ENABLED</status>
</feature>
</features>
The features are provided in the <feature> </feature> tags with the <id> and the <status>. If the status is Enabled, then the checkbox for that particular feature will be checked after the deployment process. If it is disabled, then the feature will be set as unchecked.
3. Add Dependency references to the manifest.
4. Validate project
5. If there are no errors or issues, deploy the project the the target account.

