Jump to content

roytam1

Member
  • Posts

    3,323
  • Joined

  • Last visited

  • Days Won

    406
  • Donations

    0.00 USD 
  • Country

    Hong Kong

Posts posted by roytam1

  1. On Thursday, 16 March, 2017 at 10:47 PM, Dibya said:

    Grab pemaker by BlacKwingCat or Cff Explorer by ntcore .

    Change Image base to according to the language version file you are localizing .

    It is surely important . Image base defines hole Relocation table

    I'd rather use genuine MS EDITBIN /REBASE tool to rebase DLL into new address.

  2. 14 hours ago, DanR20 said:

    According to the first link it says:

    CoGetInterceptor requires information from a typelib to be able to
    // generate its emulated vtable. If a typelib is unavailable,
    // CoGetInterceptor returns 0x80070002.

    Would it be just a matter of editing the typelib? Deleting that will probably not fix the error and I'm assuming that 0x80070002 is a stop error that keeps the program from opening.

    0x80070002 is HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), i.e. The system cannot find the file specified.

    So it tries to find a file when CoGetInterceptor* is executed and it failed.

  3. 11 hours ago, MrMaguire said:

    For each release of the Extended Kernel, BlackWingCat has two files. One ending with C and another ending with D.

    For example:

    Windows2000-KB935839-v28c-x86-ENU

    Windows2000-KB935839-v28d-x86-ENU

    What's the difference?

    That is "G" not "D". "G" means "Game Fix" which does not have some newer API exports so it will not confuse some games.

  4. 12 hours ago, rn10950 said:

    I'll look into it, but it depends on how new it is. The problem with the newer code, especially the Security code, is that it won't compile under VC6. The closer it is to Gecko 1.8.1, the easier it is to port.

    This may help: http://kb.mozillazine.org/Security.tls.version.*

    https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.15.1_release_notes

  5. 47 minutes ago, GrofLuigi said:

    On another note, can anyone please tell me which is the last version of Chrome that doesn't block npapi (java)? I need it for work.

    Exact version and subversion, please.

    I know that for a long time there were only warnings that could be overridden, but around version 45 the kill switch was supposed to be toggled.

    I have version 44 and Google (the site) is nagging me to update. I have disabled all updaters (scheduled tasks etc.), set group policy (I use business edition), but I want to find the last usable version and forget about it.



     



     

    Yes chrome 44 is last version that supports NPAPI.

    for sites, grab User Agent Switcher to workaround it.

    https://chrome.google.com/webstore/detail/user-agent-switcher-for-c/djflhoibgkdhkhhcedjiklpkjnoahfmg

  6. 35 minutes ago, blackwingcat said:

     

    I always create installer with CABARC.EXE +  IEXPRESS.EXE

    1. compress all folder to cab. ... for example example.cab

    2. make cmd file

    
    @echo off
    extrac32 /y /e /l .\ .\EXAMPLE.CAB > nul
    INSATALLER.EXE

    setup.cmd

     

    3. create Package with  IEXPRESS to run setup.cmd

     

    Since I don't like double extraction, my modified update packages will continue to use SFXCAB.

  7. I added Win2000 style installer icon to SFXCAB-6.2.29.

    To change icon:

    1. Before modifying, note down the file size of sfxcab.exe and convert it to little ending hex (a). (i.e.: 40,448 bytes => 9E00h => 00 9E)
    2. After modified with resource editor, note down the new file size of sfxcab.exe and convert it to little ending hex (b).
    3. Open sfxcab.exe with hex editor, find the "(a) 00 80" sequence (i.e. "00 9E 00 80"), and it should only have 1 occurrence.
    4. Change (a) with (b) and then save.
    5. Recalculate PE checksum with PEChecksum.

    To use:

    copy /b sfxcab.exe+yourcab.cab yourcab.exe

    To autorun:

    Open cab with hex editor before "copy /b", change "20"(hex) to "60"(hex) just before the filename you desired to autorun after extraction.

    File:

    https://mega.nz/#!2JVQgBLS!9Xe9kQk6WVA_ubfGLcaaSsHcjmpM4t-UoR0qhkRbxkk

×
×
  • Create New...