Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/08/2022 in all areas

  1. Well, it seems that @vxiiduu has finally released his VxKex Windows 7 api extensions that you can use to run modern programs on Windows 7. It works very well so far, and makes many programs such as the latest version of iTunes which normally wouldn't run on Windows 7 run. NOTE: These are not modified Microsoft binaries, these are different binaries that just implement more functions their what would normally be on Windows 7. Link: https://github.com/vxiiduu/VxKex Latest Version: 0.0.0.2
    1 point
  2. Agreed. I have plans to support wildcards on both types of KnownDLLs, for example: API-MS-Win-Core-* = Kernel32.dll
    1 point
  3. and you can check if browser supports OptionalChaining and NullishCoalescing in javascript: const isOptionalChainingSupported = () => { try { eval('const foo = {}; foo?.bar'); } catch(e) { return false; } return true; } const isNullishCoalescingSupported = () => { try { eval('const foo = null ?? "default string";'); } catch(e) { return false; } return true; } copied and rewrote from https://stackoverflow.com/a/69935847
    1 point
  4. you may test window.queueMicrotask (or any DOM object) instead. chrome scope does not include any method inside `window` object IIRC.
    1 point
  5. Using without Kext: I want to add that the forwarding in the registry (SessionManager\KnownDLLs ) API-MS-Win-Core-RtlSupport-L1-1-0 => Ntdll.dll should be API-MS-Win-Core-RtlSupport-L1-1-0 => Kernel32.dll. Otherwise Mypal 28/29, Centaury, Cyberfox 52 and IceDragon don't run. Error: UCrtBase.dll is linked to missing Export-Ntdll.dll:RTLCaptureContext. I have the entry "[ntdll.dll] RtlCaptureContext=" in the stubs.ini file as an aid. RTLCaptureContext should be supported by Kernel32.dll (Kexbases) and I think this the cleaner solution.
    1 point
  6. @Dietmar Do you want this addon? https://drive.google.com/file/d/1OF7WRLZnf8CngYXxHPkD-ogykJCc5nyK/view?usp=drivesdk KB888111 uaa drive addon for xpsp3 I found it on the 4sh file hosting site.
    1 point
  7. I was planning to disablle version checking, I instead auto-detect features: https://github.com/RamonUnch/palefill/pull/2/files
    1 point
  8. Um, that has kind of ALWAYS been the atmosphere for pretty much ALL "tweaks" for Windows. You've only been here a week or so, but look around at other "tweak" web sites, that's just how this atmosphere works. There has always been a very fine line in the end user wanting their LEGAL copy of Windows to perform the way it SHOULD HAVE BEEN designed and performing "tweaks" that don't adhere 100% to the Windows "license" that most of us never read in the first place.
    1 point
  9. I had the same problem, took me a while to figure it out.
    1 point
  10. That FAT32 Size Option is Unhidden when you use Windows 10 or 11 as Operating System and the Option is Hidden in Windows 8 or 7 Operating System that don't support 2 partitions on Removable Devices. So I suggest you to use Windows 10 x64 or 11 x64 as Operating System.
    1 point
  11. Not a lie, EnumProcessModulesEx is in psapi.dll. K32 version is obviously in kernel32.dll on newer OS.
    1 point
  12. Ddhelp and systray are also optional. The KB should not still be running after installation. The other five I have.
    1 point
  13. @Dietmar I've never heard of it. Although If I want to patched imports I can already use CFF Explorer or PEMaker 0.8.2 for that.
    1 point
  14. @Damnation Did you know this tool Dietmar
    1 point
  15. @VistaLover - I am always amazed at how you can keep track of all of this "stuff". I always read these and can't for the life of me know "which" Serpent or New Moon to even "trust" anymore
    1 point
  16. Download link of what exactly? The extended kernel? If that's the case, then it can't be provided, because:
    1 point
  17. I've got new Reddit's View Entire Discussion button working. The expressions I wrote to set the resulting variables made from matching regex function call was totally wrong, should be: const s=t.match(i), o=!s||null==s[1]?void 0:s[1], r=!s||null==s[2]?void 0:s[2]; Instead of... const s=t.match(i), o=null===s[1]?void 0:s[1], r=null=== [2]?void 0:s[2]; Now, does Git work on Vista...it does! Awaiting approval. https://github.com/martok/palefill/pull/15
    1 point
  18. for regex engine you should watch https://repo.palemoon.org/MoonchildProductions/UXP/issues/1675
    1 point
  19. this should be fixed: https://github.com/roytam1/UXP/commit/0855ba43d71472178153d6188e64c6a44fa711da
    1 point
×
×
  • Create New...