Cosmos/Setup2/Events.inc
mterwoord_cp ff29283492
2010-08-13 18:46:07 +00:00

13 lines
No EOL
365 B
PHP

[Code]
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
var
xResultCode: Integer;
begin
Exec(ExpandConstant('{code:VSNET2008_PATH|}\devenv.exe'), '/setup', '', SW_HIDE, ewWaitUntilTerminated, xResultCode);
if xResultCode <> 0 then
begin
RaiseException('An error occurred while unregistering with Visual Studio!');
end;
end;