kb835732.iss 972 B

12345678910111213141516171819202122232425262728
  1. ; required by .NET Framework 2.0 Service Pack 1 on Windows 2000 Service Pack 2-4
  2. ; http://www.microsoft.com/technet/security/bulletin/ms04-011.mspx
  3. ; http://www.microsoft.com/downloads/details.aspx?FamilyId=0692C27E-F63A-414C-B3EB-D2342FBB6C00
  4. [CustomMessages]
  5. en.kb835732_title=Windows 2000 Security Update (KB835732)
  6. de.kb835732_title=Windows 2000 Sicherheitsupdate (KB835732)
  7. kb835732_size=6.8 MB
  8. [Code]
  9. const
  10. kb835732_url = 'http://download.microsoft.com/download/f/a/a/faa796aa-399d-437a-9284-c3536e9f2e6e/Windows2000-KB835732-x86-ENU.EXE';
  11. procedure kb835732();
  12. begin
  13. if (exactwinversion(5, 0) and (minwinspversion(5, 0, 2) and maxwinspversion(5, 0, 4))) then begin
  14. if (not RegKeyExists(HKLM, 'SOFTWARE\Microsoft\Updates\Windows 2000\SP5\KB835732\Filelist')) then
  15. AddProduct('kb835732.exe',
  16. '/passive /norestart',
  17. CustomMessage('kb835732_title'),
  18. CustomMessage('kb835732_size'),
  19. kb835732_url,
  20. false, false, false);
  21. end;
  22. end;
  23. [Setup]