DoxyGen is a tool to create a documentation from annotated source files.
Download the newest DoxyGen from http://www.doxygen.org and install it :D
If you want to install DoxyGen automatically you have to create a batch-file.
Download DoxyGen and proceed with the steps below.
To create a response-file, start the installation with the following parameter:
doxygen-1.8.10-setup.exe /SAVEINF=doxygen.inf
This will create a .inf file with, more or less, the following content:
[Setup] Lang=default Dir=C:\Program Files\doxygen Group=doxygen NoIcons=1 SetupType=full Components=main,gui,docs_html,docs_chm,examples Tasks=
Create a batch-file, e.g. silent_install.cmd, with the following content:
@echo off doxygen-1.8.10-setup.exe /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /LOADINF=doxygen.inf
For deinstalling DoxyGen silently create a second batch-file with the following content:
@echo off %ProgramFiles%\doxygen\system\uninst000.exe /SILENT /VERYSILENT /SUPRESSMSGBOXES /NORESTART
TODO: Check if complete