Cosmos/Setup2/Events.inc
mterwoord_cp 1d4b47debe
2010-08-18 18:02:23 +00:00

17 lines
No EOL
451 B
PHP

[Code]
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
var
xResultCode: Integer;
begin
EnableFsRedirection(true);
try
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;
finally
EnableFsRedirection(false);
end;
end;