Guide_Wii/_pages/en_US/hackmii.md

90 lines
3.1 KiB
Markdown
Raw Normal View History

---
title: "Relaunching the HackMii Installer"
---
{% include toc title="Table of Contents" %}
If you need help for anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net).
{: .notice--info}
This guide is intended for situations where you need to relaunch the HackMii Installer to update/reinstall the Homebrew Channel or BootMii.
It is also safe to [redo any exploit](get-started) to get back into the HackMii Installer.
{: .notice--info}
<button class="tablinks btn btn--large btn--primary" id="defaultOpen" onclick="openTab(event, 'hbc')">Using the Homebrew Channel</button>
<button class="tablinks btn btn--large btn--info" onclick="openTab(event, 'priiloader')">Using Priiloader</button>
<div id="hbc" class="blanktabcontent" markdown="1">
### Relaunching via the Homebrew Channel
#### What you need
- The Homebrew Channel
- An SD card or USB drive formatted to FAT32/MS-DOS
- [HackMii Installer v1.2](https://bootmii.org/download/)
#### Instructions
1. Insert your SD/USB into your PC.
1. Extract the HackMii Installer v1.2 to the `apps` folder on your SD/USB.
- If this folder does not exist, create it.
1. Insert the SD/USB into your Wii, and launch the `hackmii_installer_v1.2` app from the Homebrew Channel.
- The app will not have an icon.
</div>
<div id="priiloader" class="blanktabcontent" markdown="1">
### Relaunching via Priiloader
#### What you need
- a Wii with Priiloader (or Preloader) installed
- an SD card or USB drive formatted to FAT32/MS-DOS
- [HackMii Installer v1.2](https://bootmii.org/download/)
To check if your Wii has Priiloader, hold the RESET button while turning it on.
![Turn on](/images/Priiloader/on.jpg)
![Hold RESET](/images/Priiloader/reset.jpg)
{: .notice--info}
#### Instructions
1. Insert your SD/USB into your PC.
1. Extract the HackMii Installer v1.2 to the `apps` folder on your SD/USB.
- If this folder does not exist, create it.
1. Insert your SD/USB into your Wii.
1. Enter Priiloader by holding the RESET button while turning on your Wii.
1. Go to `Load/Install File`.
1. Navigate to `hackmii_installer_v1.2` and press `1` to load it.
</div>
[Continue to Homebrew Channel and BootMii Installation](hbc)
{: .notice--info}
<script>
let tabcontent = document.getElementsByClassName("blanktabcontent");
let tablinks = document.getElementsByClassName("tablinks");
function openTab(evt, tabName) {
let element;
for (element of tabcontent) {
element.style.display = "none";
}
for (element of tablinks) {
element.className = element.className.replace("btn--primary", "btn--info");
if (!element.className.includes('btn--info'))
element.className += " btn--info";
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className = evt.currentTarget.className.replace("btn--info", "btn--primary");
}
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
</script>