fix vista kms4k, add reset support

This commit is contained in:
2025-03-02 19:02:36 -05:00
parent 6d759899d8
commit f2ad15e5a2
6 changed files with 42 additions and 16 deletions

View File

@ -252,6 +252,8 @@ namespace LibTSforge.SPP
File.WriteAllBytes(filePath, PhysStoreCrypto.DecryptPhysicalStore(encrData, production, version));
}
RestartSPP(version);
Logger.WriteLine("Store dumped successfully to '" + filePath + "'.");
}
@ -269,6 +271,8 @@ namespace LibTSforge.SPP
store.WriteRaw(File.ReadAllBytes(filePath));
}
RestartSPP(version);
Logger.WriteLine("Loaded store file succesfully.");
}
}