visual studio installer 卸載時不能刪除安裝目錄問題

來源:互聯網
上載者:User

標籤:

?

在vs中可以製作安裝程式,但是這個安裝程式預設卸載的時候不會把安裝目錄卸載,如果想在卸載的時候刪除這個目錄,那就要費點周折了。此方法同時適應於程式自刪除以及工作目錄刪除。

基本思路是在程式要退出的時候啟動一個指令碼,該指令碼會做好善後工作,刪除所有不必要的東西。注意這個指令碼應該是在程式完全退出以後再去刪工作目錄。

直接貼代碼了,思路也很簡單,主要是通過一個ping來進行延時,保證程式退出以後再刪。

protectedoverridevoidOnAfterUninstall(IDictionarysavedState)

{

Assemblyasm = Assembly.GetExecutingAssembly();

stringpath = asm.Location.Remove(asm.Location.LastIndexOf("\\"));

DeleteAllSelf(path);

staticvoidDeleteAllSelf(stringpath)

{

System.IO.Directory.SetCurrentDirectory("c:\\");

stringfileName = Path.Combine("c:\\", "remove.bat");

StreamWriterbat = newStreamWriter(fileName, false, Encoding.Default);

bat.WriteLine("ping 127.0.0.1 -n 7 > nul"); //此處的延時非常必要,,保證刪目錄的時候程式已經完全退出了!

bat.WriteLine(string.Format("rd \"{0}\" /q /s", path));

bat.WriteLine(string.Format("del \"{0}\" /q", fileName));

?

bat.Close();

ProcessStartInfoinfo = newProcessStartInfo(fileName);

info.WorkingDirectory = "c:\\";

info.WindowStyle = ProcessWindowStyle.Hidden;

Process.Start(info);

}

visual studio installer 卸載時不能刪除安裝目錄問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.