我們寫一個服務,有時候要讓服務啟動某個應用程序,就要修改服務的屬性,勾選允許服務與桌面交互,
可以用修改注冊表實現,我們必須在安裝後操作,所以請重寫Installer的OnAfterInstall。
protected override void OnAfterInstall(System.Collections.IDictionary savedState) {
RegistryKey rk = Registry.LocalMachine;
string key = @"SYSTEMCurrentControlSetServices" + this.sInstaller.ServiceName;
RegistryKey sub = rk.OpenSubKey(key, true);
int value = (int)sub.GetValue("Type");
if (value < 256) {
sub.SetValue("Type", value | 256);
}
base.OnAfterInstall(savedState);
}