ShareX/ShareX.Setup/InnoSetup/Scripts/products/iis.iss
2018-02-28 16:40:20 +03:00

13 lines
330 B
Text

[CustomMessages]
iis_title=Internet Information Services (IIS)
[Code]
function iis(): boolean;
begin
if (not RegKeyExists(HKLM, 'SYSTEM\CurrentControlSet\Services\W3SVC\Security')) then
MsgBox(FmtMessage(CustomMessage('depinstall_missing'), [CustomMessage('iis_title')]), mbError, MB_OK)
else
Result := true;
end;
[Setup]