(imported topic written by fnovento91)
anyone can help remove sms 2003 client with bigfix ?
(imported topic written by fnovento91)
anyone can help remove sms 2003 client with bigfix ?
(imported comment written by BenKus)
Can you point me to some info on how to remove it from the command line and I can help make an uninstall Fixlet.
Ben
(imported comment written by fnovento91)
http://support.microsoft.com/default.aspx/kb/826842 will do to create fixlet Ben. ( How to remove the SMS 2003 Advanced Client ) - Method1 and 2
(imported comment written by BenKus)
Hey fnovento,
You can try this… make a custom Fixlet with:
Relevance:
exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{D8EF2D11-47CF-45E5-B423-47B29706DE12}” of registry OR exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{FCDC3CDD-F53E-4239-8CA5-BC492942931B}” of registry
Action:
if {exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{D8EF2D11-47CF-45E5-B423-47B29706DE12}” of registry }
waithidden cmd.exe /C msiexec /x /quiet {{D8EF2D11-47CF-45E5-B423-47B29706DE12}
endif
if {exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{FCDC3CDD-F53E-4239-8CA5-BC492942931B}” of registry}
waithidden cmd.exe /C msiexec /x /quiet {{FCDC3CDD-F53E-4239-8CA5-BC492942931B}
endif
if {exists folder “VPCache” of system folder}
waithidden cmd.exe /C rmdir /S /Q "{pathname of folder “VPCache” of system folder}"
endif
if {exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\VPCache” of registry}
delete __appendfile
delete regdel.reg
appendfile REGEDIT4
appendfile -HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\VPCache
move __appendfile regdel.reg
wait regedit /s regdel.reg
endif
I haven’t done any testing so let me know how it works…
Ben