Software » Microsoft » Access » 2007
Homepage https://products.office.com/en-us/access
Download https://businessaccount.microsoft.com

Silent Install

Extract the source somewhere.

setup.exe /config "config.xml"

Config File

See also the Config.xml file in Office 2010 site from Microsoft.

<Configuration Product="Access">
    <Display Level="none" CompletionNotice="No" SuppressModal="Yes" NoCancel="Yes" AcceptEula="Yes" />
    <Logging Type="Verbose" Path="%temp%" Template="Microsoft Access 2007 Setup.log" />
    <USERNAME Value="Username" />
    <COMPANYNAME Value="Companyname" />
    <Setting Id="SETUP_REBOOT" Value="Never" />
    <PIDKEY Value="12345-12345-12345-12345-12345" />
</Configuration>

integrate Updates into the install source

FIXME

ReturnCodes 0
3010

Silent Uninstall

x64

"%ProgramFiles(x86)%\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller\setup.exe" /uninstall ACCESS /config "SilentUninstallConfig.xml"

x86

"%ProgramFiles%\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller\setup.exe" /uninstall ACCESS /config "SilentUninstallConfig.xml"

Config File

See also the Config.xml file in Office 2010 site from Microsoft.

<Configuration Product="Access">
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    <Logging Type="Verbose" Path="%temp%" Template="Microsoft Access 2007 Deinstall.log" />
    <Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
ReturnCodes 0
1605
3010