(root)/
Python-3.11.7/
Lib/
msilib/
sequence.py
       1  AdminExecuteSequence = [
       2  ('InstallInitialize', None, 1500),
       3  ('InstallFinalize', None, 6600),
       4  ('InstallFiles', None, 4000),
       5  ('InstallAdminPackage', None, 3900),
       6  ('FileCost', None, 900),
       7  ('CostInitialize', None, 800),
       8  ('CostFinalize', None, 1000),
       9  ('InstallValidate', None, 1400),
      10  ]
      11  
      12  AdminUISequence = [
      13  ('FileCost', None, 900),
      14  ('CostInitialize', None, 800),
      15  ('CostFinalize', None, 1000),
      16  ('ExecuteAction', None, 1300),
      17  ('ExitDialog', None, -1),
      18  ('FatalError', None, -3),
      19  ('UserExit', None, -2),
      20  ]
      21  
      22  AdvtExecuteSequence = [
      23  ('InstallInitialize', None, 1500),
      24  ('InstallFinalize', None, 6600),
      25  ('CostInitialize', None, 800),
      26  ('CostFinalize', None, 1000),
      27  ('InstallValidate', None, 1400),
      28  ('CreateShortcuts', None, 4500),
      29  ('MsiPublishAssemblies', None, 6250),
      30  ('PublishComponents', None, 6200),
      31  ('PublishFeatures', None, 6300),
      32  ('PublishProduct', None, 6400),
      33  ('RegisterClassInfo', None, 4600),
      34  ('RegisterExtensionInfo', None, 4700),
      35  ('RegisterMIMEInfo', None, 4900),
      36  ('RegisterProgIdInfo', None, 4800),
      37  ]
      38  
      39  InstallExecuteSequence = [
      40  ('InstallInitialize', None, 1500),
      41  ('InstallFinalize', None, 6600),
      42  ('InstallFiles', None, 4000),
      43  ('FileCost', None, 900),
      44  ('CostInitialize', None, 800),
      45  ('CostFinalize', None, 1000),
      46  ('InstallValidate', None, 1400),
      47  ('CreateShortcuts', None, 4500),
      48  ('MsiPublishAssemblies', None, 6250),
      49  ('PublishComponents', None, 6200),
      50  ('PublishFeatures', None, 6300),
      51  ('PublishProduct', None, 6400),
      52  ('RegisterClassInfo', None, 4600),
      53  ('RegisterExtensionInfo', None, 4700),
      54  ('RegisterMIMEInfo', None, 4900),
      55  ('RegisterProgIdInfo', None, 4800),
      56  ('AllocateRegistrySpace', 'NOT Installed', 1550),
      57  ('AppSearch', None, 400),
      58  ('BindImage', None, 4300),
      59  ('CCPSearch', 'NOT Installed', 500),
      60  ('CreateFolders', None, 3700),
      61  ('DeleteServices', 'VersionNT', 2000),
      62  ('DuplicateFiles', None, 4210),
      63  ('FindRelatedProducts', None, 200),
      64  ('InstallODBC', None, 5400),
      65  ('InstallServices', 'VersionNT', 5800),
      66  ('IsolateComponents', None, 950),
      67  ('LaunchConditions', None, 100),
      68  ('MigrateFeatureStates', None, 1200),
      69  ('MoveFiles', None, 3800),
      70  ('PatchFiles', None, 4090),
      71  ('ProcessComponents', None, 1600),
      72  ('RegisterComPlus', None, 5700),
      73  ('RegisterFonts', None, 5300),
      74  ('RegisterProduct', None, 6100),
      75  ('RegisterTypeLibraries', None, 5500),
      76  ('RegisterUser', None, 6000),
      77  ('RemoveDuplicateFiles', None, 3400),
      78  ('RemoveEnvironmentStrings', None, 3300),
      79  ('RemoveExistingProducts', None, 6700),
      80  ('RemoveFiles', None, 3500),
      81  ('RemoveFolders', None, 3600),
      82  ('RemoveIniValues', None, 3100),
      83  ('RemoveODBC', None, 2400),
      84  ('RemoveRegistryValues', None, 2600),
      85  ('RemoveShortcuts', None, 3200),
      86  ('RMCCPSearch', 'NOT Installed', 600),
      87  ('SelfRegModules', None, 5600),
      88  ('SelfUnregModules', None, 2200),
      89  ('SetODBCFolders', None, 1100),
      90  ('StartServices', 'VersionNT', 5900),
      91  ('StopServices', 'VersionNT', 1900),
      92  ('MsiUnpublishAssemblies', None, 1750),
      93  ('UnpublishComponents', None, 1700),
      94  ('UnpublishFeatures', None, 1800),
      95  ('UnregisterClassInfo', None, 2700),
      96  ('UnregisterComPlus', None, 2100),
      97  ('UnregisterExtensionInfo', None, 2800),
      98  ('UnregisterFonts', None, 2500),
      99  ('UnregisterMIMEInfo', None, 3000),
     100  ('UnregisterProgIdInfo', None, 2900),
     101  ('UnregisterTypeLibraries', None, 2300),
     102  ('ValidateProductID', None, 700),
     103  ('WriteEnvironmentStrings', None, 5200),
     104  ('WriteIniValues', None, 5100),
     105  ('WriteRegistryValues', None, 5000),
     106  ]
     107  
     108  InstallUISequence = [
     109  ('FileCost', None, 900),
     110  ('CostInitialize', None, 800),
     111  ('CostFinalize', None, 1000),
     112  ('ExecuteAction', None, 1300),
     113  ('ExitDialog', None, -1),
     114  ('FatalError', None, -3),
     115  ('UserExit', None, -2),
     116  ('AppSearch', None, 400),
     117  ('CCPSearch', 'NOT Installed', 500),
     118  ('FindRelatedProducts', None, 200),
     119  ('IsolateComponents', None, 950),
     120  ('LaunchConditions', None, 100),
     121  ('MigrateFeatureStates', None, 1200),
     122  ('RMCCPSearch', 'NOT Installed', 600),
     123  ('ValidateProductID', None, 700),
     124  ]
     125  
     126  tables=['AdminExecuteSequence', 'AdminUISequence', 'AdvtExecuteSequence', 'InstallExecuteSequence', 'InstallUISequence']