Jump to content

George King

Member
  • Posts

    395
  • Joined

  • Last visited

  • Days Won

    1
  • Donations

    0.00 USD 
  • Country

    Czech Republic

Everything posted by George King

  1. It's SFX EXE, simply open it with WinRAR exactly. Mypal doesn't see them and they still must be installed manually.
  2. @AstroSkipper This is simple repack to silently extract everything to %ProgramFiles%\Mypal and create Desktop + Start menu shortcuts https://www.mediafire.com/file/opvx7nwirymkofz/Mypal-all.exe/file I have added XPIs to browser\extensions folders same as I saw in KMeleon where is defaultly added Adblock this way.
  3. @AstroSkipper How can I add language pack + Adblock to my SFX Mypal 68 repack (basic SFX created using WinRAR)? Is there any chance, how to make it as default? I tried to place adblockultimate@adblockultimate.net.xpi + langpack-cs@firefox.mozilla.org.xpi in various folders, but without success. Where should I put them so they can be directly used in first launch?
  4. I just looked into wdm.h. This is what I can add and compile. It's far from my know how and it probably can't work. typedef PO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK, *PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK; typedef PO_FX_COMPONENT_IDLE_CONDITION_CALLBACK, *PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK; typedef PO_FX_COMPONENT_IDLE_STATE_CALLBACK, *PPO_FX_COMPONENT_IDLE_STATE_CALLBACK; typedef PO_FX_DEVICE_POWER_REQUIRED_CALLBACK, *PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK; typedef PO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK, *PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK; typedef PO_FX_POWER_CONTROL_CALLBACK, *PPO_FX_POWER_CONTROL_CALLBACK; typedef struct _PO_FX_COMPONENT_IDLE_STATE { ULONGLONG TransitionLatency; ULONGLONG ResidencyRequirement; ULONG NominalPower; } PO_FX_COMPONENT_IDLE_STATE, *PPO_FX_COMPONENT_IDLE_STATE; typedef struct _PO_FX_COMPONENT_V1 { GUID Id; ULONG IdleStateCount; ULONG DeepestWakeableIdleState; PPO_FX_COMPONENT_IDLE_STATE IdleStates; } PO_FX_COMPONENT_V1, *PPO_FX_COMPONENT_V1; typedef struct _PO_FX_DEVICE_V1 { ULONG Version; ULONG ComponentCount; PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK ComponentActiveConditionCallback; PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK ComponentIdleConditionCallback; PPO_FX_COMPONENT_IDLE_STATE_CALLBACK ComponentIdleStateCallback; PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK DevicePowerRequiredCallback; PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK DevicePowerNotRequiredCallback; PPO_FX_POWER_CONTROL_CALLBACK PowerControlCallback; PVOID DeviceContext; PO_FX_COMPONENT_V1 Components[ANYSIZE_ARRAY]; } PO_FX_DEVICE, *PPO_FX_DEVICE;
  5. I tried it, but without success. This is what I used to add blank exports. I think there must be added real code for that.
  6. Many thanks for that. I have added it to my source tree. Here are also modded drivers, that needs new extender with mentioned functions. Old ntoskrn8.sys for XP target is included, so needs to be recompiled with your new implementations. Generic_SD+MMC_6.2.8056.0.7z
  7. Oh yes, I have fully updated Windows 7. Then I see missing import after redirecting driver to use ntoskrn8.sys. I can take screenshot in late evening when I boot Windows 7 laptop.
  8. I just tried to port sdbus.sys + sdstor.sys from Windows 8 build 8056 (first true Generic SD/MMC driver) to Windows 7 and XP and on Windows 7 are these functions needed to add into extender, otherwise there will be missing imports. Sad is there are more functions needed to get it work properly on XP or 7. These functions are needed for 8056. For RTM there are much more missing imports. PoFxIdleComponent IoSynchronousCallDriver PoFxSetDeviceIdleTimeout PoFxUnregisterDevice PoFxStartDevicePowerManagement PoUnregisterPowerSettingCallback PoFxActivateComponent KeLeaveGuardedRegion KeEnterGuardedRegion PoFxCompleteIdleCondition PoFxCompleteIdleState PoFxReportDevicePoweredOn PoFxCompleteDevicePowerNotRequired PoFxRegisterDevice IoGetActivityIdIrp RtlQueryRegistryValuesEx It would be really nice if we can get this SD/MMC Generic driver under XP and 7. EDIT: I have only prepared template for code. //////////////////////////////////////////// // < Win8 x32/x64 Extender // #if (NTDDI_VERSION < NTDDI_WIN8) // k8_win8( ExGetFirmwareEnvironmentVariable, 20) k8_win8( ExSetFirmwareEnvironmentVariable, 20) k8_win8( IoGetActivityIdIrp, 8) k8_win8( IoSetActivityIdIrp, 8) k8_win8( MmAllocateContiguousNodeMemory, 36) k8_win8( RtlCheckPortableOperatingSystem, 4) k8_win8( RtlQueryRegistryValuesEx, 20) k8_win8( RtlSetPortableOperatingSystem, 4) k8_win8( IoSynchronousCallDriver, 8) k8_win8( PoFxRegisterDevice, 12) k8_win8( PoFxUnregisterDevice, 4) k8_win8( PoFxSetComponentLatency, 16) k8_win8( PoFxSetComponentResidency, 16) k8_win8( PoFxStartDevicePowerManagement, 4) k8_win8( PoFxCompleteIdleState, 8) k8_win8( PoFxCompleteIdleCondition, 8) k8_win8( PoFxReportDevicePoweredOn, 4) k8_win8( PoFxCompleteDevicePowerNotRequired, 4) k8_win8( PoFxActivateComponent, 12) k8_win8( PoFxIdleComponent, 12) #endif // < Win8 x32/x64 Extender and typedef PO_FX_DEVICE, *PPO_FX_DEVICE; DECLARE_HANDLE(POHANDLE); /* 8.0 8056 */ NTSTATUS PoFxRegisterDevice_k8 ( PDEVICE_OBJECT Pdo, PPO_FX_DEVICE Device, POHANDLE *Handle ) { return STATUS_SUCCESS; } VOID PoFxUnregisterDevice_k8 ( POHANDLE Handle ){ } VOID PoFxSetComponentLatency_k8 ( POHANDLE Handle, ULONG Component, ULONGLONG Latency ){ } VOID PoFxSetComponentResidency_k8 ( POHANDLE Handle, ULONG Component, ULONGLONG Residency ){ } VOID PoFxStartDevicePowerManagement_k8 ( POHANDLE Handle ){ } VOID PoFxCompleteIdleState_k8 ( POHANDLE Handle, ULONG Component ){ } VOID PoFxCompleteIdleCondition_k8 ( POHANDLE Handle, ULONG Component ){ } VOID PoFxReportDevicePoweredOn_k8 ( POHANDLE Handle ){ } VOID PoFxCompleteDevicePowerNotRequired_k8 ( POHANDLE Handle ){ } VOID PoFxActivateComponent_k8 ( POHANDLE Handle, ULONG Component, ULONG Flags ){ } VOID PoFxIdleComponent_k8 ( POHANDLE Handle, ULONG Component, ULONG Flags ){ }
  9. You should just create integrated setup instead using WU again and again for same update set You can easily download all needed files using Windows Hotfix Downloader
  10. @maile3241 Wooow, great work. So custom Windows Update release should be soon?
  11. It´s builded from stolen vLite code. For Vista use vLite. For newer systems NTLite - it´s really then best tool available over internet for Windows optimizing
  12. @D.Draker Don't use vLite on 7. Use NTLite.
  13. Nice catch, you can submit your driver to SamLab for DriverPacks update
  14. I tried these patches from BA and in my tests it doesn't work. Still unsupported message and after click on OK, then it directly rebooted.
  15. Latest working AVG 18.8.4084.0 FREE for Windows XP SP3+ / Server 2003 x86 & x64 can be downloaded here. https://install.avcdn.net/avg/iavs9x-xp/avg_antivirus_free_setup_offline.exe It can receive updates automatically without any issues. However is better to archive offline updates time by time from here https://install.avcdn.net/avinitro/aviupd.exe
  16. Yes, load 5512 and you can see more functions in human readable format instead of 6443
  17. Here you can find what you are looking for https://www.wincert.net/forum/topic/17689-xpw2k3-x64-on-modern-hardware/?do=findComment&comment=138860 https://www.wincert.net/forum/topic/17689-xpw2k3-x64-on-modern-hardware/
  18. I have tried it with winlogon.exe v5512 as I see more in IDA with this version instead of latest one. I was thinking we can disable that Starter edition checking part. @Dietmar Maybe you can find way how to disable Starter edition check?
  19. PM me for testing image
  20. Link works here without any issues
  21. OK, so I have downloaded your repo + latest SSU + MR + Flash removal + latest .NET KBs. So this means I'm still missing all pre-EOL updates right? Any repository / update pack for this please? EDIT: Seem like for pre-EOL updates can be used WSUS 9.25 which have 6.2 x86 and x64 options available https://download.wsusoffline.net/wsusoffline925.zip
  22. Hi, is there any latest update repository? Or update list to get Windows 8.0 fully updated untill 06-2022? Or should I download everything from mega that seems to be lastly updated in 2019? Then continue to latest Monthly Rollup + SSU and thats all? What about .NETs and Flash? https://mega.nz/folder/ExhDEbDA#pUhzXKVp5-hgzvylW_btfQ + https://support.microsoft.com/en-au/topic/kb5014027-servicing-stack-update-for-windows-server-2012-may-10-2022-0f6b508c-dd41-49aa-b69b-3202fcd3aada + https://support.microsoft.com/en-us/topic/june-14-2022-kb5014747-monthly-rollup-e6a24f00-91c9-4a18-9f91-4ce25ee4f22e
  23. @Mov AX, 0xDEAD I have created Pull request on GitHub with latest Vista / 7 kernel redirect changes. Plus I have added new missing function IoSynchronousCallDriver as it's needed to get Windows 8.0 build 8056 Generic MMC / SD work under XP in future.
  24. @Damnation @Dietmar Maybe you can try follow this to extend single dll with custom functions https://www.codeproject.com/Articles/17863/Using-Pragmas-to-Create-a-Proxy-DLL
×
×
  • Create New...