LOL i know i tried Xbox image browser said it had reached the end of the file Error so dint think to try the other iso extractors oh also the skin in the emulator is just a modified version of Freestyle Dashboards lol has all the default images still in it haha
if you want to extract the skin here is part of my batch file that does it.
you will need one XDK file to do this i will not supply it sorry.
just copy and save this code in to notepad and save as ***.bat
reason it movies files and stuff is if you don't xuipkg will extract only in its root folder cant do it into folders so you end up with loads of files in the root folder this way is cleaner.
CODE
@echo off
:Extract2
cls
echo:
echo you selected Extract xuizip
echo:
echo:
echo Please enter...
Set /p name=enter file name
color 06
md extracted
move "%name%" "extracted"
move "xuipkg.exe" "extracted"
cd extracted
xuipkg /u "%name%"
cd..
move "extracted\%name%" .
move "extracted\xuipkg.exe" .
pause
exit
This post has been edited by rocky5: Mar 1 2010, 11:28 AM