■ 커스텀 액션을 사용해 윈도우즈 서비스를 실행하는 방법을 보여준다. (기능 개선)
[TestAction 프로젝트]
▶ CustomAction.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
using Microsoft.Deployment.WindowsInstaller; using System; using System.IO; using System.Runtime.InteropServices; using TestLibrary; namespace TestAction { /// <summary> /// 커스텀 액션 /// </summary> public class CustomAction { //////////////////////////////////////////////////////////////////////////////////////////////////// Import ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 전경 윈도우 구하기 - GetForegroundWindow() /// <summary> /// 전경 윈도우 구하기 /// </summary> /// <returns>윈도우 핸들</returns> [DllImport("user32")] private static extern IntPtr GetForegroundWindow(); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 로그 헬퍼 /// </summary> private static ILogHelper _logHelper = new FileLogHelper("d:\\", "TestNode.log"); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 설치 전 액션 실행하기 - ExecuteBeforeInstallAction(session) /// <summary> /// 설치 전 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteBeforeInstallAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE BEFORE FIRST INSTALL ACTION : {ApplicationEnvironment.Version}"); _logHelper?.WriteLog($"END EXECUTE BEFORE FIRST INSTALL ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion #region 설치 후 액션 실행하기 - ExecuteAfterInstallAction(session) /// <summary> /// 설치 후 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteAfterInstallAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE AFTER FIRST INSTALL ACTION : {ApplicationEnvironment.Version}"); #region 윈도우즈 서비스를 생성하고 시작한다. try { string directoryPath = session["APPDIR"]; string filePath = Path.Combine(directoryPath, ApplicationEnvironment.ServiceFileName); _logHelper?.WriteLog($"SERVICE FILE PATH : {filePath}"); WindowsServiceHelper.CreateWindowsService(ApplicationEnvironment.ServiceName, filePath); _logHelper?.WriteLog("SERVICE CREATED"); WindowsServiceHelper.StartWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE STARTED"); } catch(Exception exception) { _logHelper?.WriteErrorLog(exception, "ERROR EXECUTE AFTER FIRST INSTALL ACTION"); return ActionResult.Failure; } #endregion _logHelper?.WriteLog($"END EXECUTE AFTER FIRST INSTALL ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion #region 업그레이드 전 액션 실행하기 - ExecuteBeforeUpgradeAction(session) /// <summary> /// 업그레이드 전 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteBeforeUpgradeAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE BEFORE UPGRADE ACTION : {ApplicationEnvironment.Version}"); #region 윈도우즈 서비스를 중단하고 삭제한다. try { string directoryPath = session["APPDIR"]; string filePath = Path.Combine(directoryPath, ApplicationEnvironment.ServiceFileName); _logHelper?.WriteLog($"SERVICE FILE PATH : {filePath}"); WindowsServiceHelper.StopWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE STOPPED"); WindowsServiceHelper.DeleteWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE DELETED"); } catch(Exception exception) { _logHelper?.WriteErrorLog(exception, "ERROR EXECUTE BEFORE UPGRADE ACTION"); } #endregion _logHelper?.WriteLog($"END EXECUTE BEFORE UPGRADE ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion #region 업그레이드 후 액션 실행하기 - ExecuteAfterUpgradeAction(session) /// <summary> /// 업그레이드 후 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteAfterUpgradeAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE AFTER UPGRADE ACTION : {ApplicationEnvironment.Version}"); #region 윈도우즈 서비스를 생성하고 시작한다. try { string directoryPath = session["APPDIR"]; string filePath = Path.Combine(directoryPath, ApplicationEnvironment.ServiceFileName); _logHelper?.WriteLog($"SERVICE FILE PATH : {filePath}"); WindowsServiceHelper.CreateWindowsService(ApplicationEnvironment.ServiceName, filePath); _logHelper?.WriteLog("SERVICE CREATED"); WindowsServiceHelper.StartWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE STARTED"); } catch(Exception exception) { _logHelper?.WriteErrorLog(exception, "ERROR EXECUTE AFTER UPGRADE ACTION"); } #endregion _logHelper?.WriteLog($"END EXECUTE AFTER UPGRADE ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion #region 설치 제거 전 액션 실행하기 - ExecuteBeforeUninstallAction(session) /// <summary> /// 설치 제거 전 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteBeforeUninstallAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE BEFORE UNINSTALL ACTION : {ApplicationEnvironment.Version}"); IntPtr windowHandle = GetForegroundWindow(); System.Windows.Forms.MessageBox.Show(new WIN32Window(windowHandle), "ExecuteBeforeUninstallAction"); #region 윈도우즈 서비스를 중단하고 삭제한다. try { string directoryPath = session["APPDIR"]; string filePath = Path.Combine(directoryPath, ApplicationEnvironment.ServiceFileName); _logHelper?.WriteLog($"SERVICE FILE PATH : {filePath}"); WindowsServiceHelper.StopWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE STOPPED"); WindowsServiceHelper.DeleteWindowsService(ApplicationEnvironment.ServiceName); _logHelper?.WriteLog("SERVICE DELETED"); } catch(Exception exception) { _logHelper?.WriteErrorLog(exception, "ERROR EXECUTE BEFORE UNINSTALL ACTION"); } #endregion _logHelper?.WriteLog($"END EXECUTE BEFORE UNINSTALL ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion #region 설치 제거 후 액션 실행하기 - ExecuteAfterUninstallAction(session) /// <summary> /// 설치 제거 후 액션 실행하기 /// </summary> /// <param name="session">세션</param> /// <returns>액션 결과</returns> [CustomAction] public static ActionResult ExecuteAfterUninstallAction(Session session) { _logHelper?.WriteLog($"BEGIN EXECUTE AFTER UNINSTALL ACTION : {ApplicationEnvironment.Version}"); IntPtr windowHandle = GetForegroundWindow(); System.Windows.Forms.MessageBox.Show(new WIN32Window(windowHandle), "ExecuteAfterUninstallAction"); _logHelper?.WriteLog($"END EXECUTE AFTER UNINSTALL ACTION : {ApplicationEnvironment.Version}"); return ActionResult.Success; } #endregion } } |
※ 커스텀 액션 코드만 수정하고 테스트를 하였다. 배포는 '커스텀 액션을 사용해 윈도우즈 서비스 실행하기' 자료를 참조한다.
TestSolution.zip
TestSolution.Deployment.zip