home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 May / PCWorld_2005-05_cd.bin / software / vyzkuste / mbsa / MBSASetup-EN.msi / !_StringData < prev    next >
Text File  |  2005-04-06  |  98KB  |  425 lines

  1. NameTableThe following applications should be closed before continuing the install:TypePropertyValue_ValidationColumnNullableMinValueMaxValueKeyTableKeyColumnCategorySetDescriptionName of tableIdentifierNName of columnDescription of columnTextYSet of values that are permittedString categoryText;Formatted;Template;Condition;Guid;Path;Version;Language;Identifier;Binary;UpperCase;LowerCase;Filename;Paths;AnyPath;WildCardFilename;RegPath;KeyFormatted;CustomSource;Property;Cabinet;Shortcut;URLColumn to which foreign key connectsFor foreign key, Name of table to which data must linkMaximum value allowedMinimum value allowedWhether the column is nullableY;N;@Name of property, uppercase if settable by launcher or loader.String value for property.  Never null or empty.Microsoft Baseline Security Analyzer 1.2.1ProductName1.2.4013.0ProductVersion1033ProductLanguageMicrosoft CorporationManufacturer{DF15059E-A356-47B2-B14B-6380ED32AB68}ProductCode{E08FB153-7428-4643-83EB-A203BCAE6D32}UpgradeCodeUPGMBSA0SecureCustomPropertiesUpgradeVersionMinVersionMaxLanguageAttributesRemoveActionPropertyThe attributes of this product set.A comma-separated list of languages for either products in this set or products not in this set.The property to set when a product in this set is found.UpperCaseThe list of features to remove when uninstalling a product from this set.  The default is "ALL".FormattedThe UpgradeCode GUID belonging to the products in this set.GuidThe maximum ProductVersion of the products in this set.  The set may or may not include products with this particular version.The minimum ProductVersion of the products in this set.  The set may or may not include products with this particular version.0.0.0.0{85137A66-89EC-495A-A727-2A796057112A}NEWMBSA0UPGMBSANEWMBSAUPGMBSA0;UPGMBSA;NEWMBSA0;NEWMBSA{97A4D516-DB83-4379-84E2-EF2A017A9F85}1.2.1VersionBuildVersion100INSTALLLEVEL1ARPNOREPAIRmbsa.exeARPPRODUCTICONreadme.htmlARPREADME{&MSSansSerif8}TEXT{&MSSansSerif8bold}BOLD{&Arial8}TITLENoAcceptAllUsersApplicationUsersdmusREINSTALLMODEMicrosoft Baseline Security AnalyzerMyProductNameARInstallChoiceALLUSERSRepairMModeTypeModifyOperationhttp://www.microsoft.comARPURLINFOABOUThttp://go.microsoft.com/fwlink/?LinkId=16534ARPURLUPDATEINFOhttp://go.microsoft.com/fwlink/?LinkId=16531ARPHELPLINKhttp://go.microsoft.com/fwlink/?LinkId=16533XMLParserInstallerhttp://go.microsoft.com/fwlink/?LinkId=16532InternetExplorerInstallerRemoving previous [MyProductName] versionsMBSARemoveMessageLaunchConditionConditionLocalizable text to display when condition fails and install must abort.Expression which must evaluate to TRUE in order for install to commence.This application only runs on Windows 2000 or later.VersionNT >= 500This application does not run on Windows 95/98.NOT Version9XCustomActionActionSourceTargetThe numeric custom action type, consisting of source location, code type, entry, option flags.Primary key, name of action, normally appears in sequence table unless private use.The table reference of the source of the code.CustomSourceExcecution parameter, depends on the type of custom actionomusSetPatchReinstallModeAllREINSTALLSetPatchModefile://[!readme.html]SetReadmeLocationRegisterMBSAInstallermbsainstall.dllClearMBSAInstallerClearMBSAInstaller.commitClearMBSAInstaller.rollbackWaitMBSAInstallerPrintEULAA newer version of [MyProductName] was detected on your system. Downgrade to an older version is not allowed. To install this version, it is first required to uninstall the current version using Add/Remove Programs on the Control PanelNewerVersionFatalAnother instance of [MyProductName] Setup is already running. You may not start this setup until the previous instance is complete.InstallerRunningFatal
  2.         On Error Resume Next
  3.         If Not XCreateObject("MSXML2.DOMDocument", parser) Then
  4.             Session.Property("XMLParserMissing") = "1"
  5.         Else
  6.             Session.Property("XMLParserMissing") = ""
  7.             Set parser = Nothing
  8.         End If
  9.         
  10.         Function XCreateObject(name, ByRef obj)
  11.             On Error Resume Next
  12.             Set obj = Nothing
  13.             If name = "MSXML2.DOMDocument" Then
  14.                 Const MIN_VERSION = 3
  15.                 Const MAX_VERSION = 5
  16.         
  17.                 For v = MIN_VERSION To MAX_VERSION
  18.                     Err.Clear
  19.                     Set obj = CreateObject("MSXML2.DOMDocument." & v & ".0")
  20.                     If Err <> 0 Then
  21.                         Set obj = Nothing
  22.                     Else
  23.                         Exit For
  24.                     End If    
  25.                 Next
  26.             Else
  27.                 Set obj = CreateObject(name)
  28.             End If
  29.             XCreateObject = NOT (obj Is Nothing)
  30.         End Function        
  31.     TestXMLParser
  32.         On Error Resume Next
  33.         iever = Installer.RegistryValue(2, "Software\Microsoft\Internet Explorer", "Version")
  34.  
  35.         Set re = new RegExp
  36.         re.Global = True
  37.         re.Pattern = "([^.]+)"
  38.         Set ver = re.Execute(iever)
  39.  
  40.         If( ver.Count <> 4 ) Then
  41.             ' IE not correctly installed, or very old version
  42.             Session.Property("InternetExplorerMissing") = "1"
  43.         Else
  44.             p1 = FormatZero(ver.Item(0), 1)
  45.             p2 = FormatZero(ver.Item(1), 2)
  46.             p3 = FormatZero(ver.Item(2), 4)
  47.             p4 = FormatZero(ver.Item(3), 4)
  48.     
  49.             If Len(p1) = 0 Or Len(p2) = 0 Or Len(p3) = 0 Or Len(p4) = 0 Then
  50.                 ' IE not correctly installed
  51.                 Session.Property("InternetExplorerMissing") = "1"
  52.             Else    
  53.                 ver2 = p1 & p2 & p3 & p4
  54.         
  55.                 If (ver2 = "50026143500" Or ver2 < "50025161900") Then
  56.                     Session.Property("InternetExplorerMissing") = "1"
  57.                 Else
  58.                     Session.Property("InternetExplorerMissing") = ""
  59.                 End If
  60.             End If
  61.         End If
  62.         
  63.         Set ver = Nothing
  64.         Set re = Nothing
  65.  
  66.         Function FormatZero(n, size)
  67.             strN = Trim(CStr(CInt(n)))
  68.             strNlen = Len(strN)
  69.         
  70.             For i = strNlen To size - 1
  71.                 strN = "0" & strN
  72.             Next
  73.                         
  74.             FormatZero = strN
  75.         End Function
  76.     TestInternetExplorer
  77.         On Error Resume Next
  78.         Set WshShell = CreateObject("WScript.Shell")
  79.         WshShell.Run Session.Property("XMLParserInstaller")
  80.         Set WshShell = Nothing
  81.     LaunchXMLInstaller
  82.         On Error Resume Next
  83.         Set WshShell = CreateObject("WScript.Shell")
  84.         WshShell.Run Session.Property("InternetExplorerInstaller")
  85.         Set WshShell = Nothing
  86.     LaunchIEInstaller
  87.         On Error Resume Next
  88.         Session.DoAction("TestInternetExplorer")
  89.         Session.DoAction("TestXMLParser")    
  90.     PostVerifyRequirements
  91.         On Error Resume Next
  92.         
  93.         Set d = Session.Installer.OpenDatabase(Session.Property("OriginalDatabase"),0)
  94.         Set x1 = d.OpenView("SELECT `Value` FROM `Property` WHERE `Property`='ProductVersion'")
  95.         x1.Execute
  96.         Set r1 = x1.Fetch
  97.  
  98.         installed = (Session.Property("Installed") <> "")
  99.         curStrVer = Session.Property("ProductVersion")
  100.         pkgStrVer = r1.StringData(1)
  101.         curVer = GetVersion(Session.Property("ProductVersion"))
  102.         pkgVer = GetVersion(r1.StringData(1))
  103.         
  104.         x1.Close
  105.         Set r1 = Nothing
  106.         Set x1 = Nothing
  107.         Set d = Nothing
  108.         
  109.         If curVer > pkgVer Then
  110.             Session.Property("Downgrade") = "1"
  111.         End If
  112.         If  installed AND (curVer < pkgVer) Then
  113.             Session.Property("Upgrade") = "1"
  114.             Session.Property("UpgradeFrom") = curStrVer
  115.             Session.Property("UpgradeTo") = pkgStrVer
  116.             Session.Property("MModeType") = "Upgrade"
  117.         End If
  118.         
  119.         If InStr(Session.Property("REINSTALLMODE"), "v") > 0 Then
  120.             Session.Property("Reinstall") = "1"
  121.         End If
  122.  
  123.         Function GetVersion(sv)
  124.             ' XX.XX.XXXX.XXX[MACHINE]
  125.             sv1 = Split(sv, "[")
  126.             
  127.             ' XX.XX.XXXX.XXX
  128.             a = Split(sv1(0), ".")
  129.             
  130.             If UBound(a) <> 3 Then
  131.                 GetVersion = sv1(0)
  132.             End If
  133.             
  134.             v = a(0)
  135.             v = a(1) + v*100
  136.             v = a(2) + v*10000
  137.             v = a(3) + v*1000
  138.             
  139.             GetVersion = v
  140.         End Function
  141.     CheckVersions
  142.         ' On Error Resume Next
  143.         Session.DoAction("CheckVersions")
  144.         If (Session.Property("Installed") <> "") AND (Session.Property("UILevel") <> 5) Then
  145.             If Len(Session.Property("Upgrade")) > 0 Then
  146.                 Session.Property("UpgradeStarted") = "1"
  147.                 Session.Property("REMOVE") = "ALL"
  148.  
  149.                 upg =     "*level=" & Session.Property("UILevel") &_
  150.                             "*file=" & Session.Property("OriginalDatabase") &_
  151.                             "*upg=" & Session.Property("UpgradeStarted")
  152.                 Session.Property("InstallLaunchUpgradeInstaller") = upg
  153.             End If
  154.         End If
  155.     InstallCheckVersions
  156.         If Len(Session.Property("InstallLaunchUpgradeInstaller")) > 0 Then
  157.             Session.Property("InstallLaunchUpgradeInstaller") = Session.Property("InstallLaunchUpgradeInstaller") &_
  158.                         "*folder=" & Session.Property("INSTALLDIR")
  159.         End If
  160.     InstallFolderUpgradeInstaller
  161.         On Error Resume Next
  162.         If Len(Session.Property("UpgradeStarted")) > 0 Then
  163.             Session.DoAction("ClearMBSAInstaller")
  164.             Set WshShell = CreateObject("WScript.Shell")
  165.             WshShell.Run "msiexec /i """ & Session.Property("OriginalDatabase") & """ UPGRADESILENT=1 INSTALLDIR=""" & Session.Property("INSTALLDIR") & """"
  166.             Set WshShell = Nothing
  167.         Else
  168.             Session.DoAction("ExitDialog")
  169.         End If
  170.     LaunchUpgradeInstaller
  171.         On Error Resume Next
  172.         If Len(Session.Property("CustomActionData")) > 0 Then
  173.             Set WshShell = CreateObject("WScript.Shell")
  174.             WshShell.Run "msiexec " & UILevel2Args(GetParameter("level")) & " /i """ & GetParameter("file") & """ UPGRADESILENT=1 INSTALLDIR=""" & GetParameter("folder") & """"
  175.             Set WshShell = Nothing
  176.         End If
  177.         
  178.         Function UILevel2Args(level)
  179.             Select Case level
  180.                 Case 2
  181.                     UILevel2Args = "/qn "
  182.                 Case 3
  183.                     UILevel2Args = "/qb! "
  184.                 Case 4
  185.                     UILevel2Args = "/qr "
  186.                 Case 5
  187.                     UILevel2Args = ""
  188.             End Select
  189.         End Function
  190.         
  191.         Function GetParameter(param)
  192.             data = Session.Property("CustomActionData")
  193.             dataSplit = Split(data, "*")
  194.             For i = 0 To UBound(dataSplit)
  195.                 dataParam = Trim(dataSplit(i))
  196.                 pos = InStr(dataParam, "=")
  197.                 If pos > 0 Then
  198.                     If LCase(Left(dataParam, pos-1)) = LCase(Trim(param)) Then
  199.                         GetParameter = Right(dataParam, Len(dataParam)-pos)
  200.                         Exit Function
  201.                     End If
  202.                 End If
  203.             Next
  204.             GetParameter = ""
  205.         End Function
  206.     InstallLaunchUpgradeInstaller
  207.         On Error Resume Next
  208.         If Session.Property("UPGRADESILENT") = "1" Then
  209.             Session.Property("UpgradeSilent") = "1"
  210.             Session.Property("Upgrade") = "1"
  211.             Session.Property("MModeType") = "Upgrade"
  212.         End If
  213.     CheckSilentUpgrade
  214.         On Error Resume Next
  215.         Const MAX_PATH_LEN = 107
  216.         Const MAX_ALLOWED_LEN = 240
  217.         If Len(Session.Property("INSTALLDIR")) > MAX_PATH_LEN Then
  218.             Session.Property("InstallPathTooBig") = "1"
  219.         Else
  220.             Session.Property("InstallPathTooBig") = ""
  221.         End If
  222.  
  223.         If Len(Session.Property("INSTALLDIR")) > MAX_ALLOWED_LEN Then
  224.             installDir = Session.Property("INSTALLDIR")
  225.             Session.Property("INSTALLDIR") = Left(installDir, MAX_ALLOWED_LEN)
  226.         End If
  227.     CheckInstallPathTooBigDirectoryDirectory_ParentDefaultDirUnique identifier for directory entry, primary key. If a property by this name is defined, it contains the full path to the directory.The default sub-path under parent's path.Reference to the entry in this table specifying the default parent directory. A record parented to itself or with a Null parent represents a root of the install tree.SOURCEDIRTARGETDIR.:ProgramFProgramFilesFolderMBSA|Microsoft Baseline Security AnalyzerINSTALLDIRCreateFolderDirectory_Component_Foreign key into the Component table.ComponentPrimary key, could be foreign key into the Directory table.ProgramsFileFileNameFileSizeSequenceSequence with respect to the media images; order must track cabinet order.Integer containing bit flags representing file attributes (with the decimal value of each bit position in parentheses)Primary key, non-localized token, must match identifier in cabinet.  For uncompressed files, this field is ignored.Foreign key referencing Component that controls the file.File name used for installation, may be localized.  This may contain a "short name|long name" pair.FilenameSize of file in bytes (long integer).List of decimal language Ids, comma-separated if more than one.Version string for versioned files;  Blank for unversioned files.MsiFileHashFile_OptionsHashPart1HashPart2HashPart3HashPart4Primary key, foreign key into File table referencing file with this hashVarious options and attributes for this hash.mbsacli.exeSelfRegCostForeign key into the File table denoting the module that needs to be registered.The cost of registering the module.serversecure.dllSERVER~1.DLL|serversecure.dllxmldb.dllhfdll.dllRemoveFileFileKeyDirPropertyInstallModeForeign key referencing Component that controls the file to be removed.Primary key used to identify a particular file entryName of the file to be removed.WildCardFilenameName of a property whose value is assumed to resolve to the full pathname to the folder of the file to be removed.Installation option, one of iimEnum.1;2;3mssecure*.cabRemoveFile.mssecure.cabmssecure*.xmlRemoveFile.mssecure.xmlthumbs.dbRemoveFile.Programs.Thumbs.dbRemoveFolder.InstallDirComponentIdKeyPathA conditional statement that will disable this component if the specified condition evaluates to the 'True' state. If a component is disabled, it will not be installed, regardless of the 'Action' state associated with the component.Remote execution option, one of irsEnumPrimary key used to identify a particular component record.A string GUID unique to this component, version, and language.Required key of a Directory table record. This is actually a property name whose value contains the actual path, set either by the AppSearch action or with the default setting obtained from the Directory table.Either the primary key into the File table, Registry table, or ODBCDataSource table. This extract path is stored when the component is installed, and is used to detect the presence of the component and to return the path to it.File;Registry;ODBCDataSource{80865336-4C39-46B6-87C9-DE38411D5078}OMBSARegistryRootKeyThe registry value name.The registry value.Foreign key into the Component table referencing component that controls the installing of the registry value.The key for the registry value.RegPathPrimary key, non-localized token.The predefined root key for the registry value, one of rrkEnum.#1WindowsInstallerSOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\BDB13190C19AC1D438B02FDA8D80404E\InstallPropertiesRegOMBSA.1[MyProductName]ControlledBySOFTWARE\Classes\Installer\Products\BDB13190C19AC1D438B02FDA8D80404ERegOMBSA.2[ProductVersion]RegOMBSA.300000000000000000000000000000000PackageCodeRegOMBSA.4SOFTWARE\Classes\Installer\Products\BDB13190C19AC1D438B02FDA8D80404E\SourceListRegOMBSA.5SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\C0964AF5579149F4A94672F492DB2912\InstallPropertiesRegOMBSA.1aSOFTWARE\Classes\Installer\Products\C0964AF5579149F4A94672F492DB2912RegOMBSA.2aRegOMBSA.3aRegOMBSA.4aSOFTWARE\Classes\Installer\Products\C0964AF5579149F4A94672F492DB2912\SourceListRegOMBSA.5a*RegDelOMBSA.1RegDelOMBSA.2RegDelOMBSA.1aRegDelOMBSA.2a{D0C1C4A3-7C91-4630-8E76-73E2C5D6EACC}System.VCSharedmsvcp60.dll{23A95C03-6CE7-49C5-9F28-F47599591164}ApplicationABOUT~2.HTM|about.htmlabout.htmlCOMPUT~1.XSL|computerMRU.xslcomputerMRU.xslCOA8D0~1.XSL|copyreport.xslcopyreport.xslCOAC5F~1.XSL|copyreportlist.xslcopyreportlist.xslCOC9E2~1.XSL|copyreportlisttxt.xslcopyreportlisttxt.xslCOC843~1.XSL|copyreporttxt.xslcopyreporttxt.xslDEFAUL~1.HTM|Default.htmlDefault.htmlDOMAIN~1.XSL|domainMRU.xsldomainMRU.xslERRORS~2.HTM|errors.htmlerrors.htmlerrors.xsl|errors.xslerrors.xslFOOTER~1.HTM|Footer.htmlFooter.htmlHEADER~2.HTM|Header.htmlHeader.htmlipMRU.xsl|ipMRU.xslipMRU.xslIPRANG~1.XSL|iprangeMRU.xsliprangeMRU.xslONEREP~2.HTM|onereport.htmlonereport.htmlOPTION~1.HTM|optionshelp.htmloptionshelp.htmlPICKCO~1.HTM|pickcomputer.htmlpickcomputer.htmlPICKCO~2.HTM|pickcomputers.htmlpickcomputers.htmlPICKRE~2.HTM|pickreport.htmlpickreport.htmlPRINTR~3.HTM|PrintReport.htmlPrintReport.htmlPRINTR~2.XSL|printreport.xslprintreport.xslPRINTR~4.HTM|PrintReportList.htmlPrintReportList.htmlREPORT~4.HTM|report.htmlreport.htmlreport.xsl|report.xslreport.xslRE52E8~1.HTM|reportdetails.htmlreportdetails.htmlREPORT~1.XSL|reportdetails.xslreportdetails.xslREPORT~2.XSL|reportdetailsHF.xslreportdetailsHF.xslRE6E26~1.XSL|reportdetailsHFSQL.xslreportdetailsHFSQL.xslREPORT~3.XSL|reportdetailsSQL.xslreportdetailsSQL.xslREPORT~5.XSL|reportnamelist.xslreportnamelist.xslREA5FB~1.HTM|reports.htmlreports.htmlreports.xsl|reports.xslreports.xslSCAN~1.HTM|scan.htmlscan.htmlSHOWRE~1.HTM|ShowReport.htmlShowReport.htmlsusMRU.xsl|susMRU.xslsusMRU.xslTOOLBA~2.HTM|ToolBar.htmlToolBar.htmlVIEWER~2.HTM|viewerrors.htmlviewerrors.htmlVIEWRE~2.HTM|viewreport.htmlviewreport.htmlWELCOM~1.HTM|welcome.htmlwelcome.htmlNEWVER~1.HTM|newversion.htmlnewversion.htmlRE8DB5~1.XSL|reportdetailsIEZones.xslreportdetailsIEZones.xslREPORT~6.HTM|reportdetailsIEZonesSub.htmlreportdetailsIEZonesSub.htmlREF7F1~1.XSL|reportdetailsIEZonesSub.xslreportdetailsIEZonesSub.xsl{5287A588-FA3B-4AF0-B9A4-2B26A0C2AE09}DataChecks.csvDetails.csvNOEXPI~1.TXT|NoExpireOk.txtNoExpireOk.txtServices.txt{244CD8A9-1716-4B4B-B783-D388F67B924A}ConsoleDataCMDDET~1.XSL|cmdDetailReport.xslcmdDetailReport.xslCMDDET~2.XSL|cmdDetailReport_v.xslcmdDetailReport_v.xslCMDERR~1.XSL|cmdErrors.xslcmdErrors.xslCMDOVE~1.XSL|cmdOverviewReport.xslcmdOverviewReport.xslCMDREP~1.XSL|cmdReportList.xslcmdReportList.xsl{68AC02B1-D27F-4F8C-A7F4-1C01F3FEDF1F}EventLog[#serversecure.dll]EventMessageFileSYSTEM\CurrentControlSet\Services\Eventlog\Application\MBSAEventLog.MessageFile#7TypesSupportedEventLog.Types{94A3A3B8-7BF2-4D57-8F12-9353CDC6D8E7}HelpCHECK2~1.HTM|check20001.htmlcheck20001.htmlCHECK2~2.HTM|check20001fix.htmlcheck20001fix.htmlCHECK5~1.HTM|check5311.htmlcheck5311.htmlCHECK5~2.HTM|check53110.htmlcheck53110.htmlCHECK5~3.HTM|check53110fix.htmlcheck53110fix.htmlCHECK5~4.HTM|check53111.htmlcheck53111.htmlCH60AA~1.HTM|check53111fix.htmlcheck53111fix.htmlCHFDC0~1.HTM|check53112.htmlcheck53112.htmlCH60A9~1.HTM|check53112fix.htmlcheck53112fix.htmlCH0ECC~1.HTM|check53114.htmlcheck53114.htmlCH60A7~1.HTM|check53114fix.htmlcheck53114fix.htmlCH0ECA~1.HTM|check53115.htmlcheck53115.htmlCH60AE~1.HTM|check53115fix.htmlcheck53115fix.htmlCH0EC8~1.HTM|check53116.htmlcheck53116.htmlCH60A5~1.HTM|check53116fix.htmlcheck53116fix.htmlCH0EC6~1.HTM|check53117.htmlcheck53117.htmlCH60A4~1.HTM|check53117fix.htmlcheck53117fix.htmlCHA8C6~1.HTM|check5311fix.htmlcheck5311fix.htmlCH3485~1.HTM|check5313.htmlcheck5313.htmlCHAAC6~1.HTM|check5313fix.htmlcheck5313fix.htmlCH3885~1.HTM|check5314.htmlcheck5314.htmlCHABC6~1.HTM|check5314fix.htmlcheck5314fix.htmlCH3C85~1.HTM|check5315.htmlcheck5315.htmlCHACC6~1.HTM|check5315fix.htmlcheck5315fix.htmlCH3095~1.HTM|check5316.htmlcheck5316.htmlCHADC6~1.HTM|check5316fix.htmlcheck5316fix.htmlCH3495~1.HTM|check5317.htmlcheck5317.htmlCHAEC6~1.HTM|check5317fix.htmlcheck5317fix.htmlCH3895~1.HTM|check5318.htmlcheck5318.htmlCHAFC6~1.HTM|check5318fix.htmlcheck5318fix.htmlCH3C95~1.HTM|check5319.htmlcheck5319.htmlCHA0D6~1.HTM|check5319fix.htmlcheck5319fix.htmlCH3C7F~1.HTM|check5321.htmlcheck5321.htmlCHA849~1.HTM|check5321fix.htmlcheck5321fix.htmlCH348F~1.HTM|check5323.htmlcheck5323.htmlCHAA49~1.HTM|check5323fix.htmlcheck5323fix.htmlCH388F~1.HTM|check5324.htmlcheck5324.htmlCHAB49~1.HTM|check5324fix.htmlcheck5324fix.htmlCH3C8F~1.HTM|check5325.htmlcheck5325.htmlCHAC49~1.HTM|check5325fix.htmlcheck5325fix.htmlCH309F~1.HTM|check5326.htmlcheck5326.htmlCHAD49~1.HTM|check5326fix.htmlcheck5326fix.htmlCH349F~1.HTM|check5327.htmlcheck5327.htmlCHAE49~1.HTM|check5327fix.htmlcheck5327fix.htmlCH389F~1.HTM|check5328.htmlcheck5328.htmlCHAF49~1.HTM|check5328fix.htmlcheck5328fix.htmlCH3C71~1.HTM|check5331.htmlcheck5331.htmlCHFDC2~1.HTM|check53310.htmlcheck53310.htmlCH60AA~2.HTM|check53310fix.htmlcheck53310fix.htmlCHFDC0~2.HTM|check53311.htmlcheck53311.htmlCH60A9~2.HTM|check53311fix.htmlcheck53311fix.htmlCHFDCE~2.HTM|check53312.htmlcheck53312.htmlCH60A8~2.HTM|check53312fix.htmlcheck53312fix.htmlCHA8C9~1.HTM|check5331fix.htmlcheck5331fix.htmlCH3481~1.HTM|check5333.htmlcheck5333.htmlCHAAC9~1.HTM|check5333fix.htmlcheck5333fix.htmlCH3881~1.HTM|check5334.htmlcheck5334.htmlCHABC9~1.HTM|check5334fix.htmlcheck5334fix.htmlCH3C81~1.HTM|check5335.htmlcheck5335.htmlCHACC9~1.HTM|check5335fix.htmlcheck5335fix.htmlCH3091~1.HTM|check5336.htmlcheck5336.htmlCHADC9~1.HTM|check5336fix.htmlcheck5336fix.htmlCH3491~1.HTM|check5337.htmlcheck5337.htmlCHAEC9~1.HTM|check5337fix.htmlcheck5337fix.htmlCH3891~1.HTM|check5338.htmlcheck5338.htmlCHAFC9~1.HTM|check5338fix.htmlcheck5338fix.htmlCH3C91~1.HTM|check5339.htmlcheck5339.htmlCHA0D9~1.HTM|check5339fix.htmlcheck5339fix.htmlCH06D8~1.HTM|check53176.htmlcheck53176.htmlCH64A5~1.HTM|check53176fix.htmlcheck53176fix.htmlCH06D6~1.HTM|check53177.htmlcheck53177.htmlCH64A4~1.HTM|check53177fix.htmlcheck53177fix.htmlCH0AD4~1.HTM|check53178.htmlcheck53178.htmlCH66A3~1.HTM|check53178fix.htmlcheck53178fix.htmlCH0AD2~1.HTM|check53179.htmlcheck53179.htmlCH66A2~1.HTM|check53179fix.htmlcheck53179fix.htmlMBSAHE~1.HTM|mbsahelp.htmlmbsahelp.htmlREADME~1.HTM|readme.html{81362196-3FBF-4A16-942E-792324980B61}cssfooter.cssRESULT~1.CSS|resultdetails.cssresultdetails.cssscanner.csscoUA.csscoUApr~1.css|coUAprint.csscoUAprint.css{F6C14D86-5D00-467B-AD00-B36426918813}graphicsarrow.gifARROW_~1.GIF|arrow_disabled.gifarrow_disabled.gifastrx.gifbanner.jpgbarrow.gifBARROW~1.GIF|barrow_disabled.gifbarrow_disabled.gifchek_grn.gifclose_1.gifclose_2.gifclose_3.gifcopy.gifdash.gifexcl_gld.gifexcl_red.gifinfo.gifLEFTCO~1.GIF|LeftCorner.gifLeftCorner.gifMSTOOL~1.GIF|mstoolbar_ms.gifmstoolbar_ms.gifplus_blu.gifprint.gifprogress.gifPROGRE~1.GIF|progress_empty.gifprogress_empty.gifRIGHTC~1.GIF|RightCorner.gifRightCorner.gifscore_1.gifscore_3.gifspacer.gifstar_blu.gifTOC_EN~1.GIF|toc_endnode.giftoc_endnode.gifwait_m.curx_gold.gifx_red.gifRemoveFile.graphics.Thumbs.db{84DD6BDD-A518-4F86-9D7A-E7B7079ADB22}includesdropdown.jsobject.js{D1F07FA1-B2E4-4CAC-A01F-2456411CE06C}OFFICE~1|OfficeUpdOfficeUpdconvert.exeINVENT~1.EXE|inventory.exeinventory.exeoudetect.dllPATCHD~1.XML|patchdata.xmlRemoveFile.patchdata.xmlINVENT~1.HTM|inventorycatalog.htmlRemoveFile.inventorycatalog.htmlTMP_IN~1.EXE|tmp_invcm.exeRemoveFile.tmp_invcm.exeOFFICE~1.XSL|officeadapt_1033.xslofficeadapt.xslofficeadapt_*.xslRemoveFile.officeadapt.xsl{2B553EC8-A27B-45C6-81CB-EB12E3A3A9E8}cifsOfficeUpdCifsOfficeUpdCifpuids.cifRemoveFile.puids.cif{469092CE-35AD-4660-9B47-279B3FB63518}DesktopFolderDesktopIconShortcutArgumentsHotkeyIcon_IconIndexShowCmdWkDirThe name of the shortcut to be created.The description for the shortcut.Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.Foreign key into the File table denoting the external icon file for the shortcut.IconThe icon index for the shortcut.Foreign key into the Directory table denoting the directory where the shortcut file is created.The shortcut target. This is usually a property that is expanded to a file or a folder that the shortcut points to.The command-line arguments for the shortcut.The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte. The show command for the application window.The following values may be used.1;3;7Name of property defining location of working directory.[#mbsa.exe]mbsa.lnk|Microsoft Baseline Security Analyzer 1.2.1SOFTWARE\Microsoft\[MyProductName]\DesktopIconRegMBSA.CU.DesktopIcon{70F23D83-2498-48A8-92D6-3C7EB71438BC}ProgramMenuFolderProgramMenuIconSOFTWARE\Microsoft\[MyProductName]RegMBSA.CU.ProgramMenuIcon{207C4072-92CC-47F2-996D-14D45ED4F641}FeatureFeature_ParentTitleDisplayLevelLonger descriptive text describing a visible feature item.Feature attributes0;1;2;4;5;6;8;9;10;16;17;18;20;21;22;24;25;26;32;33;34;36;37;38;48;49;50;52;53;54Primary key used to identify a particular feature record.The name of the Directory that can be configured by the UI. A non-null value will enable the browse button.The install level at which record will be initially selected. An install level of 0 will disable an item and prevent its display.Short text identifying a visible feature item.Numeric sort order, used to force a specific display ordering.Optional key of a parent record in the same table. If the parent is not selected, then the record will not be installed. Null indicates a root item.MBSAFeatureComponentsFeature_Foreign key into Feature table.Foreign key into Component table.StartMenuIconMediaDiskIdLastSequenceDiskPromptCabinetVolumeLabelThe property defining the location of the cabinet file.If some or all of the files stored on the media are compressed in a cabinet, the name of that cabinet.Primary key, integer to determine sort order for table.Disk name: the visible text actually printed on the disk.  This will be used to prompt the user when this disk needs to be inserted.File sequence number for the last file for this media.The label attributed to the volume.Disk1#Data.CabArial10DefaultUIFontErrorDialogControlEventDialog_Control_EventArgumentOrderingA standard conditional statement that specifies under which conditions an event should be triggered.An integer used to order several events tied to the same control. Can be left blank.A value to be used as a modifier when triggering a particular event.A foreign key to the Dialog table, name of the dialog.DialogA foreign key to the Control table, name of the controlControlAn identifier that specifies the type of the event that should take place when the user interacts with control specified by the first two entries.ReturnEndDialogCancelExitYesXWidthHeightControl_NextThe type of the control.Vertical coordinate of the upper left corner of the bounding rectangle of the control.A string used to set the initial text contained within a control (if appropriate).The name of a defined property to be linked to this control. A 32-bit word that specifies the attribute flags to be applied to this control.Height of the bounding rectangle of the control.Width of the bounding rectangle of the control.Horizontal coordinate of the upper left corner of the bounding rectangle of the control.Name of the control. This name must be unique within a dialog, but can repeat on different dialogs. The name of an other control on the same dialog. This link defines the tab order of the controls. The links have to form one or more cycles!External key to the Dialog table, name of the dialog.The help strings used with the button. The text is optional. [TEXT]&ResumePushButton[TEXT]Installation is not complete. If you quit the setup program now, the application will not be installed. You can run the setup program at a later time to complete the installation. To continue installing, click Resume. To quit the setup program, click Exit Setup.[TEXT]&Exit SetupHCenteringVCenteringControl_FirstControl_DefaultControl_CancelA 32-bit word that specifies the attribute flags to be applied to this dialog.Height of the bounding rectangle of the dialog.Width of the bounding rectangle of the dialog.Name of the dialog.Defines the cancel control. Hitting escape or clicking on the close icon on the dialog is equivalent to pushing this button.Defines the default control. Hitting return is equivalent to pushing this button.Defines the control that has the focus when the dialog is created.Horizontal position of the dialog on a 0-100 scale. 0 means left end, 100 means right end of the screen, 50 center.A text string specifying the title to be displayed in the title bar of the dialog's window.Vertical position of the dialog on a 0-100 scale. 0 means top end, 100 means bottom end of the screen, 50 center.ListBoxOrderThe visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value.A named property to be tied to this item. All the items tied to the same property become part of the same listbox.The value string associated with this item. Selecting the line will set the associated property to this value.A positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive.MBSA SetupErrorYes[TEXT]&YesErrorAbortA[TEXT]&AbortErrorCancelC[TEXT]&CancelErrorIgnoreI[TEXT]&IgnoreErrorNo[TEXT]&NoErrorOkO[TEXT]&OKErrorRetryR[TEXT]&RetryerroriconErrorIcon[TEXT]ErrorTextISSCRIPTRUNNING="1"CleanUpDoActionFinishFatalErrorControlConditionThe desired action to be taken on the specified control.Default;Disable;Enable;Hide;ShowA standard conditional statement that specifies under which conditions the action should be triggered.A foreign key to the Control table, name of the control.NOT UpdateStartedDefault[Suspend]DisableUpdateStartedEnable[TEXT]&Finish{}BackLineDlgLine[TITLE]Setup has encountered an error.TextLine1[TEXT]Setup was interrupted before [MyProductName] could be completely installed.TextLine2HideFinishText1Show[TEXT]Your system has not been modified. To complete installation at another time, please run setup again.FinishText2[TEXT]Click Finish to exit setup.RestContText1[TEXT]You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.RestContText2[TEXT]Click Restore or Continue Later to exit setup.bannerBitmapBannerLine12top16Bitmap24[TEXT]< &BackRetryFilesInUseIgnore[TITLE]Running ProgramsRunningProgramsList[TEXT]< &Ignore[TEXT]Setup has determined that the following program(s) are running.ListLabel[TEXT]Setup recommends closing these programs during installation.RecommendedLabelFileInUseProcessOKUserExitInstalledTextInstall[TEXT][MyProductName] Setup was interrupted before your new software was fully installed. You can rerun this installation at another time to complete the setup of this software.Operation <> "Modify" OR NOT InstalledTextModify[TEXT]Configuration of [MyProductName] was interrupted before you made any changes to the product. You can rerun this installation at another time to modify or remove this software.Operation <> "Reinstall" OR NOT InstalledTextRepair[TEXT]Repair of [MyProductName] was interrupted before it was complete.Operation <> "Remove" OR NOT InstalledTextRemove[TEXT]Removal of [MyProductName] was interrupted before it was complete.Operation <> "Upgrade" OR NOT InstalledTextUpgrade[TEXT]Upgrade of [MyProductName] was interrupted before it was complete.InstallPathTooBig[TEXT][MyProductName] Setup cannot use the folder specified because the path name is too long. Please select another destination folder.MessageNOT UpgradeSilentSpawnDialogProgressUpgradeSilentEventMappingAttributeA foreign key to the Dialog table, name of the Dialog.An identifier that specifies the type of the event that the control subscribes to.The name of the control attribute, that is set when this event is received.SetProgressProgressBar[TEXT]Current Action:ActionCaptionActionTextPrepInstInstalled OR UpgradeSilent[TEXT]Preparing to install...PrepUninstMModeType <> "Remove" OR NOT Installed[TEXT]Preparing to uninstall...PrepRepairMModeType <> "Repair" OR NOT Installed[TEXT]Preparing to repair...PrepUpgrade(MModeType <> "Upgrade" OR NOT Installed) AND NOT UpgradeSilent[TEXT]Preparing to upgrade...ActionDataInstallMgs[TITLE]Installation ProgressRemoveMsg[TITLE]Uninstallation ProgressRepairMsg[TITLE]Repair ProgressUpgradeMsg[TITLE]Upgrade Progress[TEXT]Please waitText2LineTopLineBottomRequirementsMissing[TEXT]The system requiments necessary to run [MyProductName] are still not met. Please satisfy them before continuing.WelcomeDialog0[TEXT]Version [Version]Text14[TITLE]Welcome to [MyProductName]Line3Prep1[TEXT]Preparing [MyProductName] installation wizard...NOT InstalledPrep2[TEXT]Preparing [MyProductName] configuration wizard...LicenseDialogNewDialogNextStartSetupDialog[TEXT]&Next >Previous{&Arial14}[MyProductName] Setup[TEXT]WARNING: This program is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this program, or any portion of it, may result in severe civil and criminal penalties, and will be prosecuted to the maximum extent possible under law. Copyright 2002-2004 Microsoft Corporation. All rights reserved.[TEXT]It is strongly recommended that you exit all Windows programs before running this setup program. Click Cancel to quit the setup program, then close any programs you have running. Click Next to continue the installation.Text1[TITLE]Welcome to the [MyProductName]InternetExplorerMissing OR XMLParserMissingVerifyRequirementsNOT(InternetExplorerMissing OR XMLParserMissing)InstallationDestinationAccept = "Yes"Accept <> "Yes"RadioButtonGroupGroupLicense[TEXT]You must agree with the license agreement below to proceed.PrintLicense{\rtf1\ansi\ansicpg1252\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}
  228. {\f35\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Tahoma;}{\f39\fswiss\fcharset0\fprq2{\*\panose 020b0506020202030204}Arial Narrow;}{\f41\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}Microsoft Logo;}
  229. {\f60\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times;}{\f279\froman\fcharset238\fprq2 Times New Roman CE;}{\f280\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f282\froman\fcharset161\fprq2 Times New Roman Greek;}
  230. {\f283\froman\fcharset162\fprq2 Times New Roman Tur;}{\f284\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f285\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f286\froman\fcharset186\fprq2 Times New Roman Baltic;}
  231. {\f287\froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f629\fswiss\fcharset238\fprq2 Tahoma CE;}{\f630\fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f632\fswiss\fcharset161\fprq2 Tahoma Greek;}{\f633\fswiss\fcharset162\fprq2 Tahoma Tur;}
  232. {\f634\fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f635\fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f636\fswiss\fcharset186\fprq2 Tahoma Baltic;}{\f637\fswiss\fcharset163\fprq2 Tahoma (Vietnamese);}{\f638\fswiss\fcharset222\fprq2 Tahoma (Thai);}
  233. {\f669\fswiss\fcharset238\fprq2 Arial Narrow CE;}{\f670\fswiss\fcharset204\fprq2 Arial Narrow Cyr;}{\f672\fswiss\fcharset161\fprq2 Arial Narrow Greek;}{\f673\fswiss\fcharset162\fprq2 Arial Narrow Tur;}{\f676\fswiss\fcharset186\fprq2 Arial Narrow Baltic;}}
  234. {\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;
  235. \red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  236. \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \styrsid8745408 Normal;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\*
  237. \ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv 
  238. \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{\s15\ql \li0\ri0\sb240\sl-240\slmult0\widctlpar
  239. \tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f39\fs22\expnd-3\expndtw-15\lang1033\langfe1033\kerning22\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext15 \styrsid8745408 2a. French Subhead;}{
  240. \s16\ql \fi-187\li187\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext16 \slink25 \styrsid8745408 3c. Numbered;}{
  241. \s17\ql \li0\ri0\sl-320\slmult0\widctlpar\tx634\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs12\expnd-1\expndtw-5\cf5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext17 \styrsid8745408 6. Part No.;}{
  242. \s18\ql \li0\ri0\sl-460\slmult0\widctlpar\tx240\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f39\fs44\expnd-6\expndtw-30\lang1033\langfe1033\kerning42\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext18 \styrsid8745408 1. Section Head;}{
  243. \s19\ql \li0\ri-18\sb120\sl-240\slmult0\widctlpar\tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin-18\lin0\itap0 \b\f39\fs22\expnd-2\expndtw-10\lang1033\langfe1033\kerning22\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext19 \styrsid8745408 
  244. 2. LA Subhead;}{\s20\ql \li0\ri0\sb120\sl-220\slmult0\widctlpar\brdrt\brdrs\brdrw15 \tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\caps\f39\fs18\expnd-1\expndtw-5\lang1033\langfe1033\kerning16\cgrid\langnp1033\langfenp1033 
  245. \sbasedon0 \snext20 \styrsid8745408 4. LA Para Head;}{\s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 
  246. \sbasedon0 \snext21 \styrsid3164070 3d. Numbered-Sub;}{\*\cs22 \additive \ul\cf2 \sbasedon10 \styrsid284077 Hyperlink;}{\s23\ql \li0\ri360\sb60\sl220\slmult0\widctlpar\nooverflow\faroman\rin360\lin0\itap0 
  247. \f60\fs24\expnd-1\expndtw-5\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext23 \slink24 \styrsid7683718 3. LA Body;}{\*\cs24 \additive \f60\fs24\expnd-1\expndtw-5\cf1\lang1033\langfe1033\langnp1033\langfenp1033 
  248. \sbasedon10 \slink23 \slocked \styrsid7683718 3. LA Body Char;}{\*\cs25 \additive \f60\fs18\expnd-1\expndtw-5\cf1\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon24 \slink16 \slocked \styrsid7683718 3c. Numbered Char;}{\s26\ql \li0\ri0\widctlpar
  249. \tqc\tx4320\tqr\tx8640\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext26 \styrsid4611310 header;}{\s27\ql \li0\ri0\widctlpar
  250. \tqc\tx4320\tqr\tx8640\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext27 \styrsid4611310 footer;}{
  251. \s28\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f35\fs16\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext28 \ssemihidden \styrsid3691205 Balloon Text;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}
  252. {\*\listtable{\list\listtemplateid67698689\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li360\jclisttab\tx360\lin360 }
  253. {\listname ;}\listid617877172}{\list\listtemplateid67698689\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li360
  254. \jclisttab\tx360\lin360 }{\listname ;}\listid2141680725}}{\*\listoverridetable{\listoverride\listid2141680725\listoverridecount0\ls1}{\listoverride\listid617877172\listoverridecount0\ls2}}{\*\rsidtbl \rsid284077\rsid617931\rsid3164070\rsid3624506
  255. \rsid3691205\rsid4130661\rsid4611310\rsid5052969\rsid7683718\rsid8745408\rsid8989575\rsid10879502\rsid11819508\rsid12472282\rsid15430532\rsid15604113\rsid15888697}{\*\generator Microsoft Word 11.0.5329;}{\info
  256. {\title Microsoft Baseline Security Analyzer Tool}{\author dcorey}{\operator Nelson Araujo}{\creatim\yr2003\mo9\dy22\hr9\min33}{\revtim\yr2003\mo9\dy22\hr9\min33}{\printim\yr2003\mo9\dy12\hr16\min36}{\version2}{\edmins0}{\nofpages1}{\nofwords2374}
  257. {\nofchars13536}{\*\company Microsoft Corporation}{\nofcharsws15879}{\vern24683}}\margl1253\margr1253\margt810\margb1800 \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180
  258. \dghorigin1253\dgvorigin810\dghshow1\dgvshow1\jexpand\viewkind4\viewscale150\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct
  259. \asianbrkrule\nojkernpunct\rsidroot8745408 \fet0{\*\ftnsep \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid10879502 \chftnsep 
  260. \par }}{\*\ftnsepc \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid10879502 \chftnsepc 
  261. \par }}{\*\aftnsep \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid10879502 \chftnsep 
  262. \par }}{\*\aftnsepc \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid10879502 \chftnsepc 
  263. \par }}\sectd \psz1\linex0\headery0\footery850\sectdefaultcl\sftnbj {\footer \pard\plain \s17\ql \li0\ri0\sl-320\slmult0\widctlpar\tqr\tx9450\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  264. \fs12\expnd-1\expndtw-5\cf5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs18\cf0\insrsid3691205\charrsid3691205 09/12/03    59912.doc}{\fs18\cf0\insrsid15888697\charrsid3691205 \tab }{\f41\fs18\cf0\insrsid15888697\charrsid3691205 
  265. \par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}
  266. {\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8
  267. \pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \s18\ql \li0\ri0\sl-460\slmult0\widctlpar
  268. \tx240\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8745408 \b\f39\fs44\expnd-6\expndtw-30\lang1033\langfe1033\kerning42\cgrid\langnp1033\langfenp1033 {\f0\fs32\cgrid0\insrsid8745408 Microsoft Baseline Security Analyzer Tool}{
  269. \f0\fs32\cgrid0\insrsid617931 , version 1.2}{\f0\fs32\cgrid0\insrsid8745408 
  270. \par }{\f0\fs24\insrsid8745408 END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE}{\f0\fs24\kerning44\insrsid8745408 
  271. \par }\pard\plain \s19\ql \li0\ri-18\sb120\sl-240\slmult0\widctlpar\tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin-18\lin0\itap0\pararsid8745408 \b\f39\fs22\expnd-2\expndtw-10\lang1033\langfe1033\kerning22\cgrid\langnp1033\langfenp1033 {
  272. \insrsid8745408\charrsid8745408 IMPORTANT\emdash READ CAREFULLY: This Microsoft End-User License Agreement (\'93EULA\'94) is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation (\'93Microsoft\'94) for the}{
  273. \fs20\cf1\insrsid8745408\charrsid8745408  }{\cf1\insrsid8745408\charrsid8745408 Microsoft software identified above, which includes computer software and may include associated media, printed materials, and \'93online\'94 or electronic documentation }{
  274. \insrsid8745408\charrsid8745408 and Internet-based services }{\cf1\insrsid8745408\charrsid8745408 (collectively, \'93SOFTWARE\'94)}{\insrsid8745408\charrsid8745408 . }{\insrsid8745408  }{\insrsid8745408\charrsid8745408 
  275. An amendment or addendum to this EULA may accompany the SOFTWARE. BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA. IF YOU DO NOT AGREE TO THE TERMS OF THIS EULA, DO NOT INSTALL, COPY OR
  276.  OTHERWISE USE THE SOFTWARE.
  277. \par }\pard\plain \s20\ql \li0\ri0\sb120\sl-220\slmult0\widctlpar\brdrt\brdrs\brdrw15 \tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8745408 
  278. \b\caps\f39\fs18\expnd-1\expndtw-5\lang1033\langfe1033\kerning16\cgrid\langnp1033\langfenp1033 {\f0\fs20\insrsid8745408\charrsid4611310 Software LICENSE
  279. \par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4611310 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\f0\fs20\insrsid4611310\charrsid4611310 
  280. The SOFTWARE is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties.  }{\f0\fs20\insrsid15430532\charrsid4611310 
  281. \par }\pard\plain \s16\ql \fi-187\li187\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid8745408 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\b\fs20\insrsid4611310\charrsid4611310 
  282.  
  283. \par }{\b\fs20\insrsid7683718\charrsid4611310 1.\tab GRANT OF LICENSE.  }{\fs20\insrsid7683718\charrsid4611310 Microsoft grants you the following limited rights provided that you comply with all terms and conditions of this EULA:
  284. \par }\pard\plain \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid7683718 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs20\insrsid7683718\charrsid4611310 
  285. {\field{\*\fldinst SYMBOL 183 \\f "Symbol" \\s 10}{\fldrslt\f3\fs20}}}{\fs20\insrsid7683718\charrsid4611310 \tab }{\b\fs20\insrsid7683718\charrsid4611310 Installation and use.}{\fs20\insrsid7683718\charrsid4611310 
  286.   You may download, install and use the SOFTWARE on an unlimited number of computers, including workstations, terminals or other digital electronic devices (\'93Computers\'94
  287. ) residing on your premises that are running a validly licensed copy of one of the following Microsoft windows operating systems: Microsoft Windows NT 4.0, Windows 2000}{\fs20\insrsid12472282 , Windows XP}{\fs20\insrsid7683718\charrsid4611310  or Windows 
  288. }{\fs20\insrsid12472282 Server 2003}{\fs20\insrsid7683718\charrsid4611310  (\'93Windows OS Products\'94) for the sole purpose of analyzing the Windows OS Products for common security misconfigurations}{\fs20\insrsid8989575 
  289. ; and, if also installed on your Computer, analyzing Office}{\fs20\insrsid8989575\charrsid8989575  }{\fs20\insrsid8989575 2000, Office XP and Office 2003 for}{\fs20\insrsid15604113  other security misconfigurations}{\fs20\insrsid7683718\charrsid4611310 .
  290.  
  291. \par }\pard\plain \s16\ql \fi-187\li187\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid3164070 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\b\fs20\insrsid3164070\charrsid4611310 2.
  292. \tab DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. 
  293. \par }\pard\plain \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid3164070 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs20\insrsid3164070\charrsid4611310 
  294. {\field{\*\fldinst SYMBOL 183 \\f "Symbol" \\s 10}{\fldrslt\f3\fs20}}}{\fs20\insrsid3164070\charrsid4611310 \tab }{\b\fs20\insrsid3164070\charrsid4611310 Limitations on Reverse Engineering, Decompilation, and Disassembly.}{
  295. \fs20\insrsid3164070\charrsid4611310  You may not reverse engineer, decompile, or disassemble the SOFTWARE, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.
  296. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid3164070\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  297. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid3164070 {\b\fs20\insrsid3164070\charrsid4611310 Consent to Use of Data.}{
  298. \fs20\insrsid3164070\charrsid4611310 
  299.  You agree that Microsoft and its affiliates may collect and use technical information gathered in any manner as part of the product support services provided to you, if any, related to the SOFTWARE.  Microsoft may use this inf
  300. ormation solely to improve our products or to provide customized services or technologies to you.  Microsoft may disclose this information to others, but not in a form that personally identifies you.
  301. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid284077\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  302. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid3164070 {\b\fs20\insrsid284077\charrsid4611310 Download of XML FILE.  }{
  303. \fs20\insrsid284077\charrsid4611310 You agree that Microsoft may download }{\fs20\insrsid8989575 and install }{\fs20\insrsid284077\charrsid4611310 an XML file from Microsoft\rquote s web site, }{\field\flddirty{\*\fldinst {
  304. \fs20\insrsid284077\charrsid4611310  HYPERLINK "http://www.microsoft.com" }{\fs20\insrsid284077\charrsid4611310 {\*\datafield 
  305. 00d0c9ea79f9bace118c8200aa004ba90b0200000017000000120000007700770077002e006d006900630072006f0073006f00660074002e0063006f006d000000e0c9ea79f9bace118c8200aa004ba90b3400000068007400740070003a002f002f007700770077002e006d006900630072006f0073006f00660074002e00
  306. 63006f006d002f000000}}}{\fldrslt {\cs22\fs20\ul\cf2\insrsid284077\charrsid4611310 www.microsoft.com}}}{\fs20\insrsid284077\charrsid4611310 , to your Computers for use by the SOFTWARE.  }{\fs20\insrsid7683718\charrsid4611310 This}{
  307. \fs20\insrsid284077\charrsid4611310  XML file contains information on available Microsoft security bulletins and patch information and is used\~during the scan process\~to check your Computers for missing }{\fs20\insrsid15604113 security updates}{
  308. \fs20\insrsid284077\charrsid4611310  and service packs.  If this file is not downloaded from the Microsoft web site, the }{\fs20\insrsid15604113 security update}{\fs20\insrsid284077\charrsid4611310 
  309.  check can only be performed if a previously downloaded copy of the XML file is available on the local Computer.  No personal information is collected or sent from your\~Computers to Microsoft as part of this tool}{\fs20\insrsid7683718\charrsid4611310 .}{
  310. \fs20\insrsid284077 
  311. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid617931\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  312. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid617931 {\b\fs20\insrsid617931\charrsid4611310 Download }{\b\fs20\insrsid3624506 .EXE File}{
  313. \b\fs20\insrsid617931\charrsid4611310   }{\fs20\insrsid617931\charrsid4611310 You agree that Microsoft may download }{\fs20\insrsid8989575 and install }{\fs20\insrsid617931 an}{\fs20\insrsid3624506  }{\b\fs20\insrsid3624506\charrsid3624506 iexpress}{
  314. \fs20\insrsid3624506  package that contains }{\fs20\insrsid8989575 the}{\fs20\insrsid617931  Office Update Inventory Tool}{\fs20\insrsid617931\charrsid4611310  from Microsoft\rquote s web site, }{\field\flddirty{\*\fldinst {
  315. \fs20\insrsid617931\charrsid4611310  HYPERLINK "http://www.microsoft.com" }{\fs20\insrsid617931\charrsid4611310 {\*\datafield 
  316. 00d0c9ea79f9bace118c8200aa004ba90b0200000017000000120000007700770077002e006d006900630072006f0073006f00660074002e0063006f006d000000e0c9ea79f9bace118c8200aa004ba90b3400000068007400740070003a002f002f007700770077002e006d006900630072006f0073006f00660074002e00
  317. 63006f006d002f000000}}}{\fldrslt {\cs22\fs20\ul\cf2\insrsid617931\charrsid4611310 www.microsoft.com}}}{\fs20\insrsid617931\charrsid4611310 , to your Computers for use by the SOFTWARE.  This }{\b\fs20\insrsid3624506\charrsid3624506 iexpress}{
  318. \fs20\insrsid617931\charrsid4611310  file contains information on available Microsoft security bulletins and patch information and is used\~during the scan process\~to check your Computers for missing }{\fs20\insrsid8989575 security updates}{
  319. \fs20\insrsid617931\charrsid4611310  and service packs}{\fs20\insrsid3624506  for Office 2000, Office XP and Office 2003}{\fs20\insrsid617931\charrsid4611310 .  If this file is not downloaded from the Microsoft web site, }{\fs20\insrsid8989575 
  320. the security update check can only be performed if a previously }{\fs20\insrsid617931\charrsid4611310 downloaded copy of the }{\b\fs20\insrsid3624506\charrsid4130661 iexpress}{\fs20\insrsid617931\charrsid4611310  }{\fs20\insrsid8989575 
  321. by Microsoft Baseline Security Analyzer is available }{\fs20\insrsid617931\charrsid4611310 on the local Computer.  No personal information is collected or sent from your\~Computers to Microsoft as part of this tool.
  322. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid3164070\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  323. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid7683718 {\b\fs20\insrsid3164070\charrsid4611310 TRANSFER\emdash }{
  324. \b\i\fs20\insrsid3164070\charrsid4611310 Transfer to Third Party}{\fs20\insrsid3164070\charrsid4611310 
  325. .  The initial user of the SOFTWARE may make a one-time transfer of the SOFTWARE to another end user.  The transfer must include all component parts, media, printed materials, this EULA, and if applicable, the Certificate of Authenticity.  
  326. The transfer may not be an indirect transfer, such as a consignment.  The end user receiving t}{\fs20\insrsid5052969\charrsid4611310 he transferred SOFTWARE }{\fs20\insrsid3164070\charrsid4611310 
  327. must agree to all of the EULA terms prior to installing, copying or otherwise using the SOFTWARE}{\fs20\insrsid5052969\charrsid4611310 . }{\b\i\fs20\insrsid5052969\charrsid4611310 No Rental.}{\fs20\insrsid5052969\charrsid4611310 
  328.  You may not rent, lease, lend, sell, sublicense the SOFTWARE, or provide commercial hosting services with the SOFTWARE, to any third parties.}{\fs20\insrsid3164070\charrsid4611310 
  329. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid15430532\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  330. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid7683718 {\b\fs20\insrsid15430532\charrsid4611310 UPGRADES. }{\fs20\insrsid15430532\charrsid4611310 
  331. To use SOFTWARE labeled as an upgrade, you must first be licensed for the product identified by Microsoft as eligible for the upgrade. After upgrading, you may no longer use the product that formed the basis for your upgrade eligibility.
  332. \par {\pntext\pard\plain\s21 \f3\fs20\expnd-1\expndtw-5\lang1033\langfe1033\langfenp1033\insrsid15430532\charrsid4611310 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \s21\ql \fi-180\li360\ri0\sb60\sl-200\slmult0\widctlpar\jclisttab\tx360{\*\pn 
  333. \pnlvlblt\ilvl0\ls1\pnrnot0\pnf3\pnstart1\pnindent360\pnsp120\pnhang {\pntxtb \'b7}}\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin360\itap0\pararsid7683718 {\b\fs20\insrsid15430532\charrsid4611310 ADDITIONAL SOFTWARE/SERVICES.  }{
  334. \fs20\insrsid15430532\charrsid4611310 This EULA applies to additional software and updates of the SOFTWARE, including without limitation supplements, service packages, hot fixes, or add-on components (collectively \'93Supplements\'94
  335. ) that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the SOFTWARE, unless we provide other terms along with such Supplements.
  336. \par }\pard\plain \s16\ql \fi-187\li187\ri0\sb60\sl-200\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid8745408 \fs18\expnd-1\expndtw-5\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\b\fs20\insrsid15430532\charrsid4611310 3}
  337. {\b\fs20\insrsid8745408\charrsid4611310 .\tab RESERVATION OF RIGHTS AND OWNERSHIP.  }{\fs20\insrsid8745408\charrsid4611310 
  338. This EULA grants you rights solely with regard to your use of the SOFTWARE. Microsoft reserves all rights not expressly granted to you in this EULA.  Microsoft or its suppliers own the title, copyright, and other intellec
  339. tual property rights in the SOFTWARE. }{\fs20\insrsid4611310\charrsid4611310 The SOFTWARE is licensed, not sold.}{\fs20\insrsid8745408\charrsid4611310 
  340. \par }{\b\fs20\insrsid15430532\charrsid4611310 4.}{\fs20\insrsid15430532\charrsid4611310 \tab }{\b\caps\fs20\insrsid15430532\charrsid4611310 Not for Resale Software}{\fs20\insrsid15430532\charrsid4611310 .  SOFTWARE identified as \'93Not for Resale\'94 or \'93
  341. NFR,\'94 may not be resold, transferred or used for any purpose other than demonstration, test or evaluation.
  342. \par }{\b\fs20\insrsid15430532\charrsid4611310 5}{\fs20\insrsid15430532\charrsid4611310 .\tab }{\b\caps\fs20\insrsid15430532\charrsid4611310 Academic Edition Software}{\fs20\insrsid15430532\charrsid4611310 .  To use SOFTWARE identified as \'93Academic Edition
  343. \'94 or \'93AE,\'94 you must be a \'93Qualified Educational User\'94 to use such edition.  For qualification-related questions, please contact the Microsoft Sales Information Center/One Microsoft
  344.  Way/Redmond, WA 98052-6399 or the Microsoft subsidiary serving your country.
  345. \par }\pard \s16\ql \fi-187\li187\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid8745408 {\b\fs20\insrsid15430532\charrsid4611310 6}{\b\fs20\insrsid8745408\charrsid4611310 . U.S. GOVERNMENT RIGHTS.}{
  346. \fs20\insrsid8745408\charrsid4611310   All SOFTWARE provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial license rig
  347. hts and restrictions described elsewhere herein. All SOFTWARE provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided with \'93Restricted Rights\'94
  348.  as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987)or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.
  349. \par  }{\b\fs20\insrsid15430532\charrsid4611310 7}{\b\fs20\insrsid8745408\charrsid4611310 .}{\fs20\insrsid8745408\charrsid4611310  }{\b\fs20\insrsid8745408\charrsid4611310 EXPORT RESTRICTIONS}{\fs20\insrsid8745408\charrsid4611310 
  350. . You acknowledge that the SOFTWARE is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to these products, including the
  351.  U.S. Export Administration Regulations, as well as end-user, end-use and destination restrictions issued by U.S. and other governments. For additional information on exporting Microsoft products, see http://www.microsoft.com/exporting/.}{
  352. \fs20\insrsid8745408\charrsid4611310 
  353. \par }\pard \s16\ql \fi-180\li180\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin180\itap0\pararsid8745408 {\b\fs20\insrsid15430532\charrsid4611310 8}{\fs20\insrsid8745408\charrsid4611310 .  }{\b\fs20\ul\insrsid8745408\charrsid4611310 
  354. DISCLAIMER OF WARRANTIES}{\b\fs20\insrsid8745408\charrsid4611310 .  TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE }{\b\fs20\insrsid8745408\charrsid4611310 SOFTWARE}{\b\fs20\insrsid8745408\charrsid4611310 
  355.  AND SUPPORT SERVICES (IF ANY) }{\b\i\fs20\insrsid8745408\charrsid4611310 AS IS AND WITH ALL FAULTS}{\b\fs20\insrsid8745408\charrsid4611310 , AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR S
  356. TATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EF
  357. FORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE }{\b\fs20\insrsid8745408\charrsid4611310 SOFTWARE}{\b\fs20\insrsid8745408\charrsid4611310 
  358. , AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE O
  359. F THE SOFTWARE.  ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE. 
  360. \par }\pard \s16\ql \fi-187\li187\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid8745408 {\b\fs20\insrsid15430532\charrsid4611310 9}{\b\fs20\insrsid8745408\charrsid4611310 .  }{\b\fs20\ul\insrsid8745408\charrsid4611310 
  361. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES}{\b\fs20\insrsid8745408\charrsid4611310 .  TO 
  362. THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONF
  363. I
  364. DENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OU
  365. T
  366.  OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE
  367. ,
  368.  OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICR
  369. OSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  370. \par }{\b\fs20\insrsid15430532\charrsid4611310 10}{\b\fs20\insrsid8745408\charrsid4611310 . }{\b\fs20\ul\insrsid8745408\charrsid4611310 LIMITATION OF LIABILITY AND REMEDIES}{\b\fs20\insrsid8745408\charrsid4611310 
  371. .  NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR }{\b\fs20\insrsid8745408\charrsid4611310 
  372. ANY OTHER THEORY IN LAW OR IN EQUITY}{\b\fs20\insrsid8745408\charrsid4611310 ), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACT
  373. UAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE }{\b\fs20\insrsid8745408\charrsid4611310 SOFTWARE}{\fs20\insrsid8745408\charrsid4611310  }{\b\fs20\insrsid8745408\charrsid4611310 
  374.  OR US$5.00.  THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.}{\fs20\insrsid8745408\charrsid4611310 
  375. \par }\pard \s16\ql \fi-180\li180\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin180\itap0\pararsid8745408 {\b\fs20\insrsid8745408\charrsid4611310 1}{\b\fs20\insrsid15430532\charrsid4611310 1}{\b\fs20\insrsid8745408\charrsid4611310 
  376. . APPLICABLE LAW.}{\fs20\insrsid8745408\charrsid4611310  If you acquired this SOFTWARE in the United States, this EULA is governed by the laws of the State of Washington. If you acquired this SOFTWARE in Canada, unless expressly prohibited by local law, 
  377. this EULA is governed by the laws in force in the Province of Ontario, Canada, and, in respect of any dispute which may arise hereunder, you consent to the jurisdiction of the federal and provincial courts sitting in Toronto, Ontario. If this SOFTWARE was
  378.  acquired outside the United States, then local law may apply. 
  379. \par }\pard \s16\ql \fi-187\li187\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin187\itap0\pararsid8745408 {\b\fs20\insrsid8745408\charrsid4611310 1}{\b\fs20\insrsid15430532\charrsid4611310 2}{\b\fs20\insrsid8745408\charrsid4611310 
  380. . ENTIRE AGREEMENT.}{\fs20\insrsid8745408\charrsid4611310  }{\b\fs20\insrsid8745408\charrsid4611310 
  381. This EULA (including any addendum or amendment to this EULA which is included with the SOFTWARE) is the entire agreement between you and Microsoft relating to the SOFTWARE
  382.  and support services (if any), and it supersedes all prior or contemporaneous oral or written communications, proposals, and representations with respect to the SOFTWARE or any other subject matter covered by this EULA. To the extent the terms of any Mic
  383. rosoft policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control.}{\fs20\insrsid8745408\charrsid4611310 
  384. \par }{\b\fs20\insrsid8745408\charrsid4611310 1}{\b\fs20\insrsid15430532\charrsid4611310 3}{\b\fs20\insrsid8745408\charrsid4611310 . QUESTIONS?}{\fs20\insrsid8745408\charrsid4611310 
  385.  Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please cont
  386. act the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399. 
  387. \par }\pard\plain \s15\ql \li0\ri0\sb240\widctlpar\brdrt\brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\rtlgutter\itap0\pararsid8745408 \b\f39\fs22\expnd-3\expndtw-15\lang1033\langfe1033\kerning22\cgrid\langnp1033\langfenp1033 {
  388. \f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 Si vous avez acquis votre produit Microsoft au CANADA, la garantie limit\'e9e suivante vous concerne\~: }{\f0\fs20\cf6\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 
  389.  
  390. \par }\pard \s15\ql \li0\ri0\sb240\sl-240\slmult0\widctlpar\tx576\tx1152\tx1728\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8745408 {\b0\f0\fs20\ul\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 {\*\bkmkstart _Ref460641200}D\'c9
  391. NI DE GARANTIES}{\b0\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 .  DANS LA MESURE MAXIMALE PERMISE PAR LES LOIS APPLICABLES, LE LOGICIEL ET LES SERVICES DE SOUTIEN TECHNIQUE (LE CAS \'c9CH\'c9ANT) SONT FOURNIS }{
  392. \b0\i\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 TELS QUELS}{\b0\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310  }{\b0\i\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 
  393. ET AVEC TOUS LES D\'c9FAUTS }{\b0\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 PAR MICROSOFT ET SES FOURNISSEURS, LESQUELS PAR LES PR\'c9SENTES D\'c9NIENT TOUTES AU
  394. TRES GARANTIES ET CONDITIONS EXPRESSES, IMPLICITES OU EN VERTU DE LA LOI, NOTAMMENT, MAIS SANS LIMITATION, (LE CAS \'c9CH\'c9ANT) LES GARANTIES, DEVOIRS OU CONDITIONS IMPLICITES DE QUALIT\'c9 MARCHANDE, D\rquote ADAPTATION \'c0 UNE FIN PARTICULI\'c8
  395. RE,  DE FIABILIT\'c9 OU DE DISPONIBILIT\'c9, D\rquote EXACTITUDE OU D\rquote EXHAUSTIVIT\'c9 DES R\'c9PONSES, DES R\'c9SULTATS, DES EFFORTS D\'c9PLOY\'c9S SELON LES R\'c8GLES DE L\rquote ART, D\rquote ABSENCE DE VIRUS ET D\rquote ABSENCE DE N\'c9
  396. GLIGENCE, LE TOUT \'c0 L\rquote \'c9GARD DU LOGICIEL ET DE LA PRESTATION OU DE L\rquote OMISSION DE LA  PRESTATION DES SERVICES DE SOUTIEN TECHNIQUE OU \'c0 L\rquote \'c9GARD DE LA FOURNITURE OU DE L\rquote 
  397. OMISSION DE LA FOURNITURE DE TOUS AUTRES SERVICES, RENSEIGNEMENTS, LOGICIELS, ET CONTENU QUI S\rquote Y RAPPORTE  GR\'c2CE AU  LOGICIEL OU PROVENANT AUTREMENT DE L\rquote UTILISATION DU LOGICIEL . PAR AILLEURS, IL N\rquote 
  398. Y A AUCUNE GARANTIE OU CONDITION QUANT AU TITRE DE PROPRI\'c9T\'c9, \'c0 LA JOUISSANCE OU LA POSSESSION PAISIBLE, \'c0 LA CONCORDANCE \'c0 UNE DESCRIPTION NI QUANT \'c0 UNE ABSENCE DE CONTREFA\'c7ON CONCERNANT LE LOGICIEL.{\*\bkmkend _Ref460641200}
  399. \par }{\b0\f0\fs20\ul\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 {\*\bkmkstart _Ref460641236}{\*\bkmkstart _Ref460644292}EXCLUSION DES DOMMAGES ACCESSOIRES, INDIRECTS ET DE CERTAINS AUTRES DOMMAGES}{
  400. \b0\f0\fs20\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 . DANS LA MESURE MAXIMALE PERMISE PAR LES LOIS APPLICABLES, EN AUCUN CAS MICROSOFT OU SES FOURNISSEURS NE SERONT RESPONSABLES DES DOMMAGES SP\'c9CIAUX, INCIDENTS, PUNITIFS,CONS\'c9
  401. CUTIFS, ACCESSOIRES OU INDIRECTS DE QUELQUE NATURE QUE CE SOIT (NOTAMMENT, LES DOMMAGES \'c0 L\rquote \'c9GARD DU MANQUE \'c0 GAGNER OU DE LA DIVULGATION DE RENSEIGNEMENTS CONFIDENTIELS OU AUTRES, DE LA PERTE D\rquote 
  402. EXPLOITATION, DE BLESSURES CORPORELLES, DE LA VIOLATION DE LA VIE PRIV\'c9E, DE L\rquote OMISSION DE REMPLIR TOUT DEVOIR, Y COMPRIS D\rquote AGIR DE BONNE FOI OU D\rquote EXERCER UN SOIN RAISONNABLE, DE LA N\'c9GLIGENCE ET DE TOUTE AUTRE PERTE P\'c9
  403. CUNIAIRE OU AUTRE PERTE DE QUELQUE NATURE QUE CE SOIT) SE RAPPORTANT DE QUELQUE MANI\'c8RE QUE CE SOIT \'c0 L\rquote UTILISATION DU LOGICIEL OU \'c0 L\rquote INCAPACIT\'c9 DE S\rquote EN SERVIR, \'c0 LA PRESTATION OU \'c0 L\rquote 
  404. OMISSION DE LA PRESTATION DE SERVICES DE SOUTIEN TECHNIQUE }{\b0\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 OU \'c0 LA FOURNITURE OU \'c0 L\rquote 
  405. OMISSION DE LA FOURNITURE DE TOUS AUTRES SERVICES, RENSEIGNEMENTS, LOGICIELS, ET CONTENU QUI S\rquote Y RAPPORTE  GR\'c2CE AU LOGICIEL OU PROVENANT AUTREMENT DE L\rquote UTILISATION DU LOGICIEL }{
  406. \b0\f0\fs20\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 OU AUTREMENT AUX TERMES DE TOUTE DISPOSITION DE LA PR\'c9SENTE CONVENTION OU RELATIVEMENT \'c0 UNE TELLE DISPOSITION, M\'caME EN CAS DE FAUTE, DE D\'c9LIT CIVIL (Y COMPRIS LA N\'c9
  407. GLIGENCE), DE FAUSSE REPR\'c9SENTATION, DE RESPONSABILIT\'c9 STRICTE, DE VIOLATION DE CONTRAT OU DE VIOLATION DE GARANTIE DE MICROSOFT OU DE TOUT FOURNISSEUR ET M\'caME SI MICROSOFT OU TOUT FOURNISSEUR A \'c9T\'c9 AVIS\'c9 DE LA POSSIBILIT\'c9
  408.  DE TELS DOMMAGES.{\*\bkmkend _Ref460641236}{\*\bkmkend _Ref460644292}
  409. \par }{\b0\f0\fs20\ul\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 LIMITATION DE RESPONSABILIT\'c9 ET RECOURS}{\b0\f0\fs20\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 . MALGR\'c9 LES DOMMAGES QUE
  410.  VOUS PUISSIEZ SUBIR POUR QUELQUE MOTIF QUE CE SOIT (NOTAMMENT, MAIS SANS LIMITATION, TOUS LES DOMMAGES SUSMENTIONN\'c9S ET TOUS LES DOMMAGES DIRECTS OU G\'c9N\'c9RAUX FOND\'c9S SUR LA RESPONSABILIT\'c9 CONTRACTUELLE OU TOUTE AUTRE TH\'c9
  411. ORIE EN DROIT OU EN \'c9QUIT\'c9), LA SEULE RESPONSABILIT\'c9 DE MICROSOFT ET DE L\rquote UN OU L\rquote AUTRE DE SES FOURNISSEURS AUX TERMES DE TOUTE DISPOSITION DE LA PR\'c9SENTE CONVENTION ET VOTRE RECOURS EXCLUSIF \'c0 L\rquote \'c9
  412. GARD DE TOUT CE QUI PR\'c9C\'c8DE SE LIMITE AU PLUS \'c9LEV\'c9 DES DOMMAGES R\'c9E\~LS QUE VOUS AVEZ SUBIS EN VOUS FIANT RAISONNABLEMENT SUR LE LOGICIEL JUSQU\rquote \'c0 CONCURRENCE DU MONTANT QUE VOUS AVEZ R\'c9ELLEMENT PAY\'c9 POUR LE LOGICIEL OU 5,00
  413. \~$US. LES LIMITES, EXCLUSIONS ET D\'c9NIS QUI PR\'c9C\'c8DENT (Y COMPRIS LES CLAUSES CI-DESSUS), S\rquote APPLIQUENT DANS LA MESURE MAXIMALE PERMISE PAR LES LOIS APPLICABLES, M\'caME SI TOUT RECOURS N\rquote ATTEINT PAS SON BUT ESSENTIEL.
  414. \par }{\f0\fs20\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 \'c0 moins que cela ne soit prohib\'e9 par le droit local applicable, la pr\'e9sente Convention est r\'e9gie par les lois de la province d\rquote Ontario, Canada. En cas de tout diff
  415. \'e9rend qui pourrait survenir en vertu des pr\'e9sentes, vous consentez \'e0 la comp\'e9tence des tribunaux f\'e9d\'e9raux et provinciaux si\'e9geant \'e0 Toronto, dans  la province d\rquote Ontario.
  416. \par Au cas o\'f9 vous auriez des questions concernant cette licence ou que vous d\'e9siriez vous mettre en rapport avec Microsoft pour quelque raison que ce soit, veuillez utiliser l\rquote 
  417. information contenue dans le Logiciel pour contacter la filiale de Microsoft desservant votre pays, ou visitez Microsoft sur le }{\f0\fs20\cf1\insrsid8745408\charrsid4611310 World Wide Web \'e0 }{\field\flddirty{\*\fldinst {
  418. \f0\fs20\cf1\insrsid8745408\charrsid4611310  HYPERLINK "http://www.microsoft.com" }{\f0\fs20\cf1\insrsid8745408\charrsid4611310 {\*\datafield 
  419. 00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b3400000068007400740070003a002f002f007700770077002e006d006900630072006f0073006f00660074002e0063006f006d002f000000}}}{\fldrslt {\f0\fs20\ul\cf2\insrsid8745408\charrsid4611310 
  420. http://www.microsoft.com}}}{\f0\fs20\lang1036\langfe1033\langnp1036\insrsid8745408\charrsid4611310 .
  421. \par }\pard \s15\ql \li0\ri0\sb240\widctlpar\brdrt\brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\rtlgutter\itap0\pararsid8745408 {\f0\fs20\lang3084\langfe1033\langnp3084\insrsid8745408\charrsid4611310 
  422. \par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \f60\fs24\cf1\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs20\insrsid8745408\charrsid4611310 
  423. \par }}ScrollableText[TITLE]License Agreement[TEXT]&Print[PostVerifyRequirementsRun]InternetExplorerMissingIEMissingTextNOT InternetExplorerMissing[TEXT]Internet Explorer 5.01 or greater is not installed. Click on the button below to obtain the latest available version of Internet Explorer.IEOKText[TEXT]Internet Explorer 5.01 or greater is installed.IEButtonXMLParserMissingXMLMissingTextNOT XMLParserMissing[TEXT]MSXML Parser 3.0 or greater is not installed. Click on the button below to obtain the latest available version of MSXML.XMLOKText[TEXT]MSXML Parser 3.0 or greater is installed.XMLButton[TEXT]Download &Internet ExplorerCompBadText[TEXT]One or more required components are missing. Please install the missing components before continue.[TEXT]Install components required to run[TITLE]Verify System Requirements[TEXT]Download MS&XML ParserConfirmInstallOutOfDiskSpace = 1OutOfDiskSpace <> 1[TEXT]Select a folder where the application will be installed.Text19[TEXT]Setup will install the files for [MyProductName] in the following folder. To install into a different folder, click the Browse button, and select another folder. You can choose not to install [MyProductName] by clicking Cancel to exit setup.Text42{&MSSansSerif8}[INSTALLDIR]InstallDirNotEnoughSpaceNotice[BOLD]There is not enough disk space in the selected folder or on the system to install [MyProductName]. Setup requires 10Mb on your hard drive to install. Please choose another installation location or free enough space before continuing.Bitmap23[TEXT]Destination FolderGroupBoxLine7[TITLE]Destination Folder[_BrowseProperty]BrowseButtonBrowse[TEXT]B&rowseLine17NOT InstallPathTooBigSetTargetPathPathEditTailResetComboTextCombo[TEXT]&Look in:DirectoryListUpUpDirectoryComboDirectoryListNewNewFolderUp one level|upCreate new folder|folderTailTextDirectoryList[TITLE]Change Current Destination Folder[TEXT]Browse to the destination folder[TEXT]&Folder name:Install[Operation][TEXT]&Install[TEXT]Click Install to start application installation. Press Back to review your selections.NOT (UPGMBSA OR UPGMBSA0 OR UPGMBSA1)UpgradeNotice[BOLD]WARNING: You have an older version of [MyProductName] installed. This installation will upgrade your existing [MyProductName] installation.[TITLE]Start Installation[TEXT]Click Install to start application installationMModeType = "Repair"ocmusReinstallModeMaintenanceDialogRepairDialogMModeType = "Remove"UninstallDialogMaintGroup[TITLE]Application Maintenance[TEXT]Select the maintenance operation to perform.Line39Bitmap25Line8repairuninstALL[TEXT]&Uninstall[TEXT]Current Installation Folder[TEXT][INSTALLDIR]Text43[TEXT]This will remove [MyProductName] from your machine. Are you sure you want to continue?Texta[TEXT]Click the Uninstall button to remove the application. Click the Back button for more options. Click the Cancel button to exit the uninstall process.Text2a[TITLE]Uninstall Product[TEXT]Click the Uninstall button to remove the applicationReinstall[TEXT]&Repair[TEXT]This will repair [MyProductName] on your machine. Are you sure you want to continue?[TEXT]Click the Repair button to repair the application. Click the Back button for more options. Click the Cancel button to exit the repair process.[TITLE]Repair Product[TEXT]Click the Repair button to repair the application[MModeType]UpgradeDialog[UpgradeStarted][TEXT]&Upgrade[TEXT]This will upgrade [MyProductName] on your machine. Are you sure you want to continue?[TEXT]Upgrade FromUpgradeFromBox[TEXT][UpgradeFrom]UpgradeFromText[TEXT]New VersionUpgradeToBox[BOLD][UpgradeTo]UpgradeToTextInstallDirBoxInstallDirText[TEXT]Click the Upgrade button to upgrade the application. Click the Cancel button to exit the upgrade process.[TEXT]WARNING: Interrupting the upgrade once started may corrupt the installation or force the product to be uninstalled.UpgradeWarn[TITLE]Upgrade Product[TEXT]Click the Upgrade button to upgrade the applicationmbsaExitDialog[TEXT][MyProductName] Setup has completed successfully.[TEXT][MyProductName] has been removed from your computer.[TEXT][MyProductName] Setup has successfully repaired your installation.MModeType <> "Upgrade" OR NOT Installed[TEXT][MyProductName] Setup has successfully updated your installation.TextStyleFaceNameSizeColorStyleBitsName of the style. The primary key of this table. This name is embedded in the texts to indicate a style change.A long integer indicating the color of the string in the RGB format (Red, Green, Blue each 0-255, RGB = R + 256*G + 256^2*B).A string indicating the name of the font used. Required. The string must be at most 31 characters long.The size of the font used. This size is given in our units (1/12 of the system font height). Assuming that the system font is set to 12 point size, this is equivalent to the point size.A combination of style bits.ArialArial14Arial8MS Sans SerifMSSansSerif8MSSansSerif8boldRadioButtonThe vertical coordinate of the upper left corner of the bounding rectangle of the radio button.The visible title to be assigned to the radio button.A named property to be tied to this radio button. All the buttons tied to the same property become part of the same group.The height of the button.The width of the button.The horizontal coordinate of the upper left corner of the bounding rectangle of the radio button.The value string associated with this button. Selecting the button will set the associated property to this value.The help strings used with the button. The text is optional.[TEXT]I &do not accept the license agreement[TEXT]I &accept the license agreement[TEXT]&Reinstall or Repair
  424. Restore [MyProductName] to its original state.[TEXT]&Uninstall
  425. Remove [MyProductName] from this computer.ErrorInteger error number, obtained from header file IError(...) macros.Error formatting template, obtained from user ed. or localizers.Template{{Fatal error: }}InstallExecuteSequenceName of action to invoke, either in the engine or the handler DLL.Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData.Number that determines the sort order in which the actions are to be executed.  Leave blank to suppress action.InstallUISequenceAdminExecuteSequenceAdminUISequenceAdvtExecuteSequenceAdvtUISequenceNOT ((NEWMBSA OR NEWMBSA0) OR Downgrade) AND NOT InstallRunningLaunchConditionsValidateProductIDFindRelatedProducts(NEWMBSA OR NEWMBSA0) OR DowngradeInstallRunningCostInitializeFileCostCostFinalizeInstalled AND NOT UpgradeInstalled AND UpgradeNOT Installed AND NOT Upgrade AND NOT UpgradeSilentExecuteActionLocalized description displayed in progress dialog and log when action is executing.Name of action to be described.Optional localized format template used to format action data records for display during action execution.AdvertiseAPPS_TESTAppSearchCCP_TESTCCPSearchNOT CCP_SUCCESS And CCP_TESTRMCCPSearchSetODBCFoldersInstallValidateRemoveExistingProductsInstallInitializeAllocateRegistrySpaceProcessComponentsUnpublishComponentsUnpublishFeaturesVersionNTStopServicesDeleteServicesUnregisterComPlusSelfUnregModulesUnregisterTypeLibrariesRemoveODBCUnregisterFontsRemoveRegistryValuesUnregisterClassInfoUnregisterExtensionInfoUnregisterProgIdInfoUnregisterMIMEInfoRemoveIniValuesRemoveShortcutsRemoveEnvironmentStringsRemoveDuplicateFilesRemoveFilesRemoveFoldersCreateFoldersMoveFilesInstallFilesDuplicateFilesPatchFilesBindImageCreateShortcutsRegisterClassInfoRegisterExtensionInfoRegisterProgIdInfoRegisterMIMEInfoWriteRegistryValuesWriteIniValuesWriteEnvironmentStringsRegisterFontsInstallODBCRegisterTypeLibrariesRegisterComPlusSelfRegModulesRegisterUserRegisterProductPublishComponentsPublishFeaturesPublishProductInstallFinalizeInstallAdminPackageBinaryUnique key identifying the binary data.The unformatted binary data.side16.orgtop16.orgside16side16btop16bmexclamPrimary key. Name of the icon file.Binary stream. The binary icon data in PE (.DLL or .EXE) or icon (.ICO) format.Could not access network location [2].There is not enough disk space on the volume '[2]' to continue the install with recovery enabled. [3] KB are required, but only [4] KB are available. Click Ignore to continue the install without saving recovery information, click Retry to check for available space again, or click Cancel to quit the installation.The product '[2]' is already installed, preventing the installation of this product.  The two products are incompatible.The file [2][3] is being held in use{ by the following process: Name: [4], Id: [5], Window Title: '[6]'}.  Close that application and retry.Are you sure you want to cancel?Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB.  Free some disk space and retry.User '[2]' has previously initiated an install for product '[3]'.  That user will need to run that install again before they can use that product.User '[2]' has previously initiated an install for product '[3]'.  That user will need to run that install again before they can use that product.  Your current install will now continue.Error accessing secured data. Please make sure the Windows Installer is configured properly and try the install again.Another installation is in progress. You must complete that installation before continuing this one.Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.Could not read security information for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not get sub key names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not get value names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not write value [2] to key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not read value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not delete key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not delete value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not open key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not create key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. There was an error creating a temporary file that is needed to complete this installation.{{  Folder: [3]. System error code: [2]}}The cabinet file '[2]' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.The file '[2]' cannot be installed because the file cannot be found in cabinet file '[3]'. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.Failed to correctly patch [2] file: CRC error.Failed to correctly move [2] file: CRC error.Failed to correctly copy [2] file: CRC error.A file that is required cannot be installed because the cabinet file [2] has an invalid digital signature.  This may indicate that the cabinet file is corrupt.{{  Error [3] was returned by WinVerifyTrust.}}A file that is required cannot be installed because the cabinet file [2] is not digitally signed.  This may indicate that the cabinet file is corrupt.Error applying patch to file [2].  It has probably been updated by other means, and can no longer be modified by this patch.  For more information contact your patch vendor.  {{System Error: [3]}}Invalid Drive: [2]Error getting file security: [3] GetLastError: [2]'[2]' is not a valid short file name.The folder path '[2]' contains an invalid character.The folder path '[2]' contains words that are not valid in folder paths.A portion of the folder path '[2]' is invalid.  It is either empty or exceeds the length allowed by the system.The Installer has insufficient privileges to modify this file: [2].The specified path is too long: [2]A network error occurred while attempting to open the source file cabinet: [2]A network error occurred while attempting to create the directory: [2]An error occurred while attempting to create the directory: [2]A network error occurred while attempting to read from the file: [2]Unable to write to the specified folder: [2].The specified path '[2]' is unavailable.The volume [2] is currently unavailable.  Please select another.Cannot create the directory '[2]'.  A file with this name already exists.  Please rename or remove the file and click retry, or click Cancel to exit.Source file not found{{(cabinet)}}: [2].  Verify that the file exists and that you can access it.Error writing to file: [3]. {{ System error [2].}}  Verify that you have access to that directory.Error reading from file: [3]. {{ System error [2].}}  Verify that the file exists and that you can access it.Source file not found: [2].  Verify that the file exists and that you can access it.There is not enough disk space to install this file: [2].  Free some disk space and click Retry, or click Cancel to exit.Another application has exclusive access to the file '[2]'.  Please shut down all other applications, then click Retry.Error reading from file [2]. {{ System error [3].}} Verify that the file exists and that you can access it.Error writing to file: [2].  Verify that you have access to that directory.The installer has insufficient privileges to access this directory: [2].  The installation cannot continue.  Log on as administrator or contact your system administrator.Please insert the disk: [2]Cannot create the file '[2]'.  A directory with this name already exists.  Cancel the install and try installing to a different location.Error reading from file: [2]. {{ System error [3].}}  Verify that the file exists and that you can access it.{[ProductName] }Setup failed.{[ProductName] }Setup completed successfully.Preparing to remove older versions of this application...Removing older versions of this application...Gathering required information...Please wait while Windows configures [ProductName]Installer stopped prematurely.Installer is no longer responding.Out of memory. Shut down other applications before retrying.Time remaining: {[1] minutes }{[2] seconds}Action ended [Time]: [1]. Return value [2].Action start [Time]: [1].=== Logging stopped: [Date]  [Time] ====== Logging started: [Date]  [Time] ===Message type: [1], Argument: [2]{[2]}{, [3]}{, [4]}[ProductName]Action [Time]: [1]. [2]{{Disk full: }}The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is [1]. {{The arguments are: [2], [3], [4]}}Info [1]. Warning [1]. {{Error [1]. }}Key: [1], Name: [2], Value: [3]Writing system registry valuesWriting INI files valuesUnregistering type librariesUnregistering program identifiersUnregistering MIME infoUnregistering fontsUnregistering extension serversAppId: [1]{{, AppType: [2]}}Unregistering COM+ Applications and ComponentsUnregister Class serversUnpublishing product informationUnpublishProductUnpublishing Product FeaturesUnpublishing Qualified ComponentsRemoving moved filesUnmoveFilesStopping servicesStarting servicesStartServicesInitializing ODBC directoriesUnregistering modulesFile: [1], Folder: [2]Registering modulesRemoving backup filesRollbackCleanupRolling back action:RollbackRemoving shortcutsKey: [1], Name: [2]Removing system registry valuesRemoving ODBC componentsFile: [1],  Section: [2],  Key: [3], Value: [4]Removing INI files entriesRemoving foldersRemoving files[MBSARemoveMessage]Removing applicationsName: [1], Value: [2], Action [3]Updating environment stringsFile: [1], Directory: [9]Removing duplicated filesRegistering userLibID: [1]Registering type librariesProgId: [1]Registering program identifiersRegistering productMIME Content Type: [1], Extension: [2]Registering MIME infoFont: [1]Registering fontsExtension: [1]Registering extension serversAppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}Registering COM+ Applications and ComponentsClass Id: [1]Registering Class serversPublishing product informationFeature: [1]Publishing Product FeaturesComponent ID: [1], Qualifier: [2]Publishing Qualified ComponentsUpdating component registrationFile: [1],  Directory: [2],  Size: [3]Patching filesMoving filesApplication: [1]Migrating feature states from related applicationsMigrateFeatureStatesEvaluating launch conditionsValidating installService: [2]Installing new servicesInstallServicesFile: [1],  Dependencies: [2]Installing system catalogInstallSFPCatalogFileInstalling ODBC componentsCopying new filesFile: [1], Directory: [9], Size: [6]Copying network install files[1]Generating script operations for action:GenerateScriptFound application: [1]Searching for related applicationsFile: [1],  Directory: [9],  Size: [6]Creating duplicate filesService: [1]Deleting servicesShortcut: [1]Creating shortcutsFolder: [1]Creating foldersComputing space requirementsSearching for qualifying productsFile: [1]Binding executablesProperty: [1], Signature: [2]Searching for installed applicationsFree space: [1]Allocating registry spaceAdvertising application3.87.0.1166.0.8168.011.0.0.562611.0.5717.0Could not find any previously installed compliant products on the machine for installing this product.An error occurred while applying security settings. [2] is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install. {{Unable to locate the user's SID, system error [3]}}The key [2] is not valid.  Verify that you entered the correct key.The installer must restart your system before configuration of [2] can continue.  Click Yes to restart now or No if you plan to manually restart later.You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to manually restart later.An installation for [2] is currently suspended.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?A previous installation for this product is in progress.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?An installation package for the product [2] cannot be found. Try the installation again using a valid copy of the installation package '[3]'.Installation completed successfully.Installation failed.Product: [2] -- [3]You may either restore your computer to its previous state or continue the install later. Would you like to restore?An error occurred while writing installation information to disk.  Check to make sure enough disk space is available, and click Retry, or Cancel to end the install.One or more of the files required to restore your computer to its previous state could not be found.  Restoration will not be possible.[2] cannot install one of its required products. Contact your technical support group.  {{System Error: [3].}}The older version of [2] cannot be removed.  Contact your technical support group.  {{System Error [3].}}Installed [2]Configured [2]Removed [2]File [2] was rejected by digital signature policy.The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor.  {{Custom action [2] script error [3], [4]: [5] Line [6], Column [7], [8] }}There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor. {{Action: [2], location: [3], command: [4] }}There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.  {{Action [2], location: [3], command: [4] }}There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor.  {{Action [2], entry: [3], library: [4] }}Removal completed successfully.Removal failed.Advertisement completed successfully.Advertisement failed.Configuration completed successfully.Configuration failed.You must be an Administrator to remove this application. To remove this application, you can log on as an Administrator, or contact your technical support group for assistance.The path [2] is not valid.  Please specify a valid path.There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume.There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume.The folder [2] does not exist.  Please enter a path to an existing folder.You have insufficient privileges to read this folder.A valid destination folder for the install could not be determined.Error attempting to read from the source install database: [2].Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation.Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation.Module [2] failed to register.  HRESULT [3].  Contact your support personnel.Module [2] failed to unregister.  HRESULT [3].  Contact your support personnel.Failed to cache package [2]. Error: [3]. Contact your support personnel.Could not register font [2].  Verify that you have sufficient permissions to install fonts, and that the system supports this font.Could not unregister font [2]. Verify that you that you have sufficient permissions to remove fonts.Could not create Shortcut [2]. Verify that the destination folder exists and that you can access it.Could not remove Shortcut [2]. Verify that the shortcut file exists and that you can access it.Could not register type library for file [2].  Contact your support personnel.Could not unregister type library for file [2].  Contact your support personnel.Could not update the ini file [2][3].  Verify that the file exists and that you can access it.Could not schedule file [2] to replace file [3] on reboot.  Verify that you have write permissions to file [3].Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.Error removing ODBC driver: [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.Error installing ODBC driver: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.Error configuring ODBC data source: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.Service '[2]' ([3]) failed to start.  Verify that you have sufficient privileges to start system services.Service '[2]' ([3]) could not be stopped.  Verify that you have sufficient privileges to stop system services.Service '[2]' ([3]) could not be deleted.  Verify that you have sufficient privileges to remove system services.Service '[2]' ([3]) could not be installed.  Verify that you have sufficient privileges to install system services.Could not update environment variable '[2]'.  Verify that you have sufficient privileges to modify environment variables.You do not have sufficient privileges to complete this installation for all users of the machine.  Log on as administrator and then retry this installation.Could not set file security for file '[3]'. Error: [2].  Verify that you have sufficient privileges to modify the security permissions for this file.Component Services (COM+ 1.0) are not installed on this computer.  This installation requires Component Services in order to complete successfully.  Component Services are available on Windows 2000.Error registering COM+ Application.  Contact your support personnel for more information.Error unregistering COM+ Application.  Contact your support personnel for more information.The description for service '[2]' ([3]) could not be changed.The Windows Installer service cannot update the system file [2] because the file is protected by Windows.  You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2].  List of protected files:\r\n[3]}}User installations are disabled via policy on the machine.An error occured during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}