iis.iss 330 B

12345678910111213
  1. [CustomMessages]
  2. iis_title=Internet Information Services (IIS)
  3. [Code]
  4. function iis(): boolean;
  5. begin
  6. if (not RegKeyExists(HKLM, 'SYSTEM\CurrentControlSet\Services\W3SVC\Security')) then
  7. MsgBox(FmtMessage(CustomMessage('depinstall_missing'), [CustomMessage('iis_title')]), mbError, MB_OK)
  8. else
  9. Result := true;
  10. end;
  11. [Setup]