diff options
Diffstat (limited to 'src/ca/scasched.cpp')
-rw-r--r-- | src/ca/scasched.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ca/scasched.cpp b/src/ca/scasched.cpp index cdece45d..de021275 100644 --- a/src/ca/scasched.cpp +++ b/src/ca/scasched.cpp | |||
@@ -331,7 +331,7 @@ extern "C" UINT __stdcall ConfigureIIs( | |||
331 | // This must remain trace only, CA data may contain password | 331 | // This must remain trace only, CA data may contain password |
332 | WcaLog(LOGMSG_TRACEONLY, "Custom Action Data for ConfigureIIS7Exec will be: %ls", pwzCustomActionData); | 332 | WcaLog(LOGMSG_TRACEONLY, "Custom Action Data for ConfigureIIS7Exec will be: %ls", pwzCustomActionData); |
333 | 333 | ||
334 | hr = WcaDoDeferredAction(L"ConfigureIIs7Exec", pwzCustomActionData, ConfigureIIsCost); | 334 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ConfigureIIs7Exec"), pwzCustomActionData, ConfigureIIsCost); |
335 | ExitOnFailure(hr, "Failed to schedule ConfigureIIs7Exec custom action"); | 335 | ExitOnFailure(hr, "Failed to schedule ConfigureIIs7Exec custom action"); |
336 | 336 | ||
337 | ReleaseNullStr(pwzCustomActionData); | 337 | ReleaseNullStr(pwzCustomActionData); |
@@ -340,7 +340,7 @@ extern "C" UINT __stdcall ConfigureIIs( | |||
340 | hr = WcaWriteStringToCaData(pwzScriptKey, &pwzCustomActionData); | 340 | hr = WcaWriteStringToCaData(pwzScriptKey, &pwzCustomActionData); |
341 | ExitOnFailure(hr, "Failed to add script key to CustomActionData."); | 341 | ExitOnFailure(hr, "Failed to add script key to CustomActionData."); |
342 | 342 | ||
343 | hr = WcaDoDeferredAction(L"WriteIIS7ConfigChanges", pwzCustomActionData, WriteIIS7ConfigChangesCost); | 343 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WriteIIS7ConfigChanges"), pwzCustomActionData, WriteIIS7ConfigChangesCost); |
344 | ExitOnFailure(hr, "Failed to schedule WriteMetabaseChanges custom action"); | 344 | ExitOnFailure(hr, "Failed to schedule WriteMetabaseChanges custom action"); |
345 | } | 345 | } |
346 | else | 346 | else |
@@ -348,7 +348,7 @@ extern "C" UINT __stdcall ConfigureIIs( | |||
348 | // This must remain trace only, CA data may contain password | 348 | // This must remain trace only, CA data may contain password |
349 | WcaLog(LOGMSG_TRACEONLY, "Custom Action Data for ConfigureIISExec will be: %ls", pwzCustomActionData); | 349 | WcaLog(LOGMSG_TRACEONLY, "Custom Action Data for ConfigureIISExec will be: %ls", pwzCustomActionData); |
350 | 350 | ||
351 | hr = WcaDoDeferredAction(L"ConfigureIIsExec", pwzCustomActionData, ConfigureIIsCost); | 351 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ConfigureIIsExec"), pwzCustomActionData, ConfigureIIsCost); |
352 | ExitOnFailure(hr, "Failed to schedule ConfigureIISExec custom action"); | 352 | ExitOnFailure(hr, "Failed to schedule ConfigureIISExec custom action"); |
353 | 353 | ||
354 | ReleaseNullStr(pwzCustomActionData); | 354 | ReleaseNullStr(pwzCustomActionData); |
@@ -357,7 +357,7 @@ extern "C" UINT __stdcall ConfigureIIs( | |||
357 | hr = WcaWriteStringToCaData(pwzScriptKey, &pwzCustomActionData); | 357 | hr = WcaWriteStringToCaData(pwzScriptKey, &pwzCustomActionData); |
358 | ExitOnFailure(hr, "Failed to add script key to CustomActionData."); | 358 | ExitOnFailure(hr, "Failed to add script key to CustomActionData."); |
359 | 359 | ||
360 | hr = WcaDoDeferredAction(L"WriteMetabaseChanges", pwzCustomActionData, WriteMetabaseChangesCost); | 360 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WriteMetabaseChanges"), pwzCustomActionData, WriteMetabaseChangesCost); |
361 | ExitOnFailure(hr, "Failed to schedule WriteMetabaseChanges custom action"); | 361 | ExitOnFailure(hr, "Failed to schedule WriteMetabaseChanges custom action"); |
362 | } | 362 | } |
363 | 363 | ||