0383.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Customize the VirtualBox BIOS Image</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To Change VirtualBox Bootup Logo,How To Customize VirtualBox BIOS Logo,How To Customize VirtualBox BIOS Image,How To Change VirtualBox Bootup Image,VirtualBox Advanced Features,Hypervisor,VirtualBox,BIOS,BIOS Customization,BIOS Boot Image,Virtual Machine,Home Lab,VM,VBoxManage,Bitmap,.bmp,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Customize the VirtualBox BIOS Image">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="03/24/2022 03:25:48 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Customize the VirtualBox BIOS Image</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <p>From the VirtualBox documentation:<br />
  26. The image must be an uncompressed 256 color BMP file without color space information (Windows 3.0 format). The image must not be bigger than 640 x 480.</p>
  27. <h2>Method 1 - Editing the VirtualBox VM XML</h2>
  28. <ol>
  29. <li>Make sure the VM being modified is not running</li>
  30. <li>Close the VirtualBox UI</li>
  31. <li>Open File Explorer</li>
  32. <li>Navigate to the VM directory</li>
  33. <li>Open the .vbox file in a text editor</li>
  34. <li>Search for BIOS</li>
  35. <li>Add the following line inside the BIOS node
  36. <p>&lt;logo displaytime=&quot;0&quot; fadein=&quot;true&quot; fadeout=&quot;true&quot; imagepath=&quot;C:\Full\Path\to\BIOS.bmp&quot; /&gt;</p>
  37. </li>
  38. <li>Change the imagePath to the full path to the custom .bmp file</li>
  39. <li>Save the changes to the .vbox file</li>
  40. <li>Start the VM normally to test</li>
  41. </ol>
  42. <h2>Method 2 - Using the VBoxManage Command</h2>
  43. <ol>
  44. <li>Make sure the VM being modified is not running</li>
  45. <li>Launch command prompt as administrator and run the following commands
  46. <div class="codeBlock">cd %programfiles%\Oracle\VirtualBox<br />
  47. VBoxManage modifyvm &quot;CaseSensitiveVMName&quot; --bioslogoimagepath &quot;C:\Full\Path\to\BIOS.bmp&quot;</div>
  48. </li>
  49. <li>Start the VM normally to test</li>
  50. </ol>
  51. </div>
  52. </div>
  53. </body>
  54. </html>