BIOS (Basic Input/Output System) settings play a crucial role in the functioning of your computer. They control various hardware settings and can be customized to enhance the security and performance of your system. In this article, we will guide you on how to change BIOS settings, specifically enabling Secure Boot, on Toshiba and Dynabook computers using PowerShell.
What is Secure Boot?
Secure Boot is a security feature that ensures your computer only boots with trusted software. It verifies the digital signature of each piece of boot software, including the operating system, before allowing it to load. This prevents malware or unauthorized software from running at boot time, protecting your system against potential threats.
Enabling Secure Boot on Toshiba and Dynabook Computers
Before proceeding, please note that enabling Secure Boot requires administrative privileges on your computer. Additionally, the steps mentioned in this article are specific to Toshiba and Dynabook computers and may vary slightly for other brands.
Follow the steps below to enable Secure Boot on your Toshiba or Dynabook computer using PowerShell:
Step 1: Open PowerShell
Press the Windows key on your keyboard and type "PowerShell". Right-click on "Windows PowerShell" in the search results and select "Run as administrator". This will open PowerShell with administrative privileges.
Step 2: Check Secure Boot Status
Before enabling Secure Boot, it is essential to check its current status on your computer. Enter the following command in PowerShell and press Enter:
Get-WmiObject -Namespace "root/WMI" -Class WmiSecuritySPP | Select-Object -ExpandProperty SecureBootEnabled
If the output is "True", Secure Boot is already enabled on your computer. You can skip the remaining steps. If the output is "False", proceed to the next step.
Step 3: Enable Secure Boot
To enable Secure Boot, enter the following command in PowerShell and press Enter:
Set-WmiInstance -Namespace "root/WMI" -Class WmiSecuritySPP -Arguments @{SecureBootEnabled=$true}
This command will enable Secure Boot on your Toshiba or Dynabook computer. Once enabled, your system will only boot with trusted software.
Step 4: Restart your Computer
After enabling Secure Boot, it is necessary to restart your computer for the changes to take effect. Close PowerShell and click on the "Start" button. Select "Restart" from the power options to restart your computer.
Upon restart, your Toshiba or Dynabook computer will now boot with Secure Boot enabled. This enhances the security of your system by preventing unauthorized software from running at boot time.
Conclusion
Changing BIOS settings, such as enabling Secure Boot, can significantly improve the security and performance of your Toshiba or Dynabook computer. By following the steps mentioned in this article, you can easily enable Secure Boot using PowerShell. Remember to always exercise caution while making changes to your computer's BIOS settings and ensure you have administrative privileges.
References
| Reference | Link |
|---|---|
| Microsoft Docs - Secure Boot | https://docs.microsoft.com/en-us/windows-hardware/design/device-experiences/oem-secure-boot |
| Toshiba Support | https://support.toshiba.com/ |
| Dynabook Support | https://us.dynabook.com/support/ |