Changeset 106825 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 5, 2024 8:35:12 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r106824 r106825 907 907 ## Windows SetupAPI log files we handle. 908 908 kasSetupApiLogFiles = [ 909 ( '%WINDIR%/setupapi.log', 'log/host-setupapi.log', 'SetupAPI (setupapi.log)', ), 910 ( '%WINDIR%/setupact.log', 'log/host-setupact.log', 'SetupAPI (setupact.log)', ), 911 ( '%WINDIR%/setuperr.log', 'log/host-setuperr.log', 'SetupAPI (setuperr.log)', ), 909 ( '%WINDIR%/setupapi.log', 'log/setupapi-log', 'SetupAPI (setupapi.log)', ), # Windows XP and later. 910 ( '%WINDIR%/setupact.log', 'log/setupapi-act', 'SetupAPI (setupact.log)', ), 911 ( '%WINDIR%/setuperr.log', 'log/setupapi-err', 'SetupAPI (setuperr.log)', ), 912 ( '%WINDIR%/INF/setupapi.app.log', 'log/setupapi-app', 'SetupAPI (setupapi.app.log)', ), # Windows 7 and later. 913 ( '%WINDIR%/INF/setupapi.dev.log', 'log/setupapi-dev', 'SetupAPI (setupapi.dev.log)', ), 914 ( '%WINDIR%/INF/setupapi.upgrade.log', 'log/setupapi-upgrade', 'SetupAPI (setupapi.upgrade.log)', ), # Windows 10 and later. 915 ( '%WINDIR%/INF/setupact.log', 'log/setupapi-act', 'SetupAPI (setupact.log)', ), 916 ( '%WINDIR%/INF/setuperr.log', 'log/setupapi-err', 'SetupAPI (setuperr.log)', ), 912 917 ]; 913 918
Note:
See TracChangeset
for help on using the changeset viewer.