I am facing issues while uninstalling MS SQL server 2012 throw SCCM 2012.Since it is a exe installation settings msi has been targeted to create package. There is no error in SCCM log since Uninstall.cmd completely removes the settings msi. But SQL server remains in the system.
Contents of Uninstall.cmd is
"%Programfiles%\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\setup.exe" /QUIET /ACTION=Uninstall /IACCEPTSQLSERVERLICENSETERMS /FEATURES="SQLENGINE,REPLICATION,FULLTEXT,DQ,AS,RS,DQC,BIDS,CONN,IS,BC,SDK,BOL,SSMS,ADV_SSMS,DREPLAY_CTLR,DREPLAY_CLT,SNAC_SDK"
MsiExec /X {DA388E40-A359-4345-9184-01ED96928FB6} /qn
MSIEXEC /x {D411E9C9-CE62-4DBF-9D92-4CB22B750ED5} /qn
MSIEXEC /x {83F2B8F4-5CF3-4BE9-9772-9543EAE4AC5F} /qn
MSIEXEC /x {C3F6F200-6D7B-4879-B9EE-700C0CE1FCDA} /qn
MsiExec /X {8F3AB164-B4F3-45B1-A85A-F5E5815A44E1} /qn
MsiExec /X {FA0A244E-F3C2-4589-B42A-3D522DE79A42} /qn
MsiExec /X {DA1C1761-5F4F-4332-AB9D-29EDF3F8EA0A} /qn
MSIEXEC /x {CC8B009A-98C9-497F-99AF-CEBE35D8C0CF} /qn
MsiExec /X {9169C939-ED01-446A-BD0C-29873BAF4E48} /qn
Msiexec /X {DA388E40-A359-4345-9184-01ED96928FB6} /qn (Settings MSI)
its working fine with pstools. but not thro SCCM 2012.
Any suggestions ?