This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal. |
This is #[Informational Post] .
How to clean up unused skins and Actions from the Visualizer.
From the Visualizer Enterprise, we don't have any option to remove the unused studio actions and unused skins.
This facility is available from the Visualizer Starter version. Please follow the below steps to get the list of actions or skins.
1) This can be done through Visualizer Starter.
2) Please open the install_Config.js file which is present in 7.3StarterInstallation folder ->install_Config.js file.
3) Please change the same workspace path where you are using for 7.3 Visualizer Enterprise in install_Config.js file.
4) Save the file and open the command prompt and navigate to that folder.
5) Install node in your machine.
6) Copy the attached file to your VisualizerStarter Installation folder -> tools folder.
7) Please type the below command for unUsedSkins.
node ./tools/unUsedActions.js -l <Project Name>
8) The above command will give you list of unused Actions present in the project.
9) Please search with that name and delete the same from the work space.
10) To remove all the list at a time, please execute the below command.
node ./tools/unUsedActions.js -d <Project Name>
11) To remove the unused skins, please use the below command.
node ./tools/unUsedSkins.js -l <Project Name> - This will give list of unused skins.
12) To remove the skins list directly, please execute the below command.
node ./tools/unUsedSkins.js -d <Project Name> - This will remove the above list of unused skins.
Thank You