├── .gitignore ├── Windows 10 Mobile Toolbox ├── AppData │ ├── Temp │ │ └── PADDING │ └── bin │ │ ├── wpinternals │ │ └── PADDING │ │ ├── dd.exe │ │ ├── thor2 │ │ └── thor2.exe │ │ ├── iutool │ │ ├── iutool.exe │ │ ├── getdulogs.exe │ │ ├── updateapi.dll │ │ └── updateapp.exe │ │ ├── res │ │ └── flightcert │ │ │ └── SbcpFlightToken.p7b │ │ └── buildlists │ │ ├── 15254.603.txt │ │ └── 10586.107.txt ├── Square44x44Logo.altform-unplated_targetsize-256.ico ├── App.xaml.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user ├── FFUConvert │ ├── FfuFileBlock.cs │ ├── FfuFileStore.cs │ └── FfuFile.cs ├── AssemblyInfo.cs ├── Windows 10 Mobile Toolbox.csproj.user ├── App.xaml ├── AssetsWindow.xaml ├── FileSize.cs ├── app.manifest ├── Windows 10 Mobile Toolbox.csproj ├── AssetsWindow.xaml.cs ├── RegHelper.cs ├── ReadDisksClass.cs ├── FFUImageHelper.cs ├── DeviceHelper.cs └── MainWindow.xaml ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── Windows 10 Mobile Toolbox.sln └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | README.md.backup 3 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/Temp/PADDING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/wpinternals/PADDING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/3.png -------------------------------------------------------------------------------- /4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/4.png -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/dd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/dd.exe -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/thor2/thor2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/thor2/thor2.exe -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/iutool/iutool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/iutool/iutool.exe -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/iutool/getdulogs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/iutool/getdulogs.exe -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/iutool/updateapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/iutool/updateapi.dll -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/iutool/updateapp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/iutool/updateapp.exe -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AppData/bin/res/flightcert/SbcpFlightToken.p7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/AppData/bin/res/flightcert/SbcpFlightToken.p7b -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/Square44x44Logo.altform-unplated_targetsize-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Empyreal96/W10M_Toolbox/HEAD/Windows 10 Mobile Toolbox/Square44x44Logo.altform-unplated_targetsize-256.ico -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | using System.Windows.Threading; 9 | 10 | namespace W10M_Toolbox 11 | { 12 | /// 13 | /// Interaction logic for App.xaml 14 | /// 15 | 16 | public partial class App : Application 17 | { 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | Debug 8 | Any CPU 9 | C:\Windows 10 Toolbox 10 | FileSystem 11 | net5.0-windows 12 | false 13 | 14 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/FFUConvert/FfuFileBlock.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | 3 | namespace FfuConvert 4 | { 5 | public sealed class FfuFileBlock 6 | { 7 | internal FfuFileBlock() 8 | { 9 | } 10 | 11 | public int DescriptorIndex { get; internal set; } 12 | public SeekOrigin TargetSeekOrigin { get; internal set; } 13 | public long TargetSeekOffset { get; internal set; } 14 | public byte[] Data { get; internal set; } 15 | 16 | public override string ToString() => "[" + DescriptorIndex + "] " + TargetSeekOrigin + ":" + TargetSeekOffset + " (" + Data?.Length + ")"; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | [assembly: ThemeInfo( 4 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 5 | //(used if a resource is not found in the page, 6 | // or application resource dictionaries) 7 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 8 | //(used if a resource is not found in the page, 9 | // app, or any theme specific resource dictionaries) 10 | )] 11 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/Windows 10 Mobile Toolbox.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <_LastSelectedProfileId>C:\Users\Empyreal.DESKTOP-C0F96C7\source\repos\W10M_Toolbox\Windows 10 Mobile Toolbox\Properties\PublishProfiles\FolderProfile.pubxml 5 | 6 | 7 | 8 | Designer 9 | 10 | 11 | 12 | 13 | Designer 14 | 15 | 16 | Designer 17 | 18 | 19 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | True|2023-01-18T22:17:51.8004693Z;True|2023-01-18T21:56:41.3934660+00:00;True|2022-04-24T17:15:24.2083485+01:00;True|2022-04-24T15:01:13.0281455+01:00;False|2022-04-24T15:00:24.7677727+01:00;False|2022-04-24T14:59:13.9063060+01:00;True|2022-03-02T16:32:16.0136488+00:00;True|2022-03-02T16:27:54.7436436+00:00;True|2022-03-02T09:48:18.1916214+00:00;True|2022-03-01T21:43:37.0284886+00:00;True|2022-03-01T21:43:23.7872129+00:00;True|2022-03-01T11:36:24.8423297+00:00;True|2022-03-01T11:25:57.8406970+00:00;True|2022-03-01T09:59:52.0678567+00:00;True|2022-02-27T22:55:12.6520971+00:00;True|2022-02-27T22:46:42.4591195+00:00;True|2022-02-27T22:42:55.4591256+00:00;True|2022-02-27T22:42:24.0114561+00:00;True|2022-02-27T22:38:45.9339058+00:00;True|2022-02-27T22:29:12.1732669+00:00;True|2022-02-25T22:10:23.5920976+00:00; 8 | 9 | -------------------------------------------------------------------------------- /Windows 10 Mobile Toolbox/AssetsWindow.xaml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 16 | 20 |