> For the complete documentation index, see [llms.txt](https://kingdommodz-guide.gitbook.io/kingdommodz-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kingdommodz-guide.gitbook.io/kingdommodz-guide/individual-guides/disable-fast-boot.md).

# 🎮 𝐃𝐢𝐬𝐚𝐛𝐥𝐞 𝐅𝐚𝐬𝐭 𝐁𝐨𝐨𝐭

**Method 1: Using Control Panel**

1. Press `Windows key + X` to open the Power User menu.
2. Select "Control Panel."
3. Go to "Power Options."
4. On the left side, click on "Choose what the power buttons do."
5. Click on "Change settings that are currently unavailable."
6. Scroll down to "Shutdown settings."
7. Uncheck "Turn on fast startup (recommended)."
8. Click "Save changes."

**Method 2: Using Settings**

1. Press `Windows key + I` to open the Settings.
2. Click on "System."
3. Select "Power & sleep" from the left sidebar.
4. Click on "Additional power settings" on the right side.
5. In the Power Options window, click on "Choose what the power buttons do."
6. Click on "Change settings that are currently unavailable."
7. Uncheck "Turn on fast startup (recommended)."
8. Click "Save changes."

**Method 3: Using Group Policy Editor**

1. Press `Windows key + R` to open the Run dialog.
2. Type `gpedit.msc` and press Enter to open the Group Policy Editor.
3. Navigate to "Computer Configuration" -> "Administrative Templates" -> "System" -> "Shutdown."
4. Double-click on "Require use of fast startup" on the right.
5. Select "Disabled" and click "OK."

**Method 4: Using Registry Editor**

**Note: Editing the registry can be risky, so proceed with caution.**

1. Press `Windows key + R` to open the Run dialog.
2. Type `regedit` and press Enter to open the Registry Editor.
3. Navigate to `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power`.
4. Double-click on "HiberbootEnabled" on the right.
5. Change the value to "0" (zero) and click "OK."

**Method 5: Using Command Prompt**

1. Press `Windows key + X` to open the Power User menu.
2. Select "Command Prompt (Admin)" or "Windows PowerShell (Admin)."
3. If using Command Prompt, type the following command and press Enter:

   Copy

   ```
   powercfg /hibernate off
   ```

   If using PowerShell, type:

   Copy

   ```
   powercfg -h off
   ```

After applying any of these methods, your computer will perform a full shutdown, and Fast Boot will be disabled. Choose the method that you find most convenient based on your preference and system configuration.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://kingdommodz-guide.gitbook.io/kingdommodz-guide/individual-guides/disable-fast-boot.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
