I have directory structure:
DIR
|-UNINSTALL.BAT
|-component_name
|-source
|-setup.exe
|-uninst.bat
|-another_component_name
|-source
|-setup.exe
|-uninst.bat
|-yet_another_component_name
|-source
|-setup.exe
|-uninst.bat
and so on...
In every directory like "component_name" I have setup.exe
file which installs current component to the palette component in Delphi.
uninst.bat
contains only this string:
"setup.exe" /uninstall
So I need to write UNINSTALL_ALL.bat
in DIR
that would run the uninst.bat in all component directories.
Thank you in advance.