/build/static/layout/Breadcrumb_cap_w.png

Deltek MPM 3.4 silent uninstall

Uninstallstring is saying like this tried with the silent swiches but no use :(

"C:\Program Files\InstallShield Installation Information\{3B2D14ED-5E5B-4C71-A1FF-545C8299B1E5}\setup.exe" -runfromtemp -l0x0409  -removeonly

went through these articles but they ended up with less clarity 

http://www.itninja.com/question/silent-uninstall-switch-for-is-setup-exe

http://www.itninja.com/question/deltek-mpm-silent-instattion

tried creating a response file for uninstallation but no use, 

please give me some suggessions to uninstall silently ?? (done the silent install by response.iss file)

TY


0 Comments   [ + ] Show comments

Answers (4)

Answer Summary:
Posted by: srikanth.deep 11 years ago
Purple Belt
2

sorry for the trouble guys, finally found the answer 

created the response file for uninstall and ran it locally, it worked for me (after 5 hrs :)))). But as I noticed that, it only uninstalls MPM but not the Pervasive.SQL V8 Workgroup so that shoud be uninstalled before the MPM uninstall

Here is the code

MsiExec.exe /X {5FCFC78C-438A-4F4D-B266-E32B8468BAFC} /qn

 

xcopy "%~dp0uninst.iss" /y /e "C:\Program Files\InstallShield Installation Information\{3B2D14ED-5E5B-4C71-A1FF-545C8299B1E5}\" >NUL 2>&1

 

rem C:\Windows\IsUninst.exe /s -f"C:\Program Files\Common Files\Pervasive Software Shared\PSA\psa.isu"

 

"C:\Program Files\InstallShield Installation Information\{3B2D14ED-5E5B-4C71-A1FF-545C8299B1E5}\setup.exe" /s /f1"C:\Program Files\InstallShield Installation Information\{3B2D14ED-5E5B-4C71-A1FF-545C8299B1E5}\uninst.iss" /f2"C:\install\uninst.log" >NUL 2>&1 

Thanks alot for the valuble info...

Posted by: SMal.tmcc 11 years ago
Red Belt
0

What silent switch did you try?

Here are some possibilities depending on the programmer

-uninst -s -qn -v"/qn /v"/qn


Comments:
  • yes I tried using those switches but no luck :((( - srikanth.deep 11 years ago
Posted by: piyushnasa 11 years ago
Red Belt
0

Is this application not extracting any MSI file? from the registry it seems that it should be extracting MSI file.

Posted by: dugullett 11 years ago
Red Belt
0

You can always give this a shot. It's sort of always my fail safe.

$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Deltek" } $app.Uninstall()
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ