George King
MemberContent Type
Profiles
Forums
Events
Everything posted by George King
-
It's SFX EXE, simply open it with WinRAR exactly. Mypal doesn't see them and they still must be installed manually.
- 401 replies
-
1
-
- Web Extensions
- userChrome.css
-
(and 3 more)
Tagged with:
-
@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.
- 401 replies
-
- Web Extensions
- userChrome.css
-
(and 3 more)
Tagged with:
-
@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?
- 401 replies
-
- Web Extensions
- userChrome.css
-
(and 3 more)
Tagged with:
-
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
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; -
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
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. -
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
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 -
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
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. -
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
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 ){ } -
Microsoft Windows Update v3/v4/v5
George King replied to WULover's topic in Windows 9x Member Projects
@maile3241 Wooow, great work. So custom Windows Update release should be soon?- 1,112 replies
-
- windowsupdate
- windows xp
-
(and 3 more)
Tagged with:
-
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
-
@D.Draker Don't use vLite on 7. Use NTLite.
-
SoundMAX HD Audio drivers not working on XPx64
George King replied to JukeBoxHero's topic in Windows XP 64 Bit Edition
Nice catch, you can submit your driver to SamLab for DriverPacks update -
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
-
Windows 7 on the Intel Alder Lake/Z690 platform
George King replied to Carlos S. M.'s topic in Windows 7
PM me for testing image -
Root Certificates and Revoked Certificates for Windows XP
George King replied to heinoganda's topic in Windows XP
Link works here without any issues -
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
-
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
-
NTOSKRNL Emu_Extender for Windows XP/2003
George King replied to Mov AX, 0xDEAD's topic in Pinned Topics regarding Windows XP
@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. -
@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