Changeset 5150 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 3, 2007 8:56:45 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 25030
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r5146 r5150 529 529 " vrdpauthlibrary default|<library> |\n" 530 530 " hwvirtexenabled yes|no\n" 531 " loghistorycount <value>\n" 531 532 "\n"); 532 533 } … … 2768 2769 2769 2770 systemProperties->COMGETTER(MinGuestRAM)(&ulValue); 2770 RTPrintf("Minimum guest RAM size: %u Megabytes\n", ulValue);2771 RTPrintf("Minimum guest RAM size: %u Megabytes\n", ulValue); 2771 2772 systemProperties->COMGETTER(MaxGuestRAM)(&ulValue); 2772 RTPrintf("Maximum guest RAM size: %u Megabytes\n", ulValue);2773 RTPrintf("Maximum guest RAM size: %u Megabytes\n", ulValue); 2773 2774 systemProperties->COMGETTER(MaxGuestVRAM)(&ulValue); 2774 RTPrintf("Maximum video RAM size: %u Megabytes\n", ulValue);2775 RTPrintf("Maximum video RAM size: %u Megabytes\n", ulValue); 2775 2776 systemProperties->COMGETTER(MaxVDISize)(&ul64Value); 2776 RTPrintf("Maximum VDI size: %lu Megabytes\n", ul64Value);2777 RTPrintf("Maximum VDI size: %lu Megabytes\n", ul64Value); 2777 2778 systemProperties->COMGETTER(DefaultVDIFolder)(str.asOutParam()); 2778 RTPrintf("Default VDI filder: %lS\n", str.raw());2779 RTPrintf("Default VDI filder: %lS\n", str.raw()); 2779 2780 systemProperties->COMGETTER(DefaultMachineFolder)(str.asOutParam()); 2780 RTPrintf("Default machine folder: %lS\n", str.raw());2781 RTPrintf("Default machine folder: %lS\n", str.raw()); 2781 2782 systemProperties->COMGETTER(RemoteDisplayAuthLibrary)(str.asOutParam()); 2782 2783 RTPrintf("VRDP authentication library: %lS\n", str.raw()); 2783 2784 systemProperties->COMGETTER(HWVirtExEnabled)(&flag); 2784 2785 RTPrintf("Hardware virt. extensions: %s\n", flag ? "yes" : "no"); 2786 systemProperties->COMGETTER(LogHistoryCount)(&ulValue); 2787 RTPrintf("Log history count: %u\n", ulValue); 2785 2788 2786 2789 } … … 6340 6343 /* reset to default? */ 6341 6344 if (strcmp(argv[1], "default") == 0) 6342 {6343 6345 CHECK_ERROR(systemProperties, COMSETTER(DefaultVDIFolder)(NULL)); 6344 }6345 6346 else 6346 {6347 6347 CHECK_ERROR(systemProperties, COMSETTER(DefaultVDIFolder)(Bstr(argv[1]))); 6348 }6349 6348 } 6350 6349 else if (strcmp(argv[0], "machinefolder") == 0) … … 6352 6351 /* reset to default? */ 6353 6352 if (strcmp(argv[1], "default") == 0) 6354 {6355 6353 CHECK_ERROR(systemProperties, COMSETTER(DefaultMachineFolder)(NULL)); 6356 }6357 6354 else 6358 {6359 6355 CHECK_ERROR(systemProperties, COMSETTER(DefaultMachineFolder)(Bstr(argv[1]))); 6360 }6361 6356 } 6362 6357 else if (strcmp(argv[0], "vrdpauthlibrary") == 0) … … 6364 6359 /* reset to default? */ 6365 6360 if (strcmp(argv[1], "default") == 0) 6366 {6367 6361 CHECK_ERROR(systemProperties, COMSETTER(RemoteDisplayAuthLibrary)(NULL)); 6368 }6369 6362 else 6370 {6371 6363 CHECK_ERROR(systemProperties, COMSETTER(RemoteDisplayAuthLibrary)(Bstr(argv[1]))); 6372 }6373 6364 } 6374 6365 else if (strcmp(argv[0], "hwvirtexenabled") == 0) … … 6381 6372 return errorArgument("Invalid value '%s' for hardware virtualization extension flag", argv[1]); 6382 6373 } 6374 else if (strcmp(argv[0], "loghistorycount") == 0) 6375 { 6376 uint32_t uVal; 6377 int vrc; 6378 vrc = RTStrToUInt32Ex(argv[1], NULL, 0, &uVal); 6379 if (vrc != VINF_SUCCESS) 6380 return errorArgument("Error parsing Log history count '%s'", argv[1]); 6381 CHECK_ERROR(systemProperties, COMSETTER(LogHistoryCount)(uVal)); 6382 } 6383 6383 else 6384 {6385 6384 return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", Utf8Str(argv[0]).raw()); 6386 }6387 6385 6388 6386 return SUCCEEDED(rc) ? 0 : 1;
Note:
See TracChangeset
for help on using the changeset viewer.