>The tutorial doesnt work for AutoCAD 2007. Yeah, also the trial 2007 had that, that's yet another bug in msi i guess. I worked around it using stupid hack below. The trial started for me, didn't test anything further diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 67f06df..47fc2c9 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -865,8 +865,8 @@ static UINT ITERATE_Actions(MSIRECORD *row, LPVOID param) if (rc == ERROR_FUNCTION_NOT_CALLED) rc = ERROR_SUCCESS; - if (rc != ERROR_SUCCESS) - ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); + if (rc != ERROR_SUCCESS){ rc=ERROR_SUCCESS; + ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc);} return rc; }