Help - Search - Members - Calendar
Full Version: Remove File Manager
Scenyx Entertainment Community > Xbox1 Forums > Dashboard Forums > Official Team UIX Forums > User.Interface.X (UIX) Code
UGLYMONKEY
Around about the 2nd December my little brothers gonna be inheriting my xbox, could anyone tell me how to disable the file manager from uix (i think i know how, but which xip is it in)? i dont want him messing around with files.

Thanx
conners
do a search in the code section, for over 90 days and you`ll see a guide on how to remove memory manager from settings, but instead of deleating memory just remove the 2 lines above it for file manager, its in settings3/default
t1x2irc2
this is how i'd do it

default.xip/settings.xap


CODE
function StartSettingsMenu()
{
   var c = theSettingsMenu.children[0].children[0];
   if((strCurMenu == "SETTINGS") & (strPrevMenu == "SETTINGS"))
   {
       nCurSettingsMenuItem = 0;
       nNumSettingsMenuItems = 6; <--subtract 1
       nCurSettingsMenuButton = 0;
       nSettingsScroll = 0;
   }
   var sSettingsMenu = new Array(7); <-- subtract 1
   var index = 0;
   sSettingsMenu[index] = theTranslator.Translate("FILE MANAGER"); <--rem
   index = index + 1;                                                  <--rem




if you want to keep the menu option and still need access... you could try to add a password snippit ....remember kids are smart and if i was you id leave out any app that has a file manager..




UGLYMONKEY
QUOTE(t1x2irc2 @ Nov 18 2005, 06:53 PM)
this is how i'd do it

default.xip/settings.xap


CODE
function StartSettingsMenu()
{
   var c = theSettingsMenu.children[0].children[0];
   if((strCurMenu == "SETTINGS") & (strPrevMenu == "SETTINGS"))
   {
       nCurSettingsMenuItem = 0;
       nNumSettingsMenuItems = 6; <--subtract 1
       nCurSettingsMenuButton = 0;
       nSettingsScroll = 0;
   }
   var sSettingsMenu = new Array(7); <-- subtract 1
   var index = 0;
   sSettingsMenu[index] = theTranslator.Translate("FILE MANAGER"); <--rem
   index = index + 1;                                                  <--rem


if you want to keep the menu option and still need access... you could try to add a password snippit ....remember kids are smart and if i was you id leave out any app that has a file manager..
*




thanx that make sure he cant mess it up, if i do need file access i'll just run something from disc.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.