Tutorial  Updated

Edit OFW clean Switch save data from NAND backup/restoring via Fusee Gelee payloads

#BLACKLIVESMATTER
UPDATE:
I am currently still not banned utilizing this method as of 1/16/2022!
THIS METHOD CURRENTLY WORKS WITH POKEMON SWORD AND SHIELD USING PKHEX AS WELL AS ANIMAL CROSSING: NEW HORIZONS USING NHSE
THANKS TO @Kaphotics FOR BOTH EDITORS


Hello! This tutorial will share how I managed to successfully edit my games' save data from OFW NAND and play them without any issue after restoring. When I initially began searching for info on how to do this, it wasn't as readily available as it could've been. Because of that, the process was not very easy to figure out; however, I hope this tutorial can be a useful "all-in-one" reference for anyone looking to do the same! If anything is unclear or missing, always feel free to reply below or send me a PM. Enjoy!

What you'll need:
  • A Nintendo Switch system that has not been physically patched for the Fusee Gelee exploit (firmware version won't matter)
  • Preferably a microSD card large enough to fit an entire NAND backup onto (I use a 128gb card) to save a TON of time
  • A way to connect your Switch to your computer (I have a USB-C MacBook charging cable)
  • A method of booting the Switch into RCM mode (I use a bent paperclip) which user @Technicmaster0 has a great list of here
  • A Fusee Gelee payload exploit program like TegraRcmGUI (fusee-launcher for macOS/Linux)
  • Lockpick_RCM for your Switch's console keys
  • hekate for NAND backup and restoring
  • HacDiskMount found here for mounting NAND backups
  • hactoolnet found here for extracting/injecting editable save data (WARNING: hactoolnet v0.7.0 is BROKEN and will not consistently resign)
  • A save editor(s) for the game(s) of your choice
  • OPTIONAL: I don't use this myself, but if you prefer, you can use memloader to read the microSD card while your Switch is connected instead of taking the card out and inserting it into your computer (found here with a tutorial here)
The process:
Following this guide got me into the Switch hacking scene in the first place. I was curious and found it during a Google search, and I found it to be very helpful! It outlines how to boot your Switch into RCM mode, how to find out if your Switch can use the Fusee Gelee exploit for payloads, how to prepare your microSD card, and how to create a NAND backup (Safety Precautions page)! My advice is to follow this guide to the point where a NAND backup is created on your microSD card, as that's the point where this tutorial will begin. The backup process does take time. Always remember to hold the volume down button when injecting the hekate payload as well.

Something very important to ensure you include during this initial setup is the sept folder on your microSD card. It is included in the Kosmos Defaults ZIP build, and you must include everything within the sd folder from the ZIP build you download. This helps guarantee that you have the appropriate and correct prod.keys for successful save data signing. You likely cannot do this guide correctly without the sept folder on your microSD card.

Once a rawnand.bin (~30gb) has been created in the root\backup\XXxXXXXX folder of your microSD card utilizing hekate, you will also want to run the Lockpick_RCM payload via TegraRcmGUI in order to obtain all the console-specific keys you'll need. This will create a prod.keys file within the root\switch folder of your microSD card. Once you've successfully gotten your rawnand.bin NAND backup and prod.keys console keys file, you can proceed to your computer.

Take your microSD card from the Switch and insert it into your computer (or utilize memloader as mentioned above in the What you'll need section). CREATE A BACKUP OF YOUR RAWNAND.BIN AND BOOT0 AND BOOT1 FILES SOMEWHERE SAFE (you should have the two boot files if you followed the sdsetup guide mentioned at the start of this section). I cannot stress this enough. If something goes wrong, these will be what saves your system from becoming a brick.

Open HacDiskMount and select File > Open file, and then get to the rawnand.bin in the root\backup\XXxXXXXX folder and Open. Scroll all the way down until you find the USER partition and open it via double-click. At this point, you will need the specified BIS Key X indicated in the top-left corner of the Operations on USER window. For example: mine needed BIS Key 3, the Crypto (Upper) and Tweak (Lower) keys. To get those, go to the root of your microSD card, then the switch folder, and prod.keys should be located there. Right-click prod.keys and Open with Notepad. Locate the necessary key (in my case this was bis_key_03), and copy the first 32 characters, then paste them into the Crypto (Upper) field back in HacDiskMount (spaces will automatically populate every two characters), and then do the same thing for Tweak (Lower) except copy and paste the remaining 32 characters. Once done, press the Test button to make sure you've copied correctly, and then Save so you don't have to copy and paste every time later on.

Under the Virtual drive section of the Operations on USER window, click on the Install button to get the appropriate driver for mounting NAND backups. Once it's finished installing the driver, press Mount. After about 10 seconds or so, you can find your NAND has been mounted as drive A: on your computer. Its files can now be explored! Navigate to the A:\save folder. All of the files listed here are your games' save data files. They aren't easily discernible, so some trial and error is required for locating the right game save you want to edit. Here's a guide on a pretty great method for extracting all the data at once. I used this and then figured out Let's Go only has a file called savedata.bin, and FFX has ffx_00X files and a GameSettings file where X is the save slot in the game. Every game probably has its own distinguishing characteristics, so you might have to get creative in order to find out which save file is the game you want to edit for.

Once you know exactly which file in A:\save is the one of the game you want to edit, this is where hactoolnet comes in. I currently have individual hactoolnet folders for EVERY game whose saves I edit. You can come up with your own system, but to keep it organized, I have a main hactoolnet folder, and within that, folders of all the games I edit such as FFX hactoolnet and LGE hactoolnet. Then within each of those folders (FFX hactool for example), my setup looks as follows:

tGxos7U.jpg

Notice the out and sav folders, the extract.bat and inject.bat, and the prod.keys files. These are all required for this to work properly if you follow my method. Everything else should come with the hactoolnet download in the What you'll need section. The extract.bat and inject.bat files will be edited via Notepad. To create them from scratch, right click in your hactoolnet folder window and go to New > Text Document and rename it appropriately. The files will contain the following:

extract.bat:
Code:
hactoolnet.exe -k prod.keys -t save sav/savefilename --outdir out/savefilename
pause

For this example, my FFX save data file in A:\save is 0000000000000019, so my script would be:
Code:
hactoolnet.exe -k prod.keys -t save sav/0000000000000019 --outdir out/0000000000000019
pause

inject.bat:
Code:
hactoolnet.exe -k prod.keys -t save sav/savefilename --replacefile /savefile out/savefilename/savefile
pause

To maintain the example, the FFX save data I want to edit is specifically the ffx_002 file WITHIN the 0000000000000019 save data file found in the NAND backup, so the script I use would be:
Code:
hactoolnet.exe -k prod.keys -t save sav/0000000000000019 --replacefile /ffx_002 out/0000000000000019/ffx_002
pause

prod.keys:
This is just your prod.keys file from earlier. Copy and paste it here from your microSD card root\switch folder.

Once this has been set up, we can run a test to make sure it works properly. Go back to A:\save and copy the save data file of the game you want to edit. Paste it in the sav folder in our hactoolnet setup. I also recommend making a backup somewhere safe just in case you wreck the save data. After that, run the extract.bat file. This will execute the script we wrote which extracts an editable save file from the save data in the sav folder, and then place it in the out folder. The resulting command prompt window should look similar to this to indicate success (sensitive data removed):
...\Desktop\Switch\hactoolnet\FFX hactoolnet>hactoolnet.exe -k prod.keys -t save sav/0000000000000019 --outdir out/0000000000000019
Failed to match key eticket_rsa_kek_source
Failed to match key eticket_rsa_kekek_source
Failed to match key rsa_oaep_kek_generation_source
Failed to match key rsa_private_kek_generation_source
Failed to match key ssl_rsa_kek_source_x
Failed to match key ssl_rsa_kek_source_y
/ffx_002
/ffx_001
/GameSettings

Savefile:
CMAC Signature (GOOD):
Title ID:
User ID:
Save ID:
Save Type:
Owner ID:
Timestamp:
Save Data Size:
Journal Size:
Free Space:
Header Hash (GOOD):
Number of Files:
Magic:
Version:
Salt Seed:
Level 0:
Data Offset:
Data Size:
Hash Offset:
Hash BlockSize:
Level 1:
Data Offset:
Data Size:
Hash Offset:
Hash BlockSize:
Level 2:
Data Offset:
Data Size:
Hash Offset:
Hash BlockSize:
Level 3:
Data Offset:
Data Size:
Hash Offset:
Hash BlockSize:


...\Desktop\Switch\hactoolnet\FFX hactoolnet>pause
Press any key to continue . . .
Ignore the "Failed" signals at the very top, because as long as your CMAC Signature and Header Hash are both (GOOD), that should be indicative of a successful extract.

After you get a successful extraction, head into the out folder. There you will now see a folder with the same name as the save data file we took from the NAND's A:\save folder. For me, the folder was 0000000000000019. When I go into that folder, I can see my ffx_002, ffx_001, and GameSettings files. These are the editable save files at this point. If a save editor exists for your game, you'll want to open these files with that program now and make your changes. I will stick to editing just my ffx_002 file in this instance as that's what's outlined in my inject.bat script.

Once I'm finished making my changes, I overwrite the ffx_002 file and save it. I am now ready to inject it back into the 0000000000000019 file in the sav folder. To do so, all I have to do at this point is run the inject.bat file. This will replace the ffx_002 file inside the 0000000000000019 file and sign the save correctly. Again, the resulting command prompt window should look similar to this to indicate success:
...\Desktop\Switch\hactoolnet\FFX hactoolnet>hactoolnet.exe -k prod.keys -t save sav/0000000000000019 --replacefile /ffx_002 out/0000000000000019/ffx_002
Failed to match key eticket_rsa_kek_source
Failed to match key eticket_rsa_kekek_source
Failed to match key rsa_oaep_kek_generation_source
Failed to match key rsa_private_kek_generation_source
Failed to match key ssl_rsa_kek_source_x
Failed to match key ssl_rsa_kek_source_y
Replaced file /ffx_002
Successfully signed save file

...\Desktop\Switch\hactoolnet\FFX hactoolnet>pause
Press any key to continue . . .
Again, you can ignore the "Failed" signals. If you see Replaced file /savefile and Successfully signed save file, then those are very good signs! All that's left to do is get it back into the NAND and then restore.

In order to successfully inject and sign save data correctly for a game like Animal Crossing: New Horizons, you must use the repack function as opposed to the replacefile function. The extract.bat is the same, but here is the appropriate inject.bat:
Code:
hactoolnet.exe -k prod.keys -t save sav/00000000000000xx --repack out/00000000000000xx
pause
Where you replace "xx" with your own appropriate save file name. Special thanks to this post as well as this one, both by @Max89, for the information!

Once the inject.bat is finished, you'll be able to go into the sav folder and see your save data file still there; only this time, it's been injected with your edited save file! Copy the save data file (in my example it's the 0000000000000019 file) and go back to the NAND's A:\save folder. Once there paste and overwrite the save data file. After that's finished, go back to HacDiskMount and click Unmount, and close the Operations on USER window. Click File > Close, and then go to root\backup\XXxXXXXX on your microSD card. Move the rawnand.bin file into the restore folder.

Eject your microSD card from your computer, insert it back into your Switch, and go back to TegraRcmGUI if your Switch isn't still running the hekate payload. Inject the hekate payload while holding the volume down button on the Switch, but skip this step if hekate is still up and running on your Switch from when you made the NAND backup.

Go to Tools > Restore > Restore eMMC RAW GPP to restore the NAND we pasted our edited and signed save data file into. This, like the NAND backup process, will take some time to complete. Once it's done, though, you're all set! Start the game whose save data file(s) you edited, and see the results of your hard work!

Some notes:
As you can probably tell, this process isn't simple by any means. Due to this, and the amount of time it takes to just make a NAND backup and then restore it, I recommend you make a list of edits you'd like to do beforehand in order to make the most of this process each time you do it. To make future save edits, you will have to make another NAND backup again and repeat this process. With my 128gb microSD card, it takes roughly 30 minutes to make a backup, and roughly 30 minutes to restore a backup.

Thanks for checking out my tutorial! Let me know if it's helpful, and if anyone has anything they'd like to add to the tutorial, please send a PM my way or make a reply here with your recommendation!

Here are nearly all the resources I found while figuring all of this out for myself:

FAQ:
Unfortunately, you need a Switch specifically susceptible to the Fusee Gelee exploit. Until a new exploit is discovered on newer consoles, this can only be done on consoles manufactured prior to Nintendo's hardware patching. Refer above in this guide to What you'll need.
You can, however, use the official save file transfer service Nintendo implemented in a firmware update to move save data from older, exploitable consoles to newer ones.
Of course! I am myself taking a risk by doing this, but I understand that the risk is spectacularly low with this specific method. As long as you aren't making outrageous edits, you should be fine. That is the entire reason I drummed up this tutorial is to provide a ridiculously safe method outside the realm of CFW. Do NOT do this if you are uncomfortable with the process or its potential consequences.
Absolutely. But using CFW is naturally riskier than this method. If you have a safe way of doing so and are comfortable, more power to you! I personally do not wish to dabble in CFW on my main, clean Switch.
Yes! As long as the clean Switch is exploitable via Fusee Gelee, you can put save files onto its NAND from a CFW Switch, and, of course, vice versa. Just make sure you've played the game on the receiving console so there is save data to replace.
Sure! Make sure the console you're injecting the external save into has played the game at least once so you have something to replace. Crossing user profiles does not matter.
If your microSD card is not large enough to have your entire NAND on it, it was probably broken up into many bin files. To create your single NAND file with them, go to this releases page for hekate and find and download the latest joiner_scripts_for_windows_linux_macos.zip file. Make sure to move the appropriate bat file to your folder with all your NAND bin files. If you have 15 bin files, run the join_15_2GBparts_windows.bat file. If 30, run the join_30_1GBparts_windows.bat file.
Likely because you forgot to include the sept folder when generating your prod.keys console file. Refer above early on to The process.
Don't be concerned. In more recent releases of hactoolnet, the dll files were embedded, so you won't see them in your hactoolnet folder.
Yes, but it's slightly riskier since there's not a backup every time. When you have TegraRcmGUI open with your Switch connected in RCM mode, go to the Tools tab and select "eMMC rawNAND (DANGEROUS)" from the drop down menu, and click the USB icon button to the left. This will allow you to then use HacDiskMount normally as stated above under The process. This directly mounts and edits the NAND without a backup, so please do this at your own risk and only if you know exactly what you're doing.
I have only tried this on Windows, so I really don't know. Sorry!
 
Last edited by kimbra,

radiocaf

Member
Newcomer
Joined
Sep 12, 2009
Messages
5
Trophies
0
XP
39
Country
United States
Nothing is installed onto the Switch using this method. You're only booting into its recovery mode and running a payload (then backing up and restoring your switch's NAND).
Thank you for your reply, I feel more at ease taking advantage of this method now, time to bend some paperclips.
 

ricky3817

New Member
Newbie
Joined
Sep 15, 2019
Messages
1
Trophies
0
Age
34
XP
51
Country
United States
Hey guys, I've spent too much time trying to figure this out at this point I need to ask for help. I extracted the save file for shield but I'm not sure what file I'm supposed to use for PKHEX and the the raid plugin. I noticed the CMAC signature failed so I'm not sure if it extracted properly. Any help is appreciated. Thank you.



C:\Users\rinnn\Desktop\try 1>hactoolnet.exe -k prod.keys -t save sav/00000000000000bc --outdir out/00000000000000bc
Failed to match key rsa_oaep_kek_generation_source
Failed to match key rsa_private_kek_generation_source
save:/directories/1609/files/1609_luxuryball
save:/directories/1609/files.meta
save:/directories/0113/files/0113_ballguy3
save:/directories/0113/files.meta
save:/directories/0112/files/0112_ballguy2
save:/directories/0112/files.meta
save:/directories/0111/files/0111_ballguy1
save:/directories/0111/files.meta
save:/directories/0107/files/0107_G_kabigon
save:/directories/0107/files.meta
save:/directories/0106/files/0106_pokeball_100
save:/directories/0106/files.meta
save:/directories/0105/files/0105_dress_kakukoro
save:/directories/0105/files.meta
save:/directories/0104/files/0104_BP10
save:/directories/0104/files.meta
save:/directories/0102/files/0102_birthday_ev
save:/directories/0102/files.meta
save:/directories/0101/files/0101_birthday_pika
save:/directories/0101/files.meta
save:/directories/2001/files/2001_palma_myu
save:/directories/2001/files.meta
save:/directories/1606/files/1606_dress_goldbag
save:/directories/1606/files.meta
save:/directories/1605/files/1605_dress_sports_set
save:/directories/1605/files.meta
save:/directories/1604/files/1604_G_crystal_yoogirasu
save:/directories/1604/files.meta
save:/directories/1603/files/1603_G_crystal_jarako
save:/directories/1603/files.meta
save:/directories/1602/files/1602_quickball
save:/directories/1602/files.meta
save:/directories/tournament/files/Galar_Beginnings_BP50
save:/directories/tournament/files.meta
save:/directories/rank/files.meta
save:/directories/gpoke/files/normal_encount
save:/directories/gpoke/files/drop_rewards
save:/directories/gpoke/files/dai_encount
save:/directories/gpoke/files/bonus_rewards
save:/directories/gpoke/files.meta
save:/directories/normal/files/distribution_internet
save:/directories/normal/files.meta
save:/list.msgpack
save:/directories.meta
save:/na_required
save:/etag.bin
save:/passphrase.bin

Savefile:
CMAC Signature (FAIL): 163CA3E80EAF04F750E58407CFAF7B67
Title ID: 01008db008c2c000
User ID: 00000000-0000-0000-0000-000000000000
Save ID: 0000000000000000
Save Type: BcatDeliveryCacheStorage
Owner ID: 010000000000000c
Timestamp: 2019-12-20 07:40:51 UTC
Save Data Size: 0x0000000004000000 (64 MB)
Journal Size: 0x0000000000200000 (2 MB)
Free Space: 0x0000000003f1c000 (63.109 MB)
Header Hash (GOOD): 072DA6776A3A55CBD23078BB65E2A7A3E6DB91FB9626B07238A53EE3E532B128
Number of Files: 47
Magic: IVFC
Version: 2
Salt Seed: FB7A5789C0E2B15C34F9A407B018F7A414CAD62411FD7257A0ECF2EB83A2FD49
Level 0:
Data Offset: 0x2000000000000000
Data Size: 0x0000000000004000
Hash Offset: 0x0000000000000000
Hash BlockSize: 0x00004000
Level 1:
Data Offset: 0x2800000000000000
Data Size: 0x0000000000004000
Hash Offset: 0x2000000000000000
Hash BlockSize: 0x00004000
Level 2:
Data Offset: 0x3000000000000000
Data Size: 0x0000000000020000
Hash Offset: 0x2800000000000000
Hash BlockSize: 0x00004000
Level 3:
Data Offset: 0x0000000000000000
Data Size: 0x0000000004000000
Hash Offset: 0x3000000000000000
Hash BlockSize: 0x00004000


C:\Users\rinnn\Desktop\try 1>pause
Press any key to continue . . .




























 

Max89

Well-Known Member
Member
Joined
Oct 18, 2012
Messages
130
Trophies
1
XP
300
Country
Italy
tell me if im wrong but with this method i can edit the save files with pkhex withou installing custom firmware right?
i have un unpatched switch, i might try..
 
  • Like
Reactions: MSco

Max89

Well-Known Member
Member
Joined
Oct 18, 2012
Messages
130
Trophies
1
XP
300
Country
Italy
hi,
h have some problems with hactoonet.
The software is not recognized by windows if i use your script.
However If i use the run.bat inside the download of hactoolnet i can extract the save data.
THe problem now is how to inject the save file... How can i solve?
 

Max89

Well-Known Member
Member
Joined
Oct 18, 2012
Messages
130
Trophies
1
XP
300
Country
Italy
maybe i solved runing the bat file from cmd as administrator.
i got an error
i dont jnow why the bat file dont recognize the pause at the end .
I had to delete it because it was attached to the name of the save file
 
Last edited by Max89,

Max89

Well-Known Member
Member
Joined
Oct 18, 2012
Messages
130
Trophies
1
XP
300
Country
Italy
Got it to work - the step that I missed was to make sure the sept folder from atmosphere was in the SD before I dumped my keys to make sure I got the master key up to 09.

Many thanks for your guide Kimbra !
my signature fails the first time and is good the others but the game wont load.
i have extracted the key file with the sept folder in the root of the sd but it generated 2 file prod.keys 10kb and title keys 2kb
i use the first for the signature with the inject.bat
i did everything right?

EDIT:
Solved, the problem was the file hactool.exe v0.7 that is not working correctly. there is another version 0.8.
See here for more information:
https://github.com/Thealexbarney/LibHac/issues/102
 
Last edited by Max89,

dude179

Member
Newcomer
Joined
Nov 2, 2019
Messages
11
Trophies
0
XP
133
Country
Canada
Ick my bad, not hactool but HakDiskMount can mount the partition and read/write to the partition, instead of having to backup the nand, mount it, etc you can just mount the user partition on the device.

--------------------- MERGED ---------------------------

Basically open TegraRCMGUI under tools theres a "Memloader v3/UMS Tool (by rajkosto)" if you drop down the box and hit "eMMC rawNAND (DANGEROUS)" and click the USB icon it will allow mounting the devices partitions on your PC, all you need to do at that point is open HacDiskMount and click "File > Open Physical Device" and select the device that's something like "Linux UMS", it will present you with a list of partitions and yeah normal procedures from there, make sure to unmount when you're done moving stuff around and boom, no need for nand backup.

I just wanted to say thank you telling us this. This has saved me so much time, because I save edit A LOT for Pokemon SnS.

I highly recommend this method to everyone. I've been doing this for months now, and as long as the only thing you touch is the save file, you'll be fine.
 

slapmeone

New Member
Newbie
Joined
Jan 24, 2020
Messages
3
Trophies
0
Age
54
XP
50
Country
Canada
How would I edit my inject.bat files to inject two files at once? So close to completing this I'm just not great with code
 

Scried

Active Member
Newcomer
Joined
May 3, 2017
Messages
33
Trophies
0
XP
774
Country
Netherlands
How would I edit my inject.bat files to inject two files at once? So close to completing this I'm just not great with code
You could just run the .bat file once for the first file; then edit it; change the name of the file to the second save file and run the .bat file again. You could also just duplicate the first line in the .bat file, for example I did the following to inject both the main and backup file of my Pokémon Sword save:
Code:
hactoolnet.exe -k prod.keys -t save sav/000000000000004c --replacefile /main out/000000000000004c/main
hactoolnet.exe -k prod.keys -t save sav/000000000000004c --replacefile /backup out/000000000000004c/backup
pause
But before you copy this code, please change the id number to the one that matches yours!
 
Last edited by Scried,

slapmeone

New Member
Newbie
Joined
Jan 24, 2020
Messages
3
Trophies
0
Age
54
XP
50
Country
Canada
You could just run the .bat file once for the first file; then edit it; change the name of the file to the second save file and run the .bat file again. You could also just duplicate the first line in the .bat file, for example I did the following to inject both the main and backup file of my Pokémon Sword save:
Code:
hactoolnet.exe -k prod.keys -t save sav/000000000000004c --replacefile /main out/000000000000004c/main
hactoolnet.exe -k prod.keys -t save sav/000000000000004c --replacefile /backup out/000000000000004c/backup
pause
But before you copy this code, please change the id number to the one that matches yours!
I was overthinking it big time. Tysm for the help and fast response!
 
  • Like
Reactions: Scried

aarti

Killua Zoldyck
Member
Joined
Jul 24, 2017
Messages
523
Trophies
0
XP
973
Country
Germany
Notice the out and sav folders, the extract.bat and inject.bat, and the prod.keys files. These are all required for this to work properly if you follow my method. Everything else should come with the hactoolnet download in the What you'll need section.
Am I god damn stupid or why can't I find these? I only get hactoolnet.exe
 

Scried

Active Member
Newcomer
Joined
May 3, 2017
Messages
33
Trophies
0
XP
774
Country
Netherlands
Am I god damn stupid or why can't I find these? I only get hactoolnet.exe
Do you mean you're missing the .dll files? They probably got embedded in the .exe in the most recent release(s) of hactoolnet. You can just ignore it. If you're talking about the other files, you have to create or provide them yourself as the guide mentions.
 
  • Like
Reactions: aarti

MSco

Well-Known Member
Member
Joined
Nov 2, 2016
Messages
350
Trophies
0
XP
704
Country
Germany
Still, I'd love it if someone came out with a save manager that worked from RCM, so you could backup and restore game saves without booting into CFW or going through these tedious steps.

That would be great. Is this technically realistic? Or is there anything new to this? Did anyone publish something like that?

Edit:

Well, I saw this here:
Ick my bad, not hactool but HakDiskMount can mount the partition and read/write to the partition, instead of having to backup the nand, mount it, etc you can just mount the user partition on the device.

--------------------- MERGED ---------------------------

Basically open TegraRCMGUI under tools theres a "Memloader v3/UMS Tool (by rajkosto)" if you drop down the box and hit "eMMC rawNAND (DANGEROUS)" and click the USB icon it will allow mounting the devices partitions on your PC, all you need to do at that point is open HacDiskMount and click "File > Open Physical Device" and select the device that's something like "Linux UMS", it will present you with a list of partitions and yeah normal procedures from there, make sure to unmount when you're done moving stuff around and boom, no need for nand backup.

Nice, this would be an extreme time saver! Did anyone do this method (mounting and editing the NAND directly with tegraRCMgui)?

My method would be: Do a NAND backup once and save it to a HDD. Everytime I mount the NAND and edit it, I would only do a backup of my savegame (using that tegrarcm mount) without doing a full backup of my NAND everytime. If something goes wrong and my NAND gets fried, I could restore my NAND (the backup would be a bit older, with an older savegame) and inject the latest backup of my savegame. Using this method, I would be quite save, right?
 
Last edited by MSco,

RHOPKINS13

Geek
Member
Joined
Jan 31, 2009
Messages
1,353
Trophies
2
XP
2,616
Country
United States
Is this technically realistic?

I don't see why not. Either way you're editing the NAND. People have already used HacDiskMount to backup, restore, and transfer saves. Being able to do it from RCM would make things much easier, and would allow you to inject saves in an otherwise clean SysNAND without running CFW.
 
  • Like
Reactions: MSco

kimbra

Well-Known Member
OP
Newcomer
Joined
Jun 6, 2019
Messages
49
Trophies
0
Age
29
Location
United States
XP
1,204
Country
United States
That would be great. Is this technically realistic? Or is there anything new to this? Did anyone publish something like that?

Edit:

Well, I saw this here:


Nice, this would be an extreme time saver! Did anyone do this method (mounting and editing the NAND directly with tegraRCMgui)?

My method would be: Do a NAND backup once and save it to a HDD. Everytime I mount the NAND and edit it, I would only do a backup of my savegame (using that tegrarcm mount) without doing a full backup of my NAND everytime. If something goes wrong and my NAND gets fried, I could restore my NAND (the backup would be a bit older, with an older savegame) and inject the latest backup of my savegame. Using this method, I would be quite save, right?
I have been utilizing this method lately. I run the TegraRcmGUI as Mount “eMMC rawNAND (DANGEROUS)” under the Tools tab. I’m thinking of adding it to the guide soon for clarification and ease.
 
  • Like
Reactions: RHOPKINS13 and MSco

lpdg001

New Member
Newbie
Joined
Feb 4, 2020
Messages
1
Trophies
0
Age
24
XP
48
Country
China
how to edit splatoon2?i wont edit foods i cant inject~~~HELP CFW 9.1
hactoolnet is new version
F:\Downloads\Compressed\extract nand gamesave\extract nand gamesave>hactoolnet.exe -k prod.keys -t save save/00000000000000c3 --outdir out/00000000000000c3
Failed to match key device_key_4x
Failed to match key rsa_oaep_kek_generation_source
Failed to match key rsa_private_kek_generation_source
save:/save.dat

F:\Downloads\Compressed\extract nand gamesave\extract nand gamesave\out\00000000000000c3\save.dat

but i cnat inject
hactoolnet.exe -k prod.keys -t save save/00000000000000c3 --replacefile / out/00000000000000c3

Failed to match key device_key_4x
Failed to match key rsa_oaep_kek_generation_source
Failed to match key rsa_private_kek_generation_source

ERROR: ResultFsTargetLocked (2002-0007)

Additional information:
at LibHac.ThrowHelper.ThrowResult(Result) + 0x2c
at LibHac.FsSystem.LocalFile..ctor(String, OpenMode) + 0x8e
at hactoolnet.ProcessSave.Process(Context) + 0x36c
at hactoolnet.Program.Run(String[]) + 0x2d1
at hactoolnet.Program.Main(String[]) + 0x1a
 
Last edited by lpdg001,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    The Real Jdbye @ The Real Jdbye: @Veho @AncientBoi's favorite +1