Visual Studio msiインストーラーを使用して、空のプロジェクトを作成しました。インストール時に、フォルダとexeファイルをプロジェクトに作成するだけです。
しかし、サイレントアンインストールしようとすると、プログラムリストからインストールが削除されますが、フォルダーは残ります。フォルダも削除する必要があり、コードで手動で削除せずに削除したいと思います。
// This is how to uninstall a basic msi app
// Create the uninstall process.
Process proc = new Process();
// Define the parameters for the process
proc.StartInfo.FileName = "msiexec.exe";
// This is the Product Code from your Basic MSI InstallShield Project
proc.StartInfo.Arguments = "/x" + " " + ProductCode + " " + "/qn";
// Start the process.
proc.Start();
// Wait for the uninstall process to end.
proc.WaitForInputIdle();
proc.WaitForExit();
// Release resources.
proc.Close();