Editing XRegistry.sys

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 8: Line 8:


=Rebuild, regenerate, restore processes=
=Rebuild, regenerate, restore processes=
The PS3 system always tries to keep a record of everything that was made before (like the number of users that was created by storing their number in a cumulative counter that never decreases). For this reason when new info from another xRegistry.sys needs to be added to the local xRegistry.sys the system does a selective "merging" of their values
The PS3 system always tryes to keep a record of everything that was made before (like the number of users that was created by storing his number in a cumulative counter that never decreases). For this reason when new info from another xregistry.sys needs to be added to the local xRegistry.sys the system does a selective "merging" of his values


This processes changes the values inside xRegistry.sys, but also can involve a whole rebuild of xRegistry.sys when new entries are added (like when going from 1.00 firmware to 4.66 firmware)
This processes changes the values inside xRegistry.sys, but also can involve a whole rebuild of xRegistry.sys when new entries are added (like when going from 1.00 firmware to 4.66 firmware)
Line 18: Line 18:


==Restore default settings==
==Restore default settings==
Some settings of xRegistry.sys (the ones that appears in XMB {{icon category settings}} column) can be restored to their default values by rebooting the PS3 in [[Recovery Menu]] and using the option 2: ''Restore Default Settings''
Some settings of xRegistry.sys (the ones that appears in XMB {{icon category settings}} column) can de restored to his default values by rebooting the PS3 in [[Recovery Menu]] and using the option 2: ''Restore Default Settings''


==Backup and Restore from a HDD backup==
==Backup and Restore from a HDD backup==
Line 30: Line 30:
**For NAND flash. xRegistry.sys is stored in real FLASH... unknown kill method <!--i dont have a NAND, never tryed, and im not going to suggest to erase it manually, if someone knows please explain the method here-->
**For NAND flash. xRegistry.sys is stored in real FLASH... unknown kill method <!--i dont have a NAND, never tryed, and im not going to suggest to erase it manually, if someone knows please explain the method here-->


= xRegistry.sys access from GameOS =
=xRegistry.sys access from gameOS=
*[[Talk:VSH#xRegistry_Access]]
*https://github.com/Estwald/irismanager-4-x/blob/master/source/sysregistry.c
*https://github.com/Estwald/irismanager-4-x/blob/master/source/sysregistry.c
*https://github.com/Zarh/ManaGunZ/blob/master/MGZ/source/xreg.h https://github.com/Zarh/ManaGunZ/blob/master/MGZ/source/xreg.c
*https://github.com/aquilino/allps3tools/blob/master/kakaroto-ps3utils/registry.tcl
*https://github.com/aquilino/allps3tools/blob/master/kakaroto-ps3utils/registry.tcl
*http://www.psdevwiki.com/ps3/Talk:VSH#xRegistry.h
*Kakaroto's decrypt and dump a PS3 backup exploit


=Structure=
=Structure=
Whole file size is 0x40000, seems to be divided in 4 areas of 0x10000 bytes each and only the first two are used
*The entries in the tables are officially codenamed '''key''' and '''value''' as can be seen in this LV1 strings:
**Registry Value NotFound
**Registry Key AlreadyPresent
**Registry AddKey Failed
**Registry Key NotFound
**x3mw:Registry:Addkey
**AddToCache error @ AddKey
**Setvalue error happened /setting/categoryVersion [%x]
The '''key''' is the setting itself (as a more abstract concept), and the '''value''' is the data stored by the key
==Header==
==Header==
The header is 0x10 length and seems to contain static values
The header consists of a 0x10 bytes (seems to be static).


  BC AD AD BC 00 00 00 90 00 00 00 02 BC AD AD BC
  BC AD AD BC 00 00 00 90 00 00 00 02 BC AD AD BC
Line 59: Line 46:
! Offset !! Length !! Name !! Example !! Notes
! Offset !! Length !! Name !! Example !! Notes
|-
|-
| 0x0 || 0x4 || '''header_mark''' || BC AD AD BC ||  
| 0x0 || 0x4 || '''header mark''' || BC AD AD BC ||  
|-
|-
| 0x4 || 0x4 || {{cellcolors|#ff6666}} ''unk_header_1'' || 00 00 00 90 || binary flags ? (144 in decimal... and... 10010000 in binary)
| 0x4 || 0x4 || ? || 00 00 00 90 || Unknown
|-
|-
| 0x8 || 0x4 || {{cellcolors|#ff6666}} ''unk_header_2'' || 00 00 00 02 || fileformat revision ?
| 0x8 || 0x4 || ? || 00 00 00 02 || Unknown
|-
|-
| 0xC || 0x4 || '''header_mark''' || BC AD AD BC ||  
| 0xC || 0x4 || '''header mark''' || BC AD AD BC ||  
|-
|-
|}
|}


*Speculation
==Index Entries==
**Because are in the header... this values should be something generic that affects all the settings inside the file
**'''unk_header_2''' could be the xregistry.sys fileformat revision, if this is true it means there must be a previous version of it, used in some old retail firmwares, or maybe even older in pre-retail firmware or prototype PS3 models, the changes in between v1 and v2 could affect all entries in the file (such missing fields for security purposes in v1 that was added in v2) and as a consequence the whole file format structure could be different
 
==Key Table==


{| class="wikitable"
{| class="wikitable"
Line 79: Line 62:
! Offset !! Length !! Name !! Example !! Notes
! Offset !! Length !! Name !! Example !! Notes
|-
|-
| 0x0 || 0x2 || {{cellcolors|#ff6666}} ''unk_key'' || 25 A0 || <strike>Entry ID</strike> ?
| 0x0 || 0x2 || ? || 25 A0 || <strike>Entry ID (?)</strike>
|-{{cellcolors|lightgrey}}
| colspan="5" |
|-
|-
| 0x2 || 0x2 || '''key_length''' || 00 20 ||  
| 0x2 || 0x2 || '''string length''' || 00 20 ||  
|-
|-
| 0x4 || 0x1 || '''key_type''' || 00 || 0 = Unlocked / In use<br>1 = Locked / Inactive<br>2 = Hidden / Never used<br>3 = Directory
| 0x4 || 0x1 || '''string type''' || 00 || 0 = Unlocked / In use<br>1 = Locked / Inactive<br>2 = Hidden / Never used<br>3 = Directory
|-
|-
| 0x5 || ''variable'' || '''key''' || /setting/parental/passwordNumber ||  
| 0x5 || ''variable'' || '''string''' || /setting/parental/passwordNumber ||  
|-
|-
| 0x5 + '''key_length''' || 0x1 || '''null''' || 00 || Entry terminator
| 0x5 + '''string length''' || 0x01 || '''null''' || 00 || Separator
|}
|}


The last entry is marked with 0xAABBCCDDEE0000. This entry can also appear several times inside the table to mark a "break point" for some specials "subentries" (or subfolders)
The last entry is marked with 0xAABBCCDDEE0000. This entry can also be used several times inside the table to mark a "break point" for some specials "subentries" (or subfolders)


*Notes
*Notes
**The entry 0xAABBCCDDEE0000 can be used inside the table to overwrite and old entry, the rests of the old entry are visibles after the seventh byte (''etting...'' instead of ''/setting''), seems to be related with the users that has been created/erased before... it can be an error of the process that updates the file, or maybe are the rests of groups of entries that was erased or disabled
**The entry 0xAABBCCDDEE0000 can be used inside the table to overwrite and old entry, the rests of the old entry are visibles after the seventh byte (''etting...'' instead of ''/setting'')... in the examples found seems to be related with the users that has been created/erased before... it can be an error of the process that updates the file, or maybe are the rests of groups of entries that was erased or disabled
 
==Value Table==
There is a 0x10 length area at offset 0xFFF0 that seems to be a bit special, is copyed here as example, some values in it seems to be generic, note the value 0x4D26 is repeated two times, actually, it looks like two groups of two values each: 0x4D26007A and 0x4D260062
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
0000FFF0  4D 26 00 7A 4D 26 00 62 00 04 00 00 00 00 00 00  M&.zM&.b........


After that the data table starts at offset 0x10000 entries are concatenated, the big areas filled with zeroes (that looks like gaps) are actually delimited by the data entries, so by reading all the entries consecutivelly it can be mapped all the data table
==Data Entries==
The entry data begins at 0xFFF0. There is a 2 byte marker here (0x4D26) indicating it's the data section, continued by a table of data entries.


{| class="wikitable"
{| class="wikitable"
Line 109: Line 85:
! Offset !! Length !! Name !! Example || Notes
! Offset !! Length !! Name !! Example || Notes
|-
|-
| 0x0 || 0x2 || {{cellcolors|#ff6666}} ''unk_value_1'' || 00 00 || <strike>Flags</strike>, or parent-child hierarchy info, or timestamps ?. Usually zeroes
| 0x0 || 0x2 || ? || 00 00 || <strike>Flags (?)</strike>
|-
|-
| 0x2 || 0x2 || '''key_offset''' || 00 86 || Indicates the owner of this '''value'''<br>+ 0x10 of the static header = absolute offset
| 0x2 || 0x2 || '''relative entry offset''' || 00 86 || + 0x10 of the static header = absolute entry offset
|-
|-
| 0x4 || 0x2 || {{cellcolors|#ff6666}} ''unk_value_2'' || 81 2D || <strike>Entry ID</strike> or 16 bits checksum ? (candidates are [https://en.wikipedia.org/wiki/BSD_checksum BSD16] and CRC16)
| 0x4 || 0x2 || ? || 81 2D || <strike>Entry ID (?)</strike> (isn't the same as file name entry id)
|-{{cellcolors|lightgrey}}
| colspan="5" |
|-
|-
| 0x6 || 0x2 || '''value_length''' || 00 04 ||  
| 0x6 || 0x2 || '''data length''' || 00 04 ||  
|-
|-
| 0x8 || 0x1 || '''value_type''' || 01 || 0 = boolean<br>1 = integer<br>2 = string
| 0x8 || 0x1 || '''data type''' || 01 || 0 = boolean<br>1 = integer<br>2 = string
|-
|-
| 0x9 || ''variable'' || '''value''' || 00 00 55 53 ||  
| 0x9 || ''variable'' || '''data''' || 00 00 55 53 ||  
|-
|-
| 0x9 + '''value_length''' || 0x1 || '''null''' || 00 || Entry terminator
| 0x9 + '''data length''' || 0x1 || '''null''' || 00 || Separator
|}
|}


Line 129: Line 103:


= Settings  =
= Settings  =
The settings are pretty cryptic in name, you might not notice anything after changing one. If you do notice a change please add to this table.  
The settings are pretty cryptic in name, you might not notice anything after changing one. If you do notice a change please add to this table.  
Checksums found by Mayham


== Common Settings ==
== Common Settings ==
Line 138: Line 115:
! Usage  
! Usage  
! Values
! Values
! Checksums
|-
| /ashreport/reporterStatus
| ?<br>
| 00000000
|
|-
|-
| /setting/parental/bdPc  
| /setting/parental/bdPc  
| Parental Control Activation for BR  
| Parental Control Activation for BR<br>
| 0
| 0
|
|-
|-
| /setting/parental/bdPcAge  
| /setting/parental/bdPcAge  
| Parental Control Level for BR  
| Parental Control Level for BR<br>
| 0
| 0
|
|-
|-
| /setting/parental/dvdRegion  
| /setting/parental/dvdRegion  
| Parental Control DVD Region  
| Parental Control DVD Region<br>
| 18242 (0x4742h=GB)
| 18242 (0x4742h=GB)
|
|-
|-
| /setting/parental/dvdLevel  
| /setting/parental/dvdLevel  
| Parental Control Level for DVDs  
| Parental Control Level for DVDs<br>
| 15
| 15
|
|-
|-
| /setting/parental/gameLevel  
| /setting/parental/gameLevel  
| Parental Control Level for Games  
| Parental Control Level for Games<br>
| 9
| 9
|
|-
|-
| /setting/parental/browserStartControl  
| /setting/parental/browserStartControl  
| Determine whether or not the parental controls restrict access to the web browser  
| Determine whether or not the parental controls restrict access to the web browser<br>
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes
|
|-
|-
| /setting/bddvd/fnr  
| /setting/bddvd/fnr  
| Frame Noise Reduction  
| Frame Noise Reduction<br>
| 2 (Set to reduce fine noise.)
| 2 (Set to reduce fine noise.)
|
|-
|-
| /setting/bddvd/bnr  
| /setting/bddvd/bnr  
| Block Noise Reduction  
| Block Noise Reduction<br>
| 2 (Set to reduce mosaic-like block noise displayed on the screen.)
| 2 (Set to reduce mosaic-like block noise displayed on the screen.)
|
|-
|-
| /setting/bddvd/cinemaConversion  
| /setting/bddvd/cinemaConversion  
| ?
| &nbsp;?  
| 0 = OFF?, 1 = ON?
| 0 = OFF?, 1 = ON?
|
|-
|-
| /setting/bddvd/volume  
| /setting/bddvd/volume  
| Volume level adjustment for Blu-ray movies  
| Volume level adjustment for Blu-ray movies<br>
| 0
| 0
|
|-
|-
| /setting/bddvd/dvdWideScreen  
| /setting/bddvd/dvdWideScreen  
| ?
| &nbsp;?  
| 2
| 2
|
|-
|-
| /setting/photo/slideSpeed  
| /setting/photo/slideSpeed  
| Photo slideshow transition speed  
| Photo slideshow transition speed<br>
| 1
| 1
|
|-
|-
| /setting/photo/normalScenario  
| /setting/photo/normalScenario  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/photo/slideScenario  
| /setting/photo/slideScenario  
| ?
| &nbsp;?  
| 103/104
| 103/104
|
|-
|-
| /setting/photo/slideInterval  
| /setting/photo/slideInterval  
| Time (seconds) between photos in slideshow  
| Time (seconds) between photos in slideshow<br>
| 2
| 2
|
|-
|-
| /setting/photo/slideRepeat  
| /setting/photo/slideRepeat  
| Determine whether to repeat slideshow  
| Determine whether to repeat slideshow<br>
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes<br>
|
|-
|-
| /setting/music/codec  
| /setting/music/codec  
| Sets the codec used for encoding audio CDs  
| Sets the codec used for encoding audio CDs  
| 0 = AAC, 1 = MP3 , 2 = ATRAC
| 0 = AAC, 1 = MP3 , 2 = ATRAC<br>
|
|-
|-
| /setting/music/bitRateAac  
| /setting/music/bitRateAac  
Line 223: Line 223:


6 = 320 kbps  
6 = 320 kbps  
|
|-
|-
| /setting/music/bitRateMp3  
| /setting/music/bitRateMp3  
| Selects the bitrate for MP3 encoding  
| Selects the bitrate for MP3 encoding<br>
|  
|  
0 = 96 kbps  
0 = 96 kbps  
Line 242: Line 244:


7 = 320 kbps  
7 = 320 kbps  
|
|-
|-
| /setting/music/bitRateAtrac  
| /setting/music/bitRateAtrac  
Line 265: Line 269:


9 = 352 kbps  
9 = 352 kbps  
|
|-
|-
| /setting/music/crossFadePlay  
| /setting/music/crossFadePlay  
| Sets amount of time that is crossfaded  
| Sets amount of time that is crossfaded  
| 0 = Off , 1 - 10 = time in seconds
| 0 = Off , 1 - 10 = time in seconds
|
|-
|-
| /setting/music/repeatMode  
| /setting/music/repeatMode  
| Music playback repeat mode  
| Music playback repeat mode<br>
| 0 =, 1 =, 2 =
| 0 =, 1 =, 2 =
|
|-
|-
| /setting/music/shuffleMode  
| /setting/music/shuffleMode  
| Music playback shuffle mode  
| Music playback shuffle mode  
| 0 =, 1 =
| 0 =, 1 =
|
|-
|-
| /setting/music/visualizerSelect  
| /setting/music/visualizerSelect  
| Indicates chosen visualization in music player
| Indicates chosen visualization in music player
| 1/2
| 1/2
|
|-
|-
| /setting/music/audioplayervolume  
| /setting/music/audioplayervolume  
| Volume level adjustment for music  
| Volume level adjustment for music<br>
| 0 = , 1 = , 2 = , 3 = , 4=
| 0 = , 1 = , 2 = , 3 = , 4=
|
|-
|-
| /setting/music/sacdplayervolume  
| /setting/music/sacdplayervolume  
| Volume level adjustment for Super Audio CDs  
| Volume level adjustment for Super Audio CDs  
| 0 - 8
| 0 - 8
|
|-
|-
| /setting/music/cddaEula  
| /setting/music/cddaEula  
| Determine whether or not EULA for CDDA data retrieval has been accepted  
| Determine whether or not EULA for CDDA data retrieval has been accepted<br>
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes<br>
|
|-
|-
| /setting/system/region  
| /setting/system/region  
| Indicates region of the PS3, most systems however can run all games from all regions, so this applies only to some PS3s.
| Indicates region of the PS3, most systems however can run all games from all regions, so this applies only to some PS3s.
| 0
| 0
|
|-
|-
| /setting/system/initialize  
| /setting/system/initialize  
| <span class="Apple-style-span" style="font-family: Helvetica; ">0 = forces ps3 system to run through first time boot-up configuration. Boot-up process changes it to 1 after setup occurs</span>
| <span class="Apple-style-span" style="font-family: Helvetica; ">0 = forces ps3 system to run through first time boot-up configuration. Boot-up process changes it to 1 after setup occurs</span>
| 1
| 1
|
|-
|-
| /setting/system/notification  
| /setting/system/notification  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/dateTime/diffTime  
| /setting/dateTime/diffTime  
| ?
| &nbsp;?  
| 946684520/ 946682172
| 946684520/ 946682172
|
|-
|-
| /setting/dateTime/summerTime  
| /setting/dateTime/summerTime  
| Determine whether Daylight&nbsp;Savings Time is enabled  
| Determine whether Daylight&nbsp;Savings Time is enabled<br>
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes<br>
|
|-
|-
| /setting/dateTime/autoCorrection  
| /setting/dateTime/autoCorrection  
| Automatically updates time when connected to Internet(whenever needed)
| Automatically updates time when connected to Internet(whenever needed)
| 0
| 0
|
|-
|-
| /setting/power/sleep  
| /setting/power/sleep  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/power/wifi  
| /setting/power/wifi  
| Wifi power saving setting  
| Wifi power saving setting<br>
| 0
| 0
|
|-
|-
| /setting/display/0/port  
| /setting/display/0/port  
| ?
| &nbsp;?  
| 4
| 4
|
|-
|-
| /setting/display/0/type  
| /setting/display/0/type  
| ?
| &nbsp;?  
| 4 = HDMI and Component, 5 = RGB (SCART and VGA), 6 =&nbsp;YPbPr (SCART connector)
| 4 = HDMI and Component, 5 = RGB (SCART and VGA), 6 =&nbsp;YPbPr (SCART connector)
|
|-
|-
| /setting/display/0/aspect  
| /setting/display/0/aspect  
Line 339: Line 362:
|-
|-
| /setting/display/0/setting  
| /setting/display/0/setting  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/display/screenSaver/startTime  
| /setting/display/screenSaver/startTime  
| Time (in minutes) to wait to start screen saver  
| Time (in minutes) to wait to start screen saver<br>
| 20
| 20
|
|-
|-
| /setting/sound/0/port  
| /setting/sound/0/port  
| ?
| &nbsp;?  
| 255
| 255
|
|-
|-
| /setting/sound/0/setting  
| /setting/sound/0/setting  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/sound/0/aac  
| /setting/sound/0/aac  
| AAC Audio Format pass-through HDMI option
| AAC Audio Format pass-through HDMI option
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/sound/0/dolbyDigital  
| /setting/sound/0/dolbyDigital  
| Dolby Digital Audio Format pass-through HDMI option
| Dolby Digital Audio Format pass-through HDMI option
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/sound/0/dts  
| /setting/sound/0/dts  
| DTS Audio Format pass-through HDMI option
| DTS Audio Format pass-through HDMI option
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/sound/0/lpcm71  
| /setting/sound/0/lpcm71  
| LPCM 7.1 Audio Format pass-through HDMI option
| LPCM 7.1 Audio Format pass-through HDMI option
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/sound/0/lpcm51  
| /setting/sound/0/lpcm51  
| LPCM 5.1 Audio Format pass-through HDMI option
| LPCM 5.1 Audio Format pass-through HDMI option
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/sound/0/frequency  
| /setting/sound/0/frequency  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/sound/0/fs/2ch  
| /setting/sound/0/fs/2ch  
| ?
| &nbsp;?  
| 6
| 6
|
|-
|-
| /setting/sound/0/fs/6ch  
| /setting/sound/0/fs/6ch  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/sound/0/fs/8ch  
| /setting/sound/0/fs/8ch  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/soundIn/0/volume  
| /setting/soundIn/0/volume  
| Microphone Level
| Microphone Level
| 0 = Off(?) Level 1-5  
| 0 = Off(?) Level 1-5  
|
|-
|-
| /setting/net/cnfName  
| /setting/net/cnfName  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/net/version  
| /setting/net/version  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/net/enable  
| /setting/net/enable  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/net/device  
| /setting/net/device  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/net/etherMode  
| /setting/net/etherMode  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/authProto  
| /setting/net/authProto  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/net/auth8021xType  
| /setting/net/auth8021xType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/howToSetupIp  
| /setting/net/howToSetupIp  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/dnsFlag  
| /setting/net/dnsFlag  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/httpProxyFlag  
| /setting/net/httpProxyFlag  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/httpProxyPort  
| /setting/net/httpProxyPort  
| ?
| &nbsp;?  
| 8080
| 8080
|
|-
|-
| /setting/net/mtu  
| /setting/net/mtu  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/wirelessEnbale  
| /setting/net/wirelessEnbale  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/user/defaultLoginUserId
| /setting/user/defaultLoginUserId
| ?
| &nbsp;?  
| -1
| -1
|
|-
|-
| /setting/video/screenMode  
| /setting/video/screenMode  
| Change the screen mode.  
| Change the screen mode.  
| 0 (Normal, Zoom, Full Screen, Original)
| 0 (Normal, Zoom, Full Screen, Original)<br>
|
|-
|-
| /setting/video/outputChannel  
| /setting/video/outputChannel  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/video/videoplayervolume  
| /setting/video/videoplayervolume  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/avc/initialCameraMode  
| /setting/avc/initialCameraMode  
| ?
| &nbsp;?  
| 0 = , 1 =
| 0 = , 1 =
|
|-
|-
| /setting/parental/gameLevel0control  
| /setting/parental/gameLevel0control  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/bddvd/bdMenuLanguage  
| /setting/bddvd/bdMenuLanguage  
| BD Menu Language  
| BD Menu Language<br>
| 6647399 (0x656E67h=eng) 6975598
| 6647399 (0x656E67h=eng) 6975598
|
|-
|-
| /setting/bddvd/bdSoundLanguage  
| /setting/bddvd/bdSoundLanguage  
| BD Sound Language  
| BD Sound Language<br>
| 6647399 (0x656E67h=eng)
| 6647399 (0x656E67h=eng)
|
|-
|-
| /setting/bddvd/bdCaptionLanguage  
| /setting/bddvd/bdCaptionLanguage  
| BD Caption Language  
| BD Caption Language<br>
| 6647399 (0x656E67h=eng)
| 6647399 (0x656E67h=eng)
|
|-
|-
| /setting/bddvd/dvdMenuLanguage  
| /setting/bddvd/dvdMenuLanguage  
| DVD Menu Language  
| DVD Menu Language<br>
| 25966 (0x656Eh=en) 27233
| 25966 (0x656Eh=en) 27233
|
|-
|-
| /setting/bddvd/dvdSoundLanguage  
| /setting/bddvd/dvdSoundLanguage  
| DVD Sound Language  
| DVD Sound Language<br>
| 25966 (0x656Eh=en)
| 25966 (0x656Eh=en)
|
|-
|-
| /setting/bddvd/dvdCaptionLanguage  
| /setting/bddvd/dvdCaptionLanguage  
| DVD Caption Language  
| DVD Caption Language<br>
| 25966 (0x656Eh=en)
| 25966 (0x656Eh=en)
|
|-
|-
| /setting/bddvd/fnrForDvdRom  
| /setting/bddvd/fnrForDvdRom  
| Frame Noise Reduction for DVDRom  
| Frame Noise Reduction for DVDRom<br>
| 0 (Set to reduce fine noise.)
| 0 (Set to reduce fine noise.)<br>
|
|-
|-
| /setting/bddvd/bnrForDvdRom  
| /setting/bddvd/bnrForDvdRom  
| Block Noise Reduction for DVDRom  
| Block Noise Reduction for DVDRom<br>
| 0 (Set to reduce mosaic-like block noise displayed on the screen.)
| 0 (Set to reduce mosaic-like block noise displayed on the screen.)<br>
|
|-
|-
| /setting/bddvd/dvdRegionCode  
| /setting/bddvd/dvdRegionCode  
Line 507: Line 571:
1 (USA), 2 (EUROPE), 3( Southeast Asia, South Korea, Republic of China (Taiwan), Hong Kong, Macau, 4 (Mexico, Central America, South America, Australia, New Zealand, Oceania)  
1 (USA), 2 (EUROPE), 3( Southeast Asia, South Korea, Republic of China (Taiwan), Hong Kong, Macau, 4 (Mexico, Central America, South America, Australia, New Zealand, Oceania)  


full DVD regional codes in http://en.wikipedia.org/wiki/DVD_region_code
full DVD regional codes in http://en.wikipedia.org/wiki/DVD_region_code <br>
|
|-
|-
| /setting/bddvd/bdRegionCode  
| /setting/bddvd/bdRegionCode  
Line 515: Line 580:


Full BD regional codes in http://en.wikipedia.org/wiki/Blu-ray_Disc  
Full BD regional codes in http://en.wikipedia.org/wiki/Blu-ray_Disc  
|
|-
|-
| /setting/bddvd/dvdTvSystem  
| /setting/bddvd/dvdTvSystem  
| TV System  
| TV System  
| 2 (PAL) (Is set to 0 on my NTSC console using Composite)
| 2 (PAL) (Is set to 0 on my NTSC console using Composite)<br>
|
|-
|-
| /setting/bddvd/dvdUpConvert  
| /setting/bddvd/dvdUpConvert  
| UpConverter from SD to HD  
| UpConverter from SD to HD<br>
| 3
| 3
|
|-
|-
| /setting/bddvd/drc  
| /setting/bddvd/drc  
| Dynamic range compression  
| Dynamic range compression<br>
| 0
| 0
|
|-
|-
| /setting/bddvd/colorButtonAssign  
| /setting/bddvd/colorButtonAssign  
| ?
| &nbsp;?  
| 1230 /0123
| 1230 /0123
|
|-
|-
| /setting/bddvd/soundFormat/hdmi  
| /setting/bddvd/soundFormat/hdmi  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/bddvd/soundFormat/spdif  
| /setting/bddvd/soundFormat/spdif  
| ?
| &nbsp;?  
|
| 1
| 1
|-
|-
| {{nobr|/setting/bddvd/videoFormat/hdmi/colorSpace}}
| {{nobr|/setting/bddvd/videoFormat/hdmi/colorSpace}}
| ?
| &nbsp;?  
| 2
| 2
|
|-
|-
| {{nobr|/setting/bddvd/videoFormat/hdmi/1080_24p}}
| {{nobr|/setting/bddvd/videoFormat/hdmi/1080_24p}}
| Indicates whenever PS3 can show BD movies in 24 frames - just as they were recorded while playing in Full HD.
| Indicates whenever PS3 can show BD movies in 24 frames - just as they were recorded while playing in Full HD.
| 2
| 2
|
|-
|-
| /setting/music/cddaServer  
| /setting/music/cddaServer  
| ?
| &nbsp;?  
| 0 = , 1 =
| 0 = , 1 =
|
|-
|-
| /setting/music/atracActivation  
| /setting/music/atracActivation  
| ATRAC Activation  
| ATRAC Activation  
| 0 = Deactivated, 1 = Activated
| 0 = Deactivated, 1 = Activated
|
|-
|-
| /setting/music/wmaActivation  
| /setting/music/wmaActivation  
| WMA Activation  
| WMA Activation  
| 0 = Deactivated, 1 = Activated
| 0 = Deactivated, 1 = Activated
|
|-
|-
| /setting/music/cdOutputFs  
| /setting/music/cdOutputFs  
| ?
| &nbsp;?  
| 2 /4
| 2 /4
|
|-
|-
| /setting/music/ditherSetting  
| /setting/music/ditherSetting  
| ?
| &nbsp;?  
| 0 =, 1 =
| 0 =, 1 =
|
|-
|-
| /setting/music/bitmappingSetting  
| /setting/music/bitmappingSetting  
| Sets the processing method for audio  
| Sets the processing method for audio  
| 0 = Off , 1 = Type 1 , 2 = Type 2 , 3 = Type 3
| 0 = Off , 1 = Type 1 , 2 = Type 2 , 3 = Type 3
|
|-
|-
| /setting/pad/vibrationEnable  
| /setting/pad/vibrationEnable  
| Dual Shock vibration  
| Dual Shock vibration<br>
| 0 = OFF, 1 = ON (If this option is set to [Off], the controller will not vibrate even if the vibration function is turned on in the game.)
| 0 = OFF, 1 = ON (If this option is set to [Off], the controller will not vibrate even if the vibration function is turned on in the game.)<br>
|
|-
|-
| /setting/system/language  
| /setting/system/language  
| System Language &nbsp;  
| System Language &nbsp;  
| 0x0=German, 0x1=English (US), 0x2=Spanish, 0x3=French, 0x4=Italian, 0x5=Dutch, 0x6=Portuguese (Por), 0x7=Russian, 0x8=Japanese, 0x9=Korean, 0xA=Chinese&nbsp;(traditional), 0xB=Chinese&nbsp;(simplified), 0xC=Finnish, 0xD=Swedish, 0xE=Danish, 0xF=Norwegian, 0x10=Polish, 0x11=Portuguese (Bra), 0x12=English (UK)  
| 0x0=German, 0x1=English (US), 0x2=Spanish, 0x3=French, 0x4=Italian, 0x5=Dutch, 0x6=Portuguese (Por), 0x7=Russian, 0x8=Japanese, 0x9=Korean, 0xA=Chinese&nbsp;(traditional), 0xB=Chinese&nbsp;(simplified), 0xC=Finnish, 0xD=Swedish, 0xE=Danish, 0xF=Norwegian, 0x10=Polish, 0x11=Portuguese (Bra), 0x12=English (UK)  
|
|-
|-
| /setting/system/characterCodeOem  
| /setting/system/characterCodeOem  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/system/characterCodeAnsi  
| /setting/system/characterCodeAnsi  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/buttonAssign  
| /setting/system/buttonAssign  
| Button Layout  
| Button Layout  
| 0 = O is enter, 1 = X is enter
| 0 = O is enter, 1 = X is enter
|
|-
|-
| /setting/system/licenseArea  
| /setting/system/licenseArea  
| License Area (?)  
| License Area (?)  
| 2
| 2
|
|-
|-
| /setting/system/discBootFirst  
| /setting/system/discBootFirst  
| &nbsp;?  
| &nbsp;?<br>
|  
| <br>
|
|-
|-
| /setting/system/soundEffect  
| /setting/system/soundEffect  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/system/coreDump  
| /setting/system/coreDump  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/matEnable  
| /setting/system/matEnable  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/updateServerUrl  
| /setting/system/updateServerUrl  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/wolDex  
| /setting/system/wolDex  
| ?
| &nbsp;?  
|  
| <br>
|-
|
|-|-
| /setting/dateTime/dateFormat  
| /setting/dateTime/dateFormat  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/dateTime/timeFormat  
| /setting/dateTime/timeFormat  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/dateTime/timeZone  
| /setting/dateTime/timeZone  
| ?
| &nbsp;?  
| 29 /104
| 29 /104
|
|-
|-
| /setting/display/tvSystem  
| /setting/display/tvSystem  
| Allowed SDTV /&nbsp;EDTV video mode  
| Allowed SDTV /&nbsp;EDTV video mode<br>
| 1 = 576p/576i or anything else for 480p/480i. 1 did not prevent SNES9x from using 480p on an European PS3, so it seems to only affect the XMB and official apps.  
|  
1 = 576p/576i or anything else for 480p/480i. 1 did not prevent SNES9x from using 480p on an European PS3, so it seems to only affect the XMB and official apps.  
|
|-
|-
| /setting/display/colorSpace  
| /setting/display/colorSpace  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/display/yuvSuperWhite  
| /setting/display/yuvSuperWhite  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/display/rgbOutputRange  
| /setting/display/rgbOutputRange  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/display/0/initial  
| /setting/display/0/initial  
| ?
| &nbsp;?  
| 4
| 4
|
|-
|-
| /setting/display/0/resolution  
| /setting/display/0/resolution  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/display/0/modeid  
| /setting/display/0/modeid  
| ?
| &nbsp;?  
| 257 = 1080p, 2525 = 720p (works with VGA, /setting/display/0/type must be set to 5)&nbsp;, F0F = 576p , 505 = 576i<br>With these we are propably able to force resolutions for any connection type. Possible resolutions: [[Connectors#Supported_Resolutions]]
|  
257 = 1080p, 2525 = 720p (works with VGA, /setting/display/0/type must be set to 5)&nbsp;, F0F = 576p , 505 = 576i
 
With these we are propably able to force resolutions for any connection type. Possible resolutions: [[Connectors#Supported_Resolutions]]
|
|-
|-
| /setting/display/0/initialModeid  
| /setting/display/0/initialModeid  
| ?
| &nbsp;?  
| 257
| 257
|
|-
|-
| /setting/display/0/hdcp  
| /setting/display/0/hdcp  
| &nbsp;High-bandwidth Digital Content Protection (HDCP) is a form of digital copy protection developed by Intel Corporation to prevent copying of digital audio and video content as it travels across High-Definition Multimedia Interface (HDMI) connection. (http://en.wikipedia.org/wiki/HDCP)  
| &nbsp;High-bandwidth Digital Content Protection (HDCP) is a form of digital copy protection developed by Intel Corporation to prevent copying of digital audio and video content as it travels across High-Definition Multimedia Interface (HDMI) connection. (http://en.wikipedia.org/wiki/HDCP)  
| 1. Setting this parameter to 0 makes PS3 compatible with any non-HDCP monitor (when allowed by [[Hypervisor_Reverse_Engineering#AV_Manager|AV Manager]] and proper set with syscon, otherwise the '0' is ignored and HDCP enforced on Retail/CEX models)
| 1. Setting this parameter to 0 makes PS3 compatible with any non-HDCP monitor (when allowed by [[Hypervisor_Reverse_Engineering#AV_Manager|AV Manager]] and proper set with syscon, otherwise the '0' is ignored and HDCP enforced on Retail/CEX models)
|
|-
|-
| /setting/display/0/crossColorReduction  
| /setting/display/0/crossColorReduction  
| Reduces Cross-Color artifacts while in 480i/576i video modes
| Reduces Cross-Color artifacts while in 480i/576i video modes
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/net/apAutoConfig  
| /setting/net/apAutoConfig  
| ?
| &nbsp;?  
| 2
| 2
|
|-
|-
| /setting/net/eapMd5  
| /setting/net/eapMd5  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/upnpFlag  
| /setting/net/upnpFlag  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/net/autoDlDebug  
| /setting/net/autoDlDebug  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/autoDlFlag  
| /setting/net/autoDlFlag  
| ?
| &nbsp;?  
| 0 = disabled, 1 = auto patch download, 2 = auto pup download, 4 = auto nsx pull, 8 = auto list download, 0x10 = auto trophy sync,  
| 0 = disabled, 1 = auto patch download, 2 = auto pup download, 4 = auto nsx pull, 8 = auto list download, 0x10 = auto trophy sync,  
|
|-
|-
| /setting/net/emulationType
| /setting/net/emulationType
| ?
| &nbsp;?  
|
|
|-
|-
| /setting/net/eth2/howToSetupIp
| /setting/net/eth2/howToSetupIp
| ?
| &nbsp;?  
|
|
|-
|-
| /setting/net/aoss/aossFlag  
| /setting/net/aoss/aossFlag  
| ?
| &nbsp;?  
|  
|  
|-
|-
Line 707: Line 821:
| Indicates whenever PS3 can be booted remotely from other devices
| Indicates whenever PS3 can be booted remotely from other devices
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/premo/psp01/keyType  
| /setting/premo/psp01/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp02/keyType  
| /setting/premo/psp02/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp03/keyType  
| /setting/premo/psp03/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp04/keyType  
| /setting/premo/psp04/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp05/keyType  
| /setting/premo/psp05/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp06/keyType  
| /setting/premo/psp06/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp07/keyType  
| /setting/premo/psp07/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/psp08/keyType  
| /setting/premo/psp08/keyType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/edy/debug  
| /setting/edy/debug  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/video/sequentialPlay
| /setting/video/sequentialPlay
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/np/debug  
| /setting/np/debug  
| &nbsp;When an application is started, Playstation Network/GameUpdate information related to that application is displayed.  
| &nbsp;When an application is started, Playstation Network/GameUpdate information related to that application is displayed.  
| 0 = Disabled , 1 = Enabled
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/np/debugIngameCommerce2
| /setting/np/debugIngameCommerce2
| ?
|  
| 0
| 0
|
|-
|-
| /setting/np/debugSFForce
| /setting/np/debugSFForce
| ?
|  
| 0
| 0
|
|-
|-
| /setting/np/tppsProxyFlag  
| /setting/np/tppsProxyFlag  
| ?
|  
| 0
| 0
|
|-
|-
| /setting/np/tppsProxyPassword  
| /setting/np/tppsProxyPassword  
| ?
|  
|  
|
|
|-
|-
| /setting/np/tppsProxyPort  
| /setting/np/tppsProxyPort  
| ?
|  
| 8080
| 8080
|
|-
|-
| /setting/np/tppsProxyServer
| /setting/np/tppsProxyServer
| ?
|  
|
|
|
|-
|-
| /setting/np/tppsProxyUserName
| /setting/np/tppsProxyUserName
| ?
|  
|  
|
|
|-
|-
| /setting/soundIn/1/usbHeadsetSound
| /setting/soundIn/1/usbHeadsetSound
| ?
|  
|  
|
|
|-
|-
| /setting/soundIn/0/sidetone
| /setting/soundIn/0/sidetone
| ?
|  
| 3
| 3
|
|-
|-
| /setting/system/bootMode
| /setting/system/bootMode
| ?
|  
| PS3
| PS3
|
|-
|-
| /setting/system/turnOffWarning
| /setting/system/turnOffWarning
| ?
|  
|  
|
|
|-
|-
| /setting/np/navOnly  
| /setting/np/navOnly  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/avc/vga/lastBitrate  
| /setting/avc/vga/lastBitrate  
| ?
| &nbsp;?  
| 1080000
| 1080000
|
|-
|-
| /setting/print/printerMaker  
| /setting/print/printerMaker  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/print/portType  
| /setting/print/portType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/print/usb/vid  
| /setting/print/usb/vid  
| Vendor ID for printer  
| Vendor ID for printer<br>
| 0
| 0
|
|-
|-
| /setting/print/usb/pid  
| /setting/print/usb/pid  
| Product ID for printer  
| Product ID for printer<br>
| 0
| 0
|
|-
|-
| /setting/print/param/mediaSize  
| /setting/print/param/mediaSize  
| Size of paper in printer  
| Size of paper in printer<br>
| 0
| 0
|
|-
|-
| /setting/print/param/mediaType  
| /setting/print/param/mediaType  
| Type of paper in printer  
| Type of paper in printer<br>
| 0
| 0
|
|-
|-
| /setting/print/param/printQuality  
| /setting/print/param/printQuality  
| Print quality  
| Print quality<br>
| 0
| 0
|
|-
|-
| /setting/print/param/borderless  
| /setting/print/param/borderless  
| Determine whether or not to print to the edge of the page  
| Determine whether or not to print to the edge of the page<br>
| 0
| 0
|
|-
|-
| /setting/autoboot/startTime  
| /setting/autoboot/startTime  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/browser/ifilter  
| /setting/browser/ifilter  
| ?
| &nbsp;?  
| 0, 1
| 0
|
|-
|-
| /setting/browser/ifilterAddress  
| /setting/browser/ifilterAddress  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/browser/ifilterPort  
| /setting/browser/ifilterPort  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/browser/ifilterUsername  
| /setting/browser/ifilterUsername  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/browser/ifilterPassword  
| /setting/browser/ifilterPassword  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/browser/ifilterBase64  
| /setting/browser/ifilterBase64  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/browser/trendEula  
| /setting/browser/trendEula  
| Determine whether or not TrendMicro EULA was accepted  
| Determine whether or not TrendMicro EULA was accepted<br>
| 0, 1
| 0
|
|-
|-
| /setting/browser/trendEnable  
| /setting/browser/trendEnable  
| Enable or disable TrendMicro internet filter  
| Enable or disable TrendMicro internet filter<br>
| 0, 1
| 0
|
|-
|-
| /setting/dlna/dlnaFlag  
| /setting/dlna/dlnaFlag  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/game/emuUpConvert  
| /setting/game/emuUpConvert  
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Upscaler]'''<br>Determine whether or not to upscale video for PS1/PS2 emulation  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Upscaler]'''<br>Determine whether or not to upscale video for PS1/PS2 emulation<br>
| 0 = Off / 1 = Normal / 2 = Full
| 2
|
|-
|-
| /setting/game/emuSmoothing  
| /setting/game/emuSmoothing  
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Smoothing]'''<br>Determine whether or not to smooth video for PS1/PS2 emulation  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Smoothing]'''<br>Determine whether or not to smooth video for PS1/PS2 emulation<br>
| 0 = Off / 1 = On
| 0 = Disabled , 1 = Enabled
|
|-
|-
| /setting/game/minisUpConvert
| /setting/game/minisUpConvert
| <abbr title="based in the name... this seems to be a video upscaler for PSP minis initially but maybe also applyed to PSP remasters, but i never saw this icon in XMB, and whoever that posted this info in wiki had it enabled">?</abbr>  
| <abbr title="based in the name... this seems to be a video upscaler for PSP minis initially but maybe also applyed to PSP remasters, but i never saw this icon in XMB, and whoever that posted this info in wiki had it enabled">?</abbr><br>  
| 1
| 1
|
|-
|-
| /setting/game/ps2BgCaution
| /setting/game/ps2BgCaution
| <abbr title="this could be a logo at full screen displayed before the game boots">?</abbr>  
| <abbr title="this could be a logo at full screen displayed before the game boots">?</abbr><br>  
| 0
| 0
|
|-
|-
| /setting/game/ps2emuSaveUtility
| /setting/game/ps2emuSaveUtility
| Shows/hides {{icon category game}} ⇨ '''<nowiki>[</nowiki>[[:File:Saved Data Utility (PS2).jpg|Saved Data Utility (PS2)]]<nowiki>]</nowiki>'''
| Shows/hides [[XMB]] {{icon category game}} ⇨ '''<nowiki>[</nowiki>[[:File:Saved Data Utility (PS2).jpg|Saved Data Utility (PS2)]]<nowiki>]</nowiki>'''
| 0 = Off / 1 = On
| 1
|
|-
|-
| /setting/game/ps2softemuFunc
| /setting/game/ps2softemuFunc
| Shows/hides {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS2 Upscaler]''' and '''[PS2 Smoothing]'''  
| Shows/hides [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS2 Upscaler]''' and '''[PS2 Smoothing]'''<br>
| 0 = Off / 1 = On
| 1 = Enabled, 0=Disabled
|
|-
|-
| /setting/game/pspemu3dDepthAdjust
| /setting/game/pspemu3dDepthAdjust
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]''' ⇨ '''[On]'''  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]''' ⇨ '''[On]'''<br>
| 1 = Weak / 2 / 3 / 4 / 5 = Normal / 6 / 7 = Strong. (3D effect depth)
| 5
|
|-
|-
| /setting/game/pspemu3dDisplay
| /setting/game/pspemu3dDisplay
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]'''  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]'''<br>
| 0 = Off / 1 = On (enables the 3D effect, and the submenu to adjust the depth)
| 1
|
|-
|-
| /setting/game/pspemu3dMenu
| /setting/game/pspemu3dMenu
| Shows/hides {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]'''  
| Shows/hides [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]'''<br>
| 0 = Off / 1 = On (only available for <abbr title="The PS3 retrieves this info from the connected TV">stereoscopic 3D compatible TV's</abbr>)
| 0 / 1
|
|-
|-
| /setting/game/pspemuAdhocModeCh
| /setting/game/pspemuAdhocModeCh
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode Channel]'''  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode Channel]'''<br>
| 0 = Automatic ? / 1 / 6 / 11
| 0
|
|-
|-
| /setting/game/pspemuAdhocModeWlan
| /setting/game/pspemuAdhocModeWlan
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode]'''  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode]'''<br>
| 0 = Off / 1 = On
| 1
|
|-
|-
| /setting/game/pspemuViewmode
| /setting/game/pspemuViewmode
| {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Screen Mode]'''  
| [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Screen Mode]'''<br>
| 0 = Normal ? / 1 = Full Screen
| 0
|
|-
|-
| /setting/camera/plfreq  
| /setting/camera/plfreq  
| ?
| &nbsp;?  
| 4
| 4
|
|-
|-
| /setting/xmb/tvCategory  
| /setting/xmb/tvCategory  
| Shows/hides {{icon category tv}} ?
| &nbsp;?  
| 0 = Off / 1 = On ?
| 0
|
|-
|-
| /setting/xai/debugFlag  
| /setting/xai/debugFlag  
|  &nbsp;?  
|  &nbsp;?  
| 0 / 1 (skips OpenPSID usage)
| 0 / 1 (skips OpenPSID usage)
|
|-
|-
| /setting/categoryVersion  
| /setting/categoryVersion  
| ?
| &nbsp;?  
| 212994
| 212994
|
|-
|-
| /setting/parental/passwordNumber  
| /setting/parental/passwordNumber  
| Parental Password  
| Parental Password  
| 0000
| 0000
|
|-
|-
| /setting/bt/audio2/sdpinfo  
| /setting/bt/audio2/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/audio2/linkkey  
| /setting/bt/audio2/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid1/sdpinfo  
| /setting/bt/hid1/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid1/linkkey  
| /setting/bt/hid1/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid2/sdpinfo  
| /setting/bt/hid2/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid2/linkkey  
| /setting/bt/hid2/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/headsetName  
| /setting/system/headsetName  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/headsetBtId  
| /setting/system/headsetBtId  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/headsetPasskey  
| /setting/system/headsetPasskey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/remoconBtId  
| /setting/system/remoconBtId  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/premo/psp08/nickname  
| /setting/premo/psp08/nickname  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/premo/psp08/macAddress  
| /setting/premo/psp08/macAddress  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/premo/psp08/id  
| /setting/premo/psp08/id  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/premo/psp08/key  
| /setting/premo/psp08/key  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/np/env  
| /setting/np/env  
| [[Environments]]
| [[Environments]]
| np, prod-qa, sp-int, mgmt etc
| np, prod-qa, sp-int, mgmt etc
|
|-
|-
| /setting/np/titleId  
| /setting/np/titleId  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/print/printerModel  
| /setting/print/printerModel  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/print/usb/reserved  
| /setting/print/usb/reserved  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/print/net/reserved  
| /setting/print/net/reserved  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/device/hdmi  
| /setting/device/hdmi  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/system/nickname
| /setting/system/nickname
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/device/ieee802.11  
| /setting/device/ieee802.11  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/device/msslot  
| /setting/device/msslot  
| MS Slot present in hardware
| MS Slot present in hardware
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes
|
|-
|-
| /setting/device/sdslot  
| /setting/device/sdslot  
| SD Slot present in hardware  
| SD Slot present in hardware  
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes
|
|-
|-
| /setting/device/cfslot  
| /setting/device/cfslot  
| CF Slot present in hardware
| CF Slot present in hardware
| 0 = No, 1 = Yes
| 0 = No, 1 = Yes
|
|-
|-
| /setting/user/defaultLoginUserId  
| /setting/user/defaultLoginUserId  
| AutoLogin ID  
| AutoLogin ID  
| -1 = disabled, other numbers = that ID
| -1 = disabled, other numbers = that ID
|
|-
|-
| /setting/user/restoreSignInStatus  
| /setting/user/restoreSignInStatus  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/user/lastCreatedUserId  
| /setting/user/lastCreatedUserId  
| Last Created ID  
| Last Created ID  
| 2 (00000002)
| 2 (00000002)
|
|-
|-
| /setting/user/lastLoginUserId  
| /setting/user/lastLoginUserId  
| Last Logged In ID  
| Last Logged In ID  
| 1 (00000001)
| 1 (00000001)
|
|-
|-
| /setting/user/restoreSignInPassword  
| /setting/user/restoreSignInPassword  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/hddSerial  
| /setting/system/hddSerial  
| HDD Serial Number  
| HDD Serial Number  
| ST94BLANKAS 5BLANKS5
| ST94BLANKAS 5BLANKS5
|
|-
|-
| /setting/premo/bootCount  
| /setting/premo/bootCount  
| ?
| &nbsp;?  
|
| 0
| 0
|-
|-
| /setting/net/wirelessSsid  
| /setting/net/wirelessSsid  
| ?
| &nbsp;?  
| PS3-7digits
| PS3-7digits
|
|-
|-
| /setting/net/wirelessPassPhrase  
| /setting/net/wirelessPassPhrase  
| ?
| &nbsp;?  
| random text
| random text
|
|-
|-
| /setting/premo/powerOffTime  
| /setting/premo/powerOffTime  
| Indicates time after which system will turn off while inactive. Applies only to Remote Play.
| Indicates time after which system will turn off while inactive. Applies only to Remote Play.
| hex values
| hex values
|
|-
|-
| /setting/premo/psp01/nickname  
| /setting/premo/psp01/nickname  
| Linked PSP nickname  
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,091: Line 1,301:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp01/id  
| /setting/premo/psp01/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp01/key  
| /setting/premo/psp01/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp02/nickname  
| /setting/premo/psp02/nickname  
| Linked PSP nickname  
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,107: Line 1,321:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp02/id  
| /setting/premo/psp02/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp02/key  
| /setting/premo/psp02/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp03/nickname  
| /setting/premo/psp03/nickname  
| Linked PSP nickname
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,123: Line 1,341:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp03/id  
| /setting/premo/psp03/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp03/key  
| /setting/premo/psp03/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp04/nickname  
| /setting/premo/psp04/nickname  
| Linked PSP nickname  
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,139: Line 1,361:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp04/id  
| /setting/premo/psp04/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp04/key  
| /setting/premo/psp04/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp05/nickname  
| /setting/premo/psp05/nickname  
| Linked PSP nickname  
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,155: Line 1,381:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp05/id  
| /setting/premo/psp05/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp05/key  
| /setting/premo/psp05/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp06/nickname  
| /setting/premo/psp06/nickname  
| Linked PSP nickname  
| Linked PSP nickname  
|
|
|
|-
|-
Line 1,171: Line 1,401:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp06/id  
| /setting/premo/psp06/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp06/key  
| /setting/premo/psp06/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp07/nickname  
| /setting/premo/psp07/nickname  
| Linked PSP nickname
| Linked PSP nickname  
| <br>
|
|
|-
|-
Line 1,187: Line 1,421:
| Linked PSP bluetooth MAC address  
| Linked PSP bluetooth MAC address  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp07/id  
| /setting/premo/psp07/id  
| Linked PSP ID  
| Linked PSP ID  
| hex values
| hex values
|
|-
|-
| /setting/premo/psp07/key  
| /setting/premo/psp07/key  
| Linked PSP key  
| Linked PSP key  
| hex values
| hex values
|
|-
|-
| /setting/bddvd/mnr  
| /setting/bddvd/mnr  
| Mosquito Noise Reduction  
| Mosquito Noise Reduction<br>
| 2 (Set to reduce mosquito noise that appears on the edges of visual images.)
| 2 (Set to reduce mosquito noise that appears on the edges of visual images.)
|
|-
|-
| /setting/bddvd/mnrForDvdRom  
| /setting/bddvd/mnrForDvdRom  
| Mosquito Noise Reduction for DVDRom  
| Mosquito Noise Reduction for DVDRom<br>
| 0
| 0
|
|-
|-
| /setting/bddvd/networkConnect  
| /setting/bddvd/networkConnect  
| Enable network connexion for BR  
| Enable network connexion for BR<br>
| 1
| 1
|
|-
|-
| /setting/system/fakeLimitSize  
| /setting/system/fakeLimitSize  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/debugGameType  
| /setting/system/debugGameType  
| ?
| &nbsp;?  
| 0 / 1 / 2 / 3
| 0 / 1 / 2 / 3
|
|-
|-
| /setting/system/debugBootPath  
| /setting/system/debugBootPath  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/debugDirName  
| /setting/system/debugDirName  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/appHomeBootPath  
| /setting/system/appHomeBootPath  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/wolDex  
| /setting/system/wolDex  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/dispHddSpace  
| /setting/system/dispHddSpace  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/premo/audioConfig  
| /setting/premo/audioConfig  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/np/npAdClockDiff  
| /setting/np/npAdClockDiff  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/np/debugDrmError  
| /setting/np/debugDrmError  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/dlna/dtcpipDevCert  
| /setting/dlna/dtcpipDevCert  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/xmb/homeInstaller  
| /setting/xmb/homeInstaller  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/xmb/homeQAMode  
| /setting/xmb/homeQAMode  
| ?
| &nbsp;?  
| 0 = no QA/ 1 = QA
| 0 = no QA/ 1 = QA
| 11159
|-
|-
| /setting/upload/debug  
| /setting/upload/debug  
| ?
| &nbsp;?  
| 1
| 1
| 4654
|-
|-
| /setting/system/autoNetworkUpdate  
| /setting/system/autoNetworkUpdate  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/parental/gameLevel0Control  
| /setting/parental/gameLevel0Control  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/music/gameBgmPlayback  
| /setting/music/gameBgmPlayback  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/music/dummyBgmPlayer  
| /setting/music/dummyBgmPlayer  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/matEnable  
| /setting/system/matEnable  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/video/upConvert  
| /setting/video/upConvert  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/video/fnr  
| /setting/video/fnr  
| Frame Noise Reduction  
| Frame Noise Reduction<br>
| 2
| 2
|
|-
|-
| /setting/video/bnr  
| /setting/video/bnr  
| Block Noise Reduction  
| Block Noise Reduction  
| 2
| 2
|
|-
|-
| /setting/np/npGeoFiltering  
| /setting/np/npGeoFiltering  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/xmb/dummyInGameXMB  
| /setting/xmb/dummyInGameXMB  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/soundIn/0/name  
| /setting/soundIn/0/name  
| Descriptor current selected input device name (text)  
| Descriptor current selected input device name (text)  
| Bluetooth Device / USBMIC Serial# xxxxxxxxx
| Bluetooth Device / USBMIC Serial# xxxxxxxxx
|
|-
|-
| /setting/soundIn/0/bus  
| /setting/soundIn/0/bus  
| Sound Input Device(?)   
| Sound Input Device(?)   
| USB(singstar ps2 module)
| USB(singstar ps2 module)
|
|-
|-
| /setting/soundIn/0/id  
| /setting/soundIn/0/id  
| device connection, vendor & product (?)  
| device connection, vendor & product (?)  
| usb:1415:0000 (singstar ps2 module)
| usb:1415:0000 (singstar ps2 module)
|
|-
|-
| /setting/bt/audio1/sdpinfo  
| /setting/bt/audio1/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|
|-
|-
| /setting/bt/audio1/linkkey  
| /setting/bt/audio1/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|
|-
|-
| /setting/sound/1/name  
| /setting/sound/1/name  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/sound/1/bus  
| /setting/sound/1/bus  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/sound/1/id  
| /setting/sound/1/id  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/music/gameBgmVolume  
| /setting/music/gameBgmVolume  
| ?
| &nbsp;?  
| -2
| -2
|
|-
|-
| /setting/music/dynamicNormalizer  
| /setting/music/dynamicNormalizer  
| Reduces the difference in volume level between tracks  
| Reduces the difference in volume level between tracks  
| 0 = Off , 1 = On
| 0 = Off , 1 = On
|
|-
|-
| /setting/pad/autoPowerOff  
| /setting/pad/autoPowerOff  
| Dual Shock Auto Power Off  
| Dual Shock Auto Power Off<br>
| 0
| 0
|
|-
|-
| /setting/bt/audio3/sdpinfo  
| /setting/bt/audio3/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/audio3/linkkey  
| /setting/bt/audio3/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/audio4/sdpinfo  
| /setting/bt/audio4/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/audio4/linkkey  
| /setting/bt/audio4/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid3/sdpinfo  
| /setting/bt/hid3/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid3/linkkey  
| /setting/bt/hid3/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid4/sdpinfo  
| /setting/bt/hid4/sdpinfo  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/bt/hid4/linkkey  
| /setting/bt/hid4/linkkey  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/system/autoPowerOff  
| /setting/system/autoPowerOff  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/autoPowerOffEx  
| /setting/system/autoPowerOffEx  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/system/autoPowerOffDebug  
| /setting/system/autoPowerOffDebug  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/emulationType  
| /setting/net/emulationType  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/eth2/dhcpHostName  
| /setting/net/eth2/dhcpHostName  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/net/eth2/howToSetupIp  
| /setting/net/eth2/howToSetupIp  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/net/eth2/ipAddress  
| /setting/net/eth2/ipAddress  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/net/eth2/netmask  
| /setting/net/eth2/netmask  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/video/mnr  
| /setting/video/mnr  
| Mosquito Noise Reduction  
| Mosquito Noise Reduction<br>
| 2
| 2
|
|-
|-
| /setting/video/sequentialPlay  
| /setting/video/sequentialPlay  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/video/hd50HzOutput  
| /setting/video/hd50HzOutput  
| ?
| &nbsp;?  
| 1
| 1
|
|-
|-
| /setting/video/outputExtMenu  
| /setting/video/outputExtMenu  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/video/outputExtFunc  
| /setting/video/outputExtFunc  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/np/debugDrmClock  
| /setting/np/debugDrmClock  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/np/gameUpdateImposeTest  
| /setting/np/gameUpdateImposeTest  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/print/param/colorCorrect  
| /setting/print/param/colorCorrect  
| ?
| &nbsp;?  
| 0
| 0
|
|-
|-
| /setting/browser/heapSize  
| /setting/browser/heapSize  
| ?
| &nbsp;?  
| 128
| 128
|
|-
|-
| /setting/libad/adServerURL  
| /setting/libad/adServerURL  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/libad/adCatalogVersion  
| /setting/libad/adCatalogVersion  
| ?
| &nbsp;?  
|  
| <br>
|
|-
|-
| /setting/libad/adEnableNotification  
| /setting/libad/adEnableNotification  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/nickname  
| /setting/system/nickname  
| PS3 Nickname  
| PS3 Nickname  
|  
| <br>
|-
|-
| /setting/pad/bdaddr  
| /setting/pad/bdaddr  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/system/coreDumpOptionTrigger  
| /setting/system/coreDumpOptionTrigger  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/coreDumpOptionFileGen  
| /setting/system/coreDumpOptionFileGen  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/coreDumpOptionExeCtrl  
| /setting/system/coreDumpOptionExeCtrl  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/fakeFreeSpace  
| /setting/system/fakeFreeSpace  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/fakeSavedataOwner  
| /setting/system/fakeSavedataOwner  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/hdmiControl  
| /setting/system/hdmiControl  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/hdmiControlEx  
| /setting/system/hdmiControlEx  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/powerOnReset  
| /setting/system/powerOnReset  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/disable15Timeout  
| /setting/system/disable15Timeout  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/debugSystemUpdate  
| /setting/system/debugSystemUpdate  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/sound/0/initial  
| /setting/sound/0/initial  
| ?
| &nbsp;?  
| 2
| 2
|-
|-
| /setting/sound/0/fs/dolbyTrueHd  
| /setting/sound/0/fs/dolbyTrueHd  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/sound/0/fs/dolbyDigitalPlus  
| /setting/sound/0/fs/dolbyDigitalPlus  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/sound/0/fs/dtsHdHr  
| /setting/sound/0/fs/dtsHdHr  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/sound/0/fs/dtsHdMa  
| /setting/sound/0/fs/dtsHdMa  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/np/gameUpdateForceOverwrite  
| /setting/np/gameUpdateForceOverwrite  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/browser/trendLastTime  
| /setting/browser/trendLastTime  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/browser/trendTtl  
| /setting/browser/trendTtl  
| ?
| &nbsp;?  
| 0, 1
| 0
|-
|-
| /setting/browser/trendRegistered  
| /setting/browser/trendRegistered  
| ?
| &nbsp;?  
| 0, 1
| 0
|-
|-
| /setting/browser/debugMenu  
| /setting/browser/debugMenu  
| {{icon category settings}} ⇨ '''[Debug Settings]''' ⇨ '''[Internet Browser Debug]'''<br>Web Browser Debug Menu. See [[Web Browser]]
| Web Browser Debug Menu (in settings)
| 0 = disabled, 1 = enabled
| 0 = disabled, 1 = enabled
| &nbsp;60705
|-
|-
| /setting/parental/networkServiceControl  
| /setting/parental/networkServiceControl  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/bt/controller4/sdpinfo  
| /setting/bt/controller4/sdpinfo  
| ?
| &nbsp;?  
| hex values (04)
| hex values (04)
|-
|-
| /setting/bt/controller4/linkkey  
| /setting/bt/controller4/linkkey  
| ?
| &nbsp;?  
| hex values (040132054C026801)
| hex values (040132054C026801)
|-
|-
| /setting/bt/controller5/sdpinfo  
| /setting/bt/controller5/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller5/linkkey  
| /setting/bt/controller5/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller6/sdpinfo  
| /setting/bt/controller6/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller6/linkkey  
| /setting/bt/controller6/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller7/sdpinfo  
| /setting/bt/controller7/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller7/linkkey  
| /setting/bt/controller7/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller8/sdpinfo  
| /setting/bt/controller8/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller8/linkkey  
| /setting/bt/controller8/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller9/sdpinfo  
| /setting/bt/controller9/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller9/linkkey  
| /setting/bt/controller9/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller10/sdpinfo  
| /setting/bt/controller10/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller10/linkkey  
| /setting/bt/controller10/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller11/sdpinfo  
| /setting/bt/controller11/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller11/linkkey  
| /setting/bt/controller11/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/system/fakeHddSpeed  
| /setting/system/fakeHddSpeed  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
Line 1,625: Line 1,928:
|-
|-
| /setting/system/crashreport/crepo  
| /setting/system/crashreport/crepo  
| ?
| &nbsp;?  
| 1
| 1
|-
|-
| /setting/system/crashreport/reporterStatus  
| /setting/system/crashreport/reporterStatus  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/system/crashreport/vshGeneratorEnableFlag  
| /setting/system/crashreport/vshGeneratorEnableFlag  
| ?
| &nbsp;?  
| 1
| 1
|-
|-
| /setting/display/forceEnable3D  
| /setting/display/forceEnable3D  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
Line 1,645: Line 1,948:
|-
|-
| /setting/soundIn/0/latency/lpcm  
| /setting/soundIn/0/latency/lpcm  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/soundIn/0/latency/dts  
| /setting/soundIn/0/latency/dts  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/soundIn/0/latency/ac3  
| /setting/soundIn/0/latency/ac3  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/net/adhocSsidPrefix  
| /setting/net/adhocSsidPrefix  
| ?
| &nbsp;?  
| PSP
| PSP
|-
|-
| /setting/video/dtcpipActMenu  
| /setting/video/dtcpipActMenu  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/video/hddCaptionLanguage  
| /setting/video/hddCaptionLanguage  
| ?
| &nbsp;?  
| 6647399
| 6647399
|-
|-
Line 1,673: Line 1,976:
|-
|-
| /setting/browser/browserType  
| /setting/browser/browserType  
| Allows to choose the web browser by clicking {{padtriangle}} over {{icon category network}} ⇨ '''[Engine]''' ?
| &nbsp;?  
| 0=Webkit, 1=Silk
| 0
|-
|-
| /setting/xmb/yconExplained  
| /setting/xmb/yconExplained  
| Move motion controller related
| &nbsp;?
| 0
| 0
|-
|-
| /setting/wboard/baseUri  
| /setting/wboard/baseUri  
| ?
| &nbsp;?  
| http://wboard.ww.dl.playstation.net/download/wboard
| http://wboard.ww.dl.playstation.net/download/wboard
|-
|-
| /setting/smss/targetServer  
| /setting/smss/targetServer  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/smss/resultOutput  
| /setting/smss/resultOutput  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/bt/controller1/sdpinfo  
| /setting/bt/controller1/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller1/linkkey  
| /setting/bt/controller1/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller2/sdpinfo  
| /setting/bt/controller2/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller2/linkkey  
| /setting/bt/controller2/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller3/sdpinfo  
| /setting/bt/controller3/sdpinfo  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/bt/controller3/linkkey  
| /setting/bt/controller3/linkkey  
| ?
| &nbsp;?  
| hex values
| hex values
|-
|-
| /setting/display/screenSize  
| /setting/display/screenSize  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/np/fakeNpSnsThrottle  
| /setting/np/fakeNpSnsThrottle  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/np/fakeNpSnsThrottleWaitSeconds  
| /setting/np/fakeNpSnsThrottleWaitSeconds  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/pad/magnetometer  
| /setting/pad/magnetometer  
| ?
| &nbsp;?  
| 1
| 1
|-
|-
| /setting/display/deepColor  
| /setting/display/deepColor  
| ?
| &nbsp;?  
| 0
| 0
|-
|-
| /setting/net/autoDlTime  
| /setting/net/autoDlTime  
| ?
| &nbsp;?  
| 4
| 4
|-
|-
| /setting/np/debugConsoleBind  
| /setting/np/debugConsoleBind  
| ?
| &nbsp;?  
| 1
| 1
|-
|-
| /setting/net/wpaKey  
| /setting/net/wpaKey  
| Wireless Access Point WPA Key  
| Wireless Access Point WPA Key  
|  
| <br>
|-
|-
| /setting/net/wepKey  
| /setting/net/wepKey  
| Wireless Access Point WEP Key  
| Wireless Access Point WEP Key  
|  
| <br>
|-
|-
| /setting/net/ssid  
| /setting/net/ssid  
| Wireless Access Point SSID  
| Wireless Access Point SSID  
|  
| <br>
|-
|-
| /setting/net/auth8021xAuthName  
| /setting/net/auth8021xAuthName  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/auth8021xAuthKey  
| /setting/net/auth8021xAuthKey  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/dhcpHostName  
| /setting/net/dhcpHostName  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/authName  
| /setting/net/authName  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/authKey  
| /setting/net/authKey  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/ipAddress  
| /setting/net/ipAddress  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/netmask  
| /setting/net/netmask  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/defaultRoute  
| /setting/net/defaultRoute  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/primaryDns  
| /setting/net/primaryDns  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/secondaryDns  
| /setting/net/secondaryDns  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/httpProxyServer  
| /setting/net/httpProxyServer  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWep64Ssid  
| /setting/net/aoss/aossWep64Ssid  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWep64Key  
| /setting/net/aoss/aossWep64Key  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWep128Ssid  
| /setting/net/aoss/aossWep128Ssid  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWep128Key  
| /setting/net/aoss/aossWep128Key  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWpaPskTkipSsid  
| /setting/net/aoss/aossWpaPskTkipSsid  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWpaPskTkipKey  
| /setting/net/aoss/aossWpaPskTkipKey  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWpaPskAesSsid  
| /setting/net/aoss/aossWpaPskAesSsid  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/aoss/aossWpaPskAesKey  
| /setting/net/aoss/aossWpaPskAesKey  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/leaseIpAddress  
| /setting/net/leaseIpAddress  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/leaseExpirationTime  
| /setting/net/leaseExpirationTime  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/eth2/leaseIpAddress  
| /setting/net/eth2/leaseIpAddress  
| ?
| &nbsp;?  
|  
| <br>
|-
|-
| /setting/net/eth2/leaseExpirationTime  
| /setting/net/eth2/leaseExpirationTime  
| ?
| &nbsp;?  
|  
| <br>
|}
|}


Line 2,063: Line 2,366:
|}
|}


= Tools and Links =
= Tools =
*[http://github.com/kakaroto/ps3utils PS3Utils] [https://github.com/aquilino/allps3tools/tree/master/kakaroto-ps3utils mirror] - by KaKaRoTo
[http://github.com/kakaroto/ps3utils PS3Utils] [https://github.com/aquilino/allps3tools/tree/master/kakaroto-ps3utils mirror] - by KaKaRoTo<br>[http://stoker25.com/files/xRegistryEditor075.rar xRegistry.sys Editor 0.75] [http://www.mediafire.com/?r2xo2x0xc1xsivi mirror] - by stoker25
*[http://stoker25.com/files/xRegistryEditor075.rar xRegistry.sys Editor 0.75] [http://www.mediafire.com/?r2xo2x0xc1xsivi mirror] - by stoker25
 
*Historical
**[http://www.nextgenupdate.com/forums/ps3-mods-cheats/208788-skfu-ps3-registry-research-ps3-usb-custom-firmware.html Initial published information about the structure] - by SKFU
**[http://psx-scene.com/forums/f149/ps3-registry-hacking-collaborators-needed-65622/ Research and development of xRegistryEditor] - by stoker25 and colaborators
{{File Formats}}<noinclude>[[Category:Main]]</noinclude>
{{File Formats}}<noinclude>[[Category:Main]]</noinclude>
Please note that all contributions to PS3 Developer wiki are considered to be released under the GNU Free Documentation License 1.2 (see PS3 Developer wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following hCaptcha:

Cancel Editing help (opens in new window)