Changeset 84169 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- May 6, 2020 4:17:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r84118 r84169 3569 3569 sWinDir = "C:\\Windows\\System32\\"; 3570 3570 oTxsSession.syncExec(sWinDir + " cmd.exe", 3571 ( sWinDir +"cmd.exe", "/C", "dir", "${CDROM}"),3571 ("cmd.exe", "/C", "dir", "${CDROM}"), 3572 3572 fIgnoreErrors = True); 3573 3573 oTxsSession.syncExec("C:\\WINNT\\System32\\cmd.exe", … … 3576 3576 3577 3577 reporter.log('txsCdWait: Listing mount points / drives:'); 3578 oTxsSession.syncExec("/bin/mount", (" /bin/mount"), fIgnoreErrors = True);3578 oTxsSession.syncExec("/bin/mount", ("mount"), fIgnoreErrors = True); 3579 3579 # Should work since WinXP Pro. 3580 3580 oTxsSession.syncExec(sWinDir + "wbem\\WMIC.exe", 3581 ( sWinDir + "wbem\\WMIC.exe", "logicaldisk", "get",3581 ("WMIC.exe", "logicaldisk", "get", 3582 3582 "deviceid, volumename, description"), 3583 3583 fIgnoreErrors = True);
Note:
See TracChangeset
for help on using the changeset viewer.