Hi there, interesting tool! π I wanted to try it out on Windows Server 2025, but it failed opening the DB, as MS switched to using 32K pages instead of 8K. In DSInternals, I had to implement autodetection:
Api.JetGetDatabaseFileInfo(fileName, out JET_DBINFOMISC dbInfo, JET_DbInfo.Misc);
int pageSize = dbInfo.cbPageSize;
Hi there, interesting tool! π I wanted to try it out on Windows Server 2025, but it failed opening the DB, as MS switched to using 32K pages instead of 8K. In DSInternals, I had to implement autodetection: