Changeset 28730 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 26, 2010 7:53:50 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60604
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r28729 r28730 648 648 else: 649 649 tele = " " 650 print "%sMachine '%s' [%s], state=%s" %(tele,colVm(ctx,m.name),m.id,asEnumElem(ctx,"SessionState", m.sessionState))650 print "%sMachine '%s' [%s], machineState=%s, sessionState=%s" %(tele,colVm(ctx,m.name),m.id,asEnumElem(ctx, "MachineState", m.state), asEnumElem(ctx,"SessionState", m.sessionState)) 651 651 return 0 652 652 … … 712 712 if attaches: 713 713 print 714 print colCat(ctx," Medi ums:")714 print colCat(ctx," Media:") 715 715 for a in attaches: 716 716 print " Controller: '%s' port/device: %d:%d type: %s (%s):" % (a.controller, a.port, a.device, asEnumElem(ctx,"DeviceType", a.type), a.type) … … 1612 1612 return int(val) 1613 1613 1614 def listMedi umsCmd(ctx,args):1614 def listMediaCmd(ctx,args): 1615 1615 if len(args) > 1: 1616 1616 verbose = int(args[1]) … … 2138 2138 'attachUsb': ['Attach USB device to the VM (use listUsb to show available devices): attachUsb win uuid', attachUsbCmd, 0], 2139 2139 'detachUsb': ['Detach USB device from the VM: detachUsb win uuid', detachUsbCmd, 0], 2140 'listMedi ums': ['List mediums known to this VBox instance', listMediumsCmd, 0],2140 'listMedia': ['List media known to this VBox instance', listMediaCmd, 0], 2141 2141 'listUsb': ['List known USB devices', listUsbCmd, 0], 2142 2142 'shareFolder': ['Make host\'s folder visible to guest: shareFolder win /share share writable', shareFolderCmd, 0],
Note:
See TracChangeset
for help on using the changeset viewer.