How to Silently uninstall Access 2010? its not acccess runtime 2010
Access 2010 is having lot of vendor Msi's and have created a MSP to do silent installation and through command line switch I am able to install it. However I am not able to uninstall ACCESS 2010 silently.
KINDLY ADVICE.
-
can you plz share how u uninstalled it ? - anubhav 11 years ago
Answers (2)
To Install the MS Access Runtime 2010. First u need to extract the exe with the below command:
MS Access Runtime.exe /extract""Pathc to extract the files"
then go to that path and create an one 'Config.xml' file with the below content:
<?xml version="1.0"?>
-<Configuration Product="AccessRT">
<Display AcceptEula="yes" SuppressModal="yes" CompletionNotice="no" Level="None"/>
<Logging Template="Microsoft_Access_2010_Runtime_Setup(*).log" Path="C:\temp" Type="standard"/>
<Setting Value="Suppress" Id="SETUP_REBOOT"/>
</Configuration>
Then u will get 'Setup.exe' in extracted folder.
Then run the 'Setup.exe' as mentioned below to install silently.
Setup.exe /config config.xml
Keep the config.xml file in the same folder.