Hi All,
I am using this script to uninstall my product.
try { WshShell.Run("msiexec.exe /quiet /x {ProductCode}", 1, true); } catch(e) { }
The product is getting uninstalled but the root folder is not getting removed and it contains some file ( logs and all)
Is there any way to forcefully remove the entire folder even if it contains any folders or files.
Thanks in advance...!!!