2016-09-08 35 views
-3

如何在我的程序中運行程序?Visual Studio - 如何在程序中運行文件

當我點擊一個按鈕,我希望它運行我添加到文件夾在Visual Studio中的.reg文件,如:

TestKey.reg is what I want to be ran when I click a button.

+5

可能的重複[C# - 導入reg文件註冊表沒有用戶確認框](http://stackoverflow.com/questions/2171431/c-sharp-import-reg-file-to-the-registry-without用戶確認框) –

+1

可能的重複項:[c# - 運行命令提示符命令](http://stackoverflow.com/questions/1469764/run-command-prompt-commands) – byxor

回答

0

首先,你應該定義一個構建作爲「內容」和「複製文件」字段的操作應該等於「始終」。 之後,您應該使用 System.Diagnostics.Process.Start function並在參數中指定您的.reg文件名。

+0

System.Diagnostics.Process.Start( @ 「RegistryKeys \ TestKey.reg」); –

相關問題