<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>How to use ES_DiVerify(ES_Identify)?</title>
<description> In older IOS you could provide valid ticket/tmd/cert to identify in system as specific title.
In new IOS (for example 53,55,58) ES_Identify gives error -1017.

So, is there a way to identify in system as title besides loading it as channel?

I know i can patch IOS, but i want to do this without patching.

Is there a way to identify in system by providing valid ticket/tmd?</description><link>http://forum.wiibrew.org/read.php?11,59447,59447#msg-59447</link><lastBuildDate>Tue, 10 Mar 2026 04:16:04 +0100</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,60033#msg-60033</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,60033#msg-60033</link><description><![CDATA[ I was just going by what Arikado said, but yes a quick scan of the source implies you&#039;re right. And also noticed something else interesting, but I won&#039;t mention it right now ;)]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Tue, 28 Sep 2010 20:38:10 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,60017#msg-60017</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,60017#msg-60017</link><description><![CDATA[ I&#039;ve read you code and there is something like that:<br /><br /><pre class="bbcode">
if (!isAHBPROT)
{
  printf("%sIOS: %u%s\n", (selection == 0 ? AnsiSelection : ""), *menuIOS, AnsiNormal);
  printf("%sInstall IOS36 (v%d) w/FakeSign%s\n", (selection == 1 ? AnsiSelection : ""), IOS36Version, AnsiNormal);
}
else
{
  printf("%sUse IOS%d + AHBPROT%s\n", (selection == 0 ? AnsiSelection : ""), IOS_GetVersion(), AnsiNormal);
}
printf("%sScan the Wii&#039;s internals (SysCheck)%s\n", (selection == 2 ? AnsiSelection : ""), AnsiNormal);
printf("%sExit%s", (selection == 3 ? AnsiSelection : ""), AnsiNormal);	

Console::SetRowPosition(Console::Rows-7);
Console::PrintSolidLine();
printf("[%s][%s] Change Selection\n", UpArrow, DownArrow);
		
if (selection == 0 && !isAHBPROT) printf("[%s][%s] Change IOS\n", LeftArrow, RightArrow);
else printf("\n");

printf("[Home] Exit");
Console::PrintSolidLine();
printf("Current IOS: IOS%u", IOS_GetVersion());
VIDEO_WaitVSync();

u32 button;
while (Controller::ScanPads(&button))
{
  if (button == WPAD_BUTTON_HOME) System::Exit();
  if (System::State != SystemState::Running) return;

  if (button == WPAD_BUTTON_UP) selection--;
  if (button == WPAD_BUTTON_DOWN) selection++;

  if (isAHBPROT)
  { // Let&#039;s skip out that
    if (button == WPAD_BUTTON_UP && selection == 1) selection--;
    if (button == WPAD_BUTTON_DOWN && selection == 1) selection++;
  }

  if (selection &lt; 0) selection = maxMenu;
  if (selection &gt; maxMenu) selection = 0;

  if (selection == 0 && !isAHBPROT)
  {
    if (button == WPAD_BUTTON_LEFT && menuIOS != iosList.begin()) --menuIOS;
    if (button == WPAD_BUTTON_RIGHT && menuIOS != iosList.end()-1) ++menuIOS;
  }	
...
}</pre><br />So it means that If you don&#039;t use the AHBPROT you will have these menus:<br /><br />- selection 0: "IOS: xx"<br />- selection 1: "Install IOS36 (vyy) w/FakeSign"<br />- selection 3: "Scan the Wii&#039;s internals (SysCheck)"<br />- selection 4: "Exit"<br /><br />And you will be able to select any menu and to modify the selected ios (the xx in the menu above) with left/right arrow<br /><br />If you have the AHBPROT, you will have this:<br /><br />- selection 0: "IOS: xx"<br />- selection 3: "Scan the Wii&#039;s internals (SysCheck)"<br />- selection 4: "Exit"<br /><br />And you wont be able to select the menu "selection 1" and you wont be able to modify the ios with left/right arrow (the ios will be the current one)<br /><br /><b><br />So you won&#039;t reload the IOS if you have the AHBPROT.... You can read the rest of the source, it confirms what i say.<br /></b>]]></description>
<dc:creator>arasium</dc:creator>
<category>Coding</category><pubDate>Tue, 28 Sep 2010 12:29:59 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59978#msg-59978</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59978#msg-59978</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>arasium</strong><br />@SifJar: Yes you&#039;re right. You need AHBPROT to downgrade IOSes. But, if you reload the ios, you will lost the AHBPROT and (i think) you won&#039;t be able to downgrade anything. Doesn&#039;t it?</div></blockquote><br />That&#039;s the whole point, dop-Mii WiiBrew Edition DOES reload IOS a number of times, and still has AHBPROT and can downgrade IOS.]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Mon, 27 Sep 2010 20:12:53 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59965#msg-59965</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59965#msg-59965</link><description><![CDATA[ @SifJar: Yes you&#039;re right. You need AHBPROT to downgrade IOSes. But, if you reload the ios, you will lost the AHBPROT and (i think) you won&#039;t be able to downgrade anything. Doesn&#039;t it?<br /><br />@sorg: When i said title, it was about the ios tmd :) IOS is a title, channel is also a tittle etc... It&#039;s like DVDX, the IOS254 was a title with the AHBPROT flag setted.... You just need to IOS_Reload on it... Perhaps i&#039;m wrong, in this case, correct me :)]]></description>
<dc:creator>arasium</dc:creator>
<category>Coding</category><pubDate>Mon, 27 Sep 2010 13:33:33 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59773#msg-59773</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59773#msg-59773</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>arasium</strong><br />The AHBPROT is setted by some datas in the TMD. So if you do an IOS_Reload on a title with a normal tmd, the AHBPROT will be reset....<br /><br />Dop-Mii Wiibrew Edition doesn&#039;t patch the ioses. So it doesn&#039;t need any special things to install the Wads/Ioses. It will works like the wii usually do.</div></blockquote><br />It doesn&#039;t patch, but it can downgrade or delete, which DOES need "special things" as you put it i.e. HW_AHBPROT flags, used to patch an IOS on-the-fly to use for installing and deleting stuff (IOS is not permanently patched, but is temporarily patched in RAM to have fake signing, ES_DiVerify and NAND Permissions)]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Fri, 24 Sep 2010 18:40:49 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59771#msg-59771</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59771#msg-59771</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />So if you do an IOS_Reload on a title with a normal tmd</div></blockquote>
not correct. If you reload IOS then TMD from that IOS will be used for flags setting. Even if title has AHBPROT flag, it won&#039;t help to sustain AHBPROT when you reload IOS.<br /><br />Generally speaking, Wii subsystem is not designed to reload IOS while title is running. Libogc just tricks system when you want to reload IOS. Clearing flags is just side-effect of this abnormal system usage.<br /><br />Normally, requested IOS is automatically loaded when Title starts, so in this case Title&#039;s TMD used for flag setting.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Fri, 24 Sep 2010 16:33:30 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59768#msg-59768</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59768#msg-59768</link><description><![CDATA[ The AHBPROT is setted by some datas in the TMD. So if you do an IOS_Reload on a title with a normal tmd, the AHBPROT will be reset....<br /><br />Dop-Mii Wiibrew Edition doesn&#039;t patch the ioses. So it doesn&#039;t need any special things to install the Wads/Ioses. It will works like the wii usually do.]]></description>
<dc:creator>arasium</dc:creator>
<category>Coding</category><pubDate>Fri, 24 Sep 2010 10:20:17 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59553#msg-59553</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59553#msg-59553</link><description><![CDATA[ Probably Arikado didn&#039;t know much about AHBPROT at that time.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Sun, 19 Sep 2010 06:11:18 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59539#msg-59539</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59539#msg-59539</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>sorg</strong><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong>SifJar</strong><br />So was Arikado wrong? (see the post I linked above)</div></blockquote>
His post was about how to disable automatic IOS loading on application startup. Old (seams very very old) libogc loads IOS36 at startup which disables AHBPROT.</div></blockquote><br />No it wasn&#039;t.<br /><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong>Arikado</strong><br />Isn&#039;t AHBPROT part of IOS 58? ( I mean, if it wasn&#039;t, DOP-Mii: WiiBrew Edition wouldn&#039;t work - We IOS_ReloadIOS() all the time...).</div></blockquote>]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 20:18:48 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59538#msg-59538</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59538#msg-59538</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>SifJar</strong><br />So was Arikado wrong? (see the post I linked above)</div></blockquote>
His post was about how to disable automatic IOS loading on application startup. Old (seams very very old) libogc loads IOS36 at startup which disables AHBPROT.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 19:50:31 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59537#msg-59537</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59537#msg-59537</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Tantric</strong><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong>SifJar</strong><br />I&#039;m pretty sure dop-Mii reloads IOS without losing AHBPROT, go read its source.</div></blockquote><br />Nope. It doesn&#039;t.</div></blockquote><br />So was Arikado wrong? (see the post I linked above)]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 18:21:02 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59535#msg-59535</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59535#msg-59535</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>SifJar</strong><br />I&#039;m pretty sure dop-Mii reloads IOS without losing AHBPROT, go read its source.</div></blockquote><br />Nope. It doesn&#039;t.]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 17:32:40 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59531#msg-59531</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59531#msg-59531</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>tueidj</strong><br />I think even waninkoko would be ashamed of that.</div></blockquote><br />Doesn&#039;t seem much different to what DVDx was for a long time.<br /><br />And sorg: I am almost certain dop-Mii DOES reload IOS, because Arikado said so in this thread : [<a href="http://forum.wiibrew.org/read.php?11,59402" rel="nofollow">forum.wiibrew.org</a>]]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 15:48:28 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59529#msg-59529</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59529#msg-59529</link><description><![CDATA[ I know you are very smart tueidj, but there is no help from you at all.<br />You don&#039;t need to spend time for such useless comments.<br /><br />P.S.: already discovered how to reload IOS without loosing AHBPROT. N again did it by wrong way :)]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 11:24:50 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59528#msg-59528</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59528#msg-59528</link><description><![CDATA[ I think even waninkoko would be ashamed of that.]]></description>
<dc:creator>tueidj</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 10:54:55 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59527#msg-59527</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59527#msg-59527</link><description><![CDATA[ hmm.. not so crazy :)<br /><br />it works well!]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 09:38:49 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59523#msg-59523</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59523#msg-59523</link><description><![CDATA[ SifJar,<br />i will check but it&#039;s highly unlikely it uses IOS realod. It simply unneeded for its tastk.<br /><br />WiiPower,<br />thanks for the info. Unfortunately, i know 002 trick and how to trick games to use only one IOS for all. So, i&#039;m using it already.<br />Seams there is no known way to reload IOS for Channels.<br /><br />There is one crazy method coming to my mind: setup small hidden channel-helper with AHBPROT. Everytime you want to reload IOS, just change IOS in its TMD and load it just like DVDx :)]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Sat, 18 Sep 2010 05:28:39 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59503#msg-59503</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59503#msg-59503</link><description><![CDATA[ tueidj is right, unless you learn how to do an IOS Reload without loosing the direct hardware access, you won&#039;t get a clean solution for your problem.<br /><br />But if you can learn anything from "warez loaders", then it&#039;s the fact that &gt;90% of games run fine with any IOS. So you can temporary stay on IOS58 and just fix 002 error in memory. If you execute some kind of apploader that writes into memory which IOS the game wants, then add this to your code, after the apploader stuff(it&#039;s beed a long time, i don&#039;t think this happens for channels, but for disc games):<br /><br />*(u32 *)0x80003188 = *(u32 *)0x80003140;<br /><br />or use this:<br /><br />*(u16 *)0x80003140 = requested_ios;<br />*(u16 *)0x80003142 = 0xffff;<br />*(u16 *)0x80003188 = requested_ios;<br />*(u16 *)0x8000318A = 0xffff;<br /><br />I know it&#039;s not nice, but it will work until you fixed your IOS Reload. And writing to 0x80003188 might be required anyways to get rid of 002 errors as the game expects the apploader to do it.<br /><br />Do you know about my project that can&#039;t be talked about here, but could be a useful source for some code? Namely decompression code for compressed lz77 files.]]></description>
<dc:creator>WiiPower</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 19:51:25 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59499#msg-59499</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59499#msg-59499</link><description><![CDATA[ I&#039;m pretty sure dop-Mii reloads IOS without losing AHBPROT, go read its source.]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 19:01:12 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59494#msg-59494</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59494#msg-59494</link><description><![CDATA[ I pretty much told you exactly what to do. Not my fault if you&#039;re not up to the task, sorry if you expect me to spoonfeed you patch code like everyone else.]]></description>
<dc:creator>tueidj</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 16:27:14 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59489#msg-59489</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59489#msg-59489</link><description><![CDATA[ tueidj,<br />good answer. It&#039;s a really masterpiece to answer without answering ;)]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 10:50:58 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59484#msg-59484</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59484#msg-59484</link><description><![CDATA[ You&#039;re trying to make the system run channels in a way that it wasn&#039;t designed to. If you really want to do it that way you&#039;re going to have to learn how to reload IOS without losing AHBPROT.]]></description>
<dc:creator>tueidj</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 09:59:01 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59479#msg-59479</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59479#msg-59479</link><description><![CDATA[ that&#039;s what i&#039;m using on steps 1 and 2.<br />On step 3 you will loose ahbprot and ability to patch IOS in memory.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Fri, 17 Sep 2010 05:30:20 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59454#msg-59454</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59454#msg-59454</link><description><![CDATA[ Well, you can use the runtime IOS patching stuff from dop-Mii to allow ES_Identify on the current IOS without it being actually patched. Is that not good enough?]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 22:04:30 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59453#msg-59453</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59453#msg-59453</link><description><![CDATA[ Without ES_Identify channel won&#039;t be identified with its correct TitleID and thus won&#039;t work because won&#039;t be able to access its data and content folders.<br /><br />The main idea is:<br />1) uning AHBPROT access channel&#039;s content<br />2) load its executable<br />3) load correct IOS (AHBPROT will be lost at this stage!)<br />4) patch executable<br />5) execute ES_Identify with channel&#039;s TitleID<br />6) start channel&#039;s executable<br /><br />All these steps are just to execute step 4. Otherwise all these steps can be replaced by single ES_LaunchTitle.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 21:32:04 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59451#msg-59451</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59451#msg-59451</link><description><![CDATA[ I don&#039;t know what you want to achieve, but is all that&#039;s necessary not just to be able to call ES_Identify before you load the channel? or is there more to it than that?]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 21:09:28 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59449#msg-59449</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59449#msg-59449</link><description><![CDATA[ Thanks for reply. I know how to patch - it&#039;s not a problem.<br />Problem comes when i want to launch channel with its correct IOS, but cannot use standard ES_LaunchTitle because i want to pre-patch binary before start (Ocarina cheat engine).<br /><br />The funny thing is that you can use ES_DiVerify indirectly when you open partition of DVD game, but there is no similar way to execute ES_DiVerify directly or indirectly for installed Channels.<br />That&#039;s why i decided to ask this question here... It looks stupid when you easily can invoke identification as DVD title, but can not with Channel. Well, some exceptions could be applied for SystemMenu or other system titles, but for all channels it looks strange and funny.]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 20:56:15 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59448#msg-59448</guid>
<title>Re: How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59448#msg-59448</link><description><![CDATA[ I&#039;m pretty sure Ninty prevented this, hence there ARE patches for it. If your app will use HW_AHBPROT flags, you could patch the IOS on-the-fly wiht ES_Identify (see dop-Mii source for that)]]></description>
<dc:creator>SifJar</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 20:32:30 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,59447,59447#msg-59447</guid>
<title>How to use ES_DiVerify(ES_Identify)?</title><link>http://forum.wiibrew.org/read.php?11,59447,59447#msg-59447</link><description><![CDATA[ In older IOS you could provide valid ticket/tmd/cert to identify in system as specific title.<br />In new IOS (for example 53,55,58) ES_Identify gives error -1017.<br /><br />So, is there a way to identify in system as title besides loading it as channel?<br /><br />I know i can patch IOS, but i want to do this without patching.<br /><br />Is there a way to identify in system by providing valid ticket/tmd?]]></description>
<dc:creator>sorg</dc:creator>
<category>Coding</category><pubDate>Thu, 16 Sep 2010 20:04:57 +0200</pubDate></item>
</channel>
</rss>