@echo off

REM First ensure the command runs with enough rights

:ADMIN

REM If enough rights, check the machine architecture

if /I "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto AMD64

REM If here, we are running a 32-bit version of cmd; but still may be on a 64-bit machine

if /I "%PROCESSOR_ARCHITEW6432%"=="AMD64" goto AMD64
dpinst-x86.exe   /Q  /P 


goto END

:AMD64
dpinst-amd64.exe  /Q  /P 




:END
