2016-05-24 5 views

答えて

1

InitializeSetup event functionCheckForMutexes functionを使用してください。

[Code] 

function InitializeSetup(): Boolean; 
begin 
    while CheckForMutexes('_MSIExecute') then 
    begin 
    MsgBox('Windows Installer Installation is running', mbError, MB_OK); 
    end; 

    Result := True; 
end; 

_MSIExecuteをチェックするためのミューテックスであること(@Christopher画家回答に基づいて)と仮定。

+0

オハイオ州の男性...どのようにドキュメントでこれを見つけることができませんでしたか... –

関連する問題