Leaderboard
Popular Content
Showing content with the highest reputation on 07/30/2023 in Posts
-
Hello @Saxon! Thanks for your reply! Your quote refers to version Comodo Firewall 12.0.0.6818 and is therefore version 12. However, I referred to version Comodo Firewall 8.4.0.5165 which is obviously version 8 and therefore older. In this thread, a member has also confirmed what I once read in the Comodo forum and therefore wrote to you: TBH, I have not been a fan of Comodo for a long time, and it's a long time ago when I used it. Furthermore, I do not plan to test this firewall. As I already wrote, my firewall is Windows 10 Firewall Control Free XP 7.5.105.217 from Sphinx, and I am not about to uninstall it for testing purpose. If anyone was interested in testing Comodo Firewall 8.4.0.5165, that would be great, of course.2 points
-
CF makes a series of fingerprints, and canvas isn't the main. They look at CH, WebGl, , System Fonts, Clientrects, IP, device CPU cores count, RAM amount, audio API fingerprint, even if you change the canvas, the rest will stay the same.2 points
-
// ==UserScript== // @name mediamarkt.de | saturn.de quick fix // @namespace https://github.com/UCyborg // @version 1.0 // @author UCyborg // @match https://www.mediamarkt.de/* // @match https://www.saturn.de/* // @grant none // ==/UserScript== let a = document.getElementsByTagName('style')[0]; a.innerHTML = a.innerHTML.replace(`*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) { all: unset; display: revert; }`, ''); It was implemented in Firefox first in 2019, that's 4 years ago, pre-COVID-19. So how can you say it will be Google that will come up with something else, it could be Mozilla.2 points
-
2 points
-
All languages are included in this project. But the inventories are hard to get in all the supported languages. As for V4 updates, they're firstly added in english to properly fix them, and then translated.2 points
-
New build of Serpent/UXP for XP! Test binary: Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20230729-3219d2d-uxp-bdc6b90572-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20230729-3219d2d-uxp-bdc6b90572-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20230729-3219d2d-uxp-bdc6b90572-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230729-d849524bd-uxp-bdc6b90572-xpmod.7z Win32 IA32 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230729-d849524bd-uxp-bdc6b90572-xpmod-ia32.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.7a1.win32-git-20230729-d849524bd-uxp-bdc6b90572-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.7a1.win64-git-20230729-d849524bd-uxp-bdc6b90572-xpmod.7z Official UXP changes picked since my last build: - Issue #1240 - Part 1 - Define a new BigInt primitive type. Based on https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 1.0. However leaving out the --enable-bigint changes. (f041afc61d) - Issue #1240 - Part 2 - Define the BigIntObject class for BigInt wrapper objects. Based on https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 3. In our Part 3 we will fast forward to the V8 implementation skipping GMP. (13ac0d6483) - Issue #1240 - Part 3a - Adjust mozilla::FloatingPoint<T>'s definition. So only the barest details are specified for floating-point encodings, with every other number, bit mask, &c. mathematically derived. Also add a bunch of documentation comments. https://bugzilla.mozilla.org/show_bug.cgi?id=1508725 Prerequisite for our V8 fast forward. (ddd49121a6) - Issue #1240 - Part 3b - Implement WrappingOperations.h for wraparound math operations & conversions. https://bugzilla.mozilla.org/show_bug.cgi?id=1441657 Implement mozilla::WrappingMultiply. Prerequisite for our V8 fast forward. (d42d5ce138) - Issue #1240 - Part 3c - Fast-forward to the V8 version of BigIntType. Disabling some sections temporarily since the dependencies are not there yet. Based on the following: https://bugzilla.mozilla.org/show_bug.cgi?id=1502797 https://bugzilla.mozilla.org/show_bug.cgi?id=1471134 https://bugzilla.mozilla.org/show_bug.cgi?id=1441098 Part 3 & 4 Add structured clone support for BigInt and Enable BigInt wrapping from DOM bindings. https://bugzilla.mozilla.org/show_bug.cgi?id=1522738 (07b6c03dc7) - Issue #1240 - Part 4 - Implement parser support for BigInt literals. https://bugzilla.mozilla.org/show_bug.cgi?id=1505849 Partially based on https://bugzilla.mozilla.org/show_bug.cgi?id=1456568 Un-result-ified the BigInt XDR code, so we can enable it. https://bugzilla.mozilla.org/show_bug.cgi?id=1419094 Uninitialised memory read with BigInt right-shift https://bugzilla.mozilla.org/show_bug.cgi?id=1679003 (dc23241afb) - Issue #1240 - Part 5a - BigInt to Number conversion. https://bugzilla.mozilla.org/show_bug.cgi?id=1466893 (25ee810247) - Issue #1240 - Part 5b - BigInt support for basic arithmetic operations. https://bugzilla.mozilla.org/show_bug.cgi?id=1471134 Parts 3-5. (44b5d8dec3) - Issue #1240 - Part 5c -Implement ToInt32OrBigInt operation. https://bugzilla.mozilla.org/show_bug.cgi?id=1490387 (d44e3c9941) - Issue #1240 - Part 5d - Use the radix when parsing BigInts. Fixes Hex, Octal and Binary BigInt literal parsing. Previously it was only parsing in decimal. (20b52c9e2e) - Issue #1240 - Part 5e - BigInt bitwise operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1490387 (03734326e8) - Issue #1240 - Part 5f - Add DataView methods for BigInt access. https://bugzilla.mozilla.org/show_bug.cgi?id=1528582 (e3ec738471) - Issue #1240 - Part 6a - Implement BigInt.prototype.toLocaleString. https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 5. (e8f0ea219f) - Issue #1240 - Part 6b - Use ToIndex when constructing TypedArray with length argument. https://bugzilla.mozilla.org/show_bug.cgi?id=1317383 Part 2. (e004b99054) - Issue #1240 - Part 6c - Implement asIntN and asUintN methods for BigInt values. https://bugzilla.mozilla.org/show_bug.cgi?id=1501104 (bbbab3898f) - Issue #1240 - Part 5g - Implement BigInt comparison operators. Implement BigInt support for equality operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1486173 Part 3. Implement BigInt support for relational comparison operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1492669 (1355043d40) - Issue #1240 - Part 7 - Handle BigInt values in XPCVariant code. https://bugzilla.mozilla.org/show_bug.cgi?id=1603055 (4a3f1b7570) - Issue #1240 - Part 8 - Fix incorrect asserts with debug enabled. Fix BigInt errors in remainder operations https://bugzilla.mozilla.org/show_bug.cgi?id=1524136 Also fix 2 debug asserts in fallthroughs due to missing BigInt cases. (7a30b0fa2d) - Issue #1240 - Part 9 - Fix incorrectly parsing decimal BigInt 0n. The decimal parser strips leading 0s, so prevent tokenbuf being empty. (4aa193b16b) - Issue #1240 - Part 10 - Implement minimal Ion support for BigInt. https://bugzilla.mozilla.org/show_bug.cgi?id=1507484 Implement IC support for BigInt. https://bugzilla.mozilla.org/show_bug.cgi?id=1522431 (2d5ee3c457) - Issue #1240 - Part 11 - Fix several issue reported on review. Skip over block delimiters when parsing BigInt literals. Update BigInt hashing to account for the possibility of moving GC. https://bugzilla.mozilla.org/show_bug.cgi?id=1531018 Make HashableValue comparison of BigInts infallible. https://bugzilla.mozilla.org/show_bug.cgi?id=1530406 Fix BigInt constructor API CallArgs usage. https://bugzilla.mozilla.org/show_bug.cgi?id=1526279 (15115c97fd) - No Issue - Fix intermitted crash on MacOS 14 Sonoma Beta 3. Not sure why this is happening but mIOSurface is nullptr. If we just skip binding, it will be created on the next call to BeginUpdate. (0fc38724d1) No official Pale-Moon changes picked since my last build. No official Basilisk changes picked since my last build. My changes picked since my last build: - js/BitInt: add BigInt support in JitFrames, fix crash in discord when posting. (bdc6b90572) pdate Notice: - You may delete file named icudt*.dat inside program folder when updating from old releases. * Notice: From now on, UXP rev will point to `custom` branch of my UXP repo instead of MCP UXP repo, while "official UXP changes" shows only `tracking` branch changes.2 points
-
OK Mister Pedantic, they didn't actually load 'instantly'! They certainly didn't take over 30 seconds to load as was cited earlier though.1 point
-
No disrespect, but "no, they did not". Visual appearances of rendering may be "instant", but that does not equate to the page loading "instantly". When does the stop watch begin? When does the stopwatch end? I let a "page load timer" extension be that stopwatch - it's the blue number in the upper right corner of my screencaps. But even if we resort to the Network Tab of Dev Tools, you have to define when the stop watch is "started" and when it is "stopped". But NOTHING loads "instantly". Not even a direct fiber optic line between you and the server.1 point
-
DreamMail Pro - Update information! DreamMail Pro has been updated again and is now available in version 6.6.6.11. It is still XP-compatible, and the development is ongoing! I have not been able to find a version history on their homepage. Therefore, I generated an official version history translated to English and provide it here: And here is the download link of DreamMail Pro 6.6.6.11: https://dl.cy-email.com/dm6/Download/dmpro_setup6.6.6.11.exe To force the updated installer of DreamMail Pro 6.6.6.11 to use English instead of Chinese as the installer language, I updated again my small loader that does this when it calls up the setup program. It must be executed in the same directory in which the setup file is located with its original file name dmpro_setup6.6.6.11.exe. Here is the download link of my loader Force_En_Install_DM_Pro_66611.exe: https://www.mediafire.com/file/lvg9qtaqt6voii4/Force_En_Install_DM_Pro_66611.7z/file Although some virus scanners detect this file as malicious, it is just a false-positive as always. Use my loader to force an English install, only if you trust me, of course! Cheers, AstroSkipper1 point
-
Vista was fine. Just ahead of it's time with the system requirements. To me, Vista was the best looking Windows ever made. And with the proper hardware it ran rock solid, just like Windows 7. Win11 is the second best looking Windows imo. But I have had more broken OS problems after Windows 11 WU runs. I disliked the messy UI of Windows 10 so I stayed with Windows 7 until 11 came out. Windows 11 will probably get one or two big updates and then it is going to maintenance mode while new development will shift to Windows 12, or whatever the next Windows will be called.1 point
-
So until MCP implements the "revert" CSS feature, the "best" workaround is far from ideal: toggling pref layout.css.is-where-pseudo.enabled to false, thus restoring the CSS behavior of previous UXP browser versions. Of course, by the time MCP does implement "revert," it's nearly certain Google will have come up with something else, and MCP will have to run even faster to stay in the same place.1 point
-
Yes, same idea. The add-on I linked to only changes the fingerprint after a user-specified amount of time has elapsed. The idea is to guard against (say) Cloudflare gathering the fingerprint twice to see if it changes. With the add-on, it will most likely be the same, so Cloudflare won't block you - but tomorrow the fingerprint will be different, and Cloudflare will start from scratch, tracking what it thinks is a whole new browser.1 point
-
Folks, this post was asking how to solve a specific problem with Kafan MiniBrowser - not to start an argument over which XP service pack is fastest. I have the same question. Anyone have an answer?1 point
-
Why should I feel discredited? Such renaming by using the console is elementary and old practice. I already did it that way in the good old DOS days. But if batch renaming other parts of files, I always use the multi-rename tool of Total Commander.1 point
-
OMG. If you're gonna open 20 f'ing tabs in Serpent, please read: (You do need some "real" RAM in your PC, and an SSD wouldn't hurt....) BTW, my old work PC died this week. Kevin thinks its the HDD, but it won't even boot from a CD/DVD, so I think it's the SATA controller, which means the motherboard. So I'm using my laptop, on (ugh) Win 11. No more XP, for the time being at least.... I've noticed that Serpent (55, at least) is way faster on the laptop! If only I could ditch Win 11! I'd even settle for Win 10 at this point.1 point
-
I use console extensively, hence the on-topic question I asked, I don't want to read A4 size spammy sheets written in poor English, you want to bring fights over and over again, I'm not interested in that. I'm one of the most polite people. And since you acknowledged you use simple apps, you're just a casual user, so there was nothing to "discredit", to begin with. I'm not sorry, I took the opinion of a PhD holder over yours. As for the other user, I assume you meant jaclaz? I know jaclaz for a long time, not only from this forum. Please stop your miserable attempts to create hostility between us. There's none! jaclaz likes when people confirm their words with hard proof, I respect him for that. He already explained everything he meant, thank you, jaclaz! jaclaz, I'm sorry I couldn't reply, got distracted with work. In a wonderful country, where I live, It's absolutely fine to have a second opinion of two doctors, despite both having PhD,. there's nothing "discrediting" in that. Or maybe you meant @AstroSkipper, who also wrote about this? @AstroSkipper,do you feel somehow "discredited" by this link? Please tell. https://answers.microsoft.com/en-us/windows/forum/all/how-do-i-batch-change-file-extensions-in-windows/f1b4219c-f2fe-4f25-83de-55ce8e7a71f81 point
-
To the excellent 3rd party apps mentioned before I would add cmexted by reverver.inc (no link, sorry), where you can call prompt, and many apps from a custom folder(s) in the context menu. I reported it back in this same thread in 2017 or so. The app hasn't changed. PS1: In xp I do not use the console unnecesarily, and have found ways to restrict it, so using it is a bit convoluted. I prefer to use fit-to-purpose apps instead. PS2: I apologice if saying "I feel your pain" made you feel insulted. I didn't imagine you at all, really, it ws just a very common figure of speech. I will put sticker on my monitor to remind me not to ever say it (to you) again, given your sensibility. PS3: There was no insult in my comment. To clarify I simply meant (in case you need translation) that your effort to discredit the technical advice given by two great member of this forum did not go unnoticed, nor is it welcomed. Particularly when backed by "a PhD said it, I read... have you got a PhD?". Particularly when asking for an MVP certification in an XP forum... Do you dig the joke?1 point
-
Two websites which do not work correctly in recent NewMoon28 / Serpent releases: www.mediamarkt.de www.saturn.de (It's actually the same company, so no surprise that both sites are affected.) The last build which displays the sites correctly is 20230311 (though they are not 100% functional there either), the first bad build is 20230318. Build 20230311: Newer builds:1 point
-
Dear Gawd, I've been looking for this for centuries! It allowed me to use +480megs on my 32bit OS, many thanks!1 point
-
Interesting! And what if one just extracts them, and then installs via the simple "inf" method?1 point
-
Can be reflashed back with an unlocked EVGA BIOS to see the full potential, if you know how to do it. Otherwise risky.1 point
-
Do you have an option "Allow memory remap", it usually helps, otherwise I agree, it's a bug in Windows 7, not the case with Vista, weirdly enough.1 point
-
Here is the future of Chromium on Windows 7: https://github.com/win32ss/supermium I have been closely tracking the many changes made to Chromium since November 2022, made with the intent of dropping support for Windows 7 and 8.x. As of version 111, it became very difficult to keep the newest versions running on Vista with the extended kernel; shared memory allocation changes made it impossible to do so as subtle changes to the API (which were done in kernel mode) prevented stable operation of the browsers. So I decided to build my own Chromium. I discovered that a further change was made to the shared memory allocation which broke it even further; the successor to mojo, IPCZ, was forced on by default. It only works properly with Windows 8.1+'s shared memory API. I disabled IPCZ for pre-8.1 and this made the sandbox work again on Vista and 7. Perhaps I will see exactly why IPCZ is broken (from the Windows API level) and try to fix it for the next release. The only win32 API link I can find is CreateFileMappingW, which I need to test with an IPCZ-enabled build on both 8 and 8.1 to see what makes it fail.1 point
-
Although I am actually not a friend of Google, I love to do many things by using a tablet. Apple is no choice to me for many reasons , so I am an Android user for many years. Searching the internet, researching and reading books or articles is the main intended purpose of my tablet. Many of my posts are written under Android and its most recent browsers. It's very comfortable and easy. As a respite from the Chrome or Chromium world, I then enjoy surfing with my UXP browsers under Windows XP.1 point
-
Thanks! Of course, I could revert to a previous build, but as a Frisian I am a very patient person. I'll wait for your next releases.1 point
-
BTW, TUP's feature "multi-row tab bar" also works again in the latest releases of New Moon and Serpent.1 point
-
Yes, that's correct. And v1.4 includes a great new feature: "Adds an optional feature to enable receiving Windows Embedded POSReady 2009 updates on Windows XP SP3." Thanks @CIACIACIACIACIACIA and @mina7601! Although I only updated the download link a few days ago, there is already a new version 1.4 with an interesting new feature. Ok! I will therefore update the link directly in my post.1 point
-
Thank you, @mina7601! They must have updated the link in the last minutes. I will correct that immediately.1 point
-
Hi @Dave-H, thanks for wanting to be a beta tester! Never had a beta tester before! I'll send you a PM! Cheers, AstroSkipper1 point
-
Update notification: Due to false alarms generated by some virus scanners I had to completely recreate the cacert Updater Fixed. The previous version was just a fixed and modified variant of the original file. My Avast virus scanner was constantly analyzing the file cacert_Updater.exe and generating false alarms, although it was of course virus- and malware-free. Avast did not like this old version at all, probably because of non-matching CRC check sums. Here are the VirusTotal scan results of the old "cacert Updater Fixed" and the recreated "cacert Updater Fixed" file for comparison: Old version of cacert_Updater_Fixed: Recreated version of cacert_Updater_Fixed: Now you can see the success of recreating. Only one unimportant scanner reports a (false) warning. Therefore I provide a new download link of the recreated "cacert Updater Fixed" version. Here it is: https://www.mediafire.com/file/y98gtqf8ewr6zz4/cacert_Updater_Fixed_Recreated.7z/file Kind regards, AstroSkipper1 point
-
Just to keep you informed, a short update of progress in development of my ProxHTTPSPoxy's systray menu. At first I provide a new screenshot documenting the current status of development: As you can see, three new items poroviding system proxy related functions have been added: "Check system proxy status", "Set ProxHTTPSProxy to mode System-wide" and "Set System to mode No proxy". I think now it is complete. All necessary functions have been added. Here is the complete list of features implemented in ProxHTTPSPoxy's systray menu: 1. Start ProxHTTPSPoxy 2. Stop ProxHTTPSPoxy 3. Hide ProxHTTPSPoxy 4. Show ProxHTTPSPoxy 5. Check if ProxHTTPSPoxy is running (in RAM) 6. cacert.pem Update 7. Root Certificates Update 8. Open IE Proxy settings 9. Close IE Proxy settings 10. Check system proxy status 11. Set ProxHTTPSProxy to mode System-wide 12. Set System to mode No proxy 13. Edit config.ini 14. Read documentation The test phase is slowly coming to an end. Any further suggestions, opinions or reactions are welcome, of course! So long, AstroSkipper1 point
-
Thanks for comparing of yours to mine! But I think that your project, which I will take a closer look at as soon as possible, is much more demanding and plays in a different league. I'm not a professional programmer and have little experience with high-level programming languages. I'm more of a batch programmer. My projects are probably less demanding than yours. Still, I feel quite honored. Thank you for the flowers! My first post is rather meant as an article with full information about our existing proxies and will be maintained or extented if necessary. It is the result of my knowledge and a lot of researching. All important information in one place for those who are interested in that kind of stuff. I did my very best in well structuring of content and in full support of visitors or members. And I added my own stuff like modified, fixed, updated or self created versions of different tools. The people who find reading my article too tiring or simply too complicated, are not the people I want to reach or support. Therefore I disagree with making of a new thread. But I totally agree with your suggestion to restructure the download section. It has become a bit bloated and maybe confusing too. Thanks again for your opinion! Always welcome!1 point
-
Thanks again for your support and your kind words! I appreciate your opinion very much. I hope you can understand a bit what's going on in my head right now.1 point
-
Thanks for your replies and your interest in my work! And special thanks to @Dave-H and @mina7601 for supporting me continously! At the moment there is no download link. First of all it is just a preview of what, beside other projects, I've created the last weeks. @NotHereToPlayGames Therefore you won't find any related link. As mentioned before, I'm almost done with my project and now it's in testing phase. So far it's working as expected here. But everything must be checked and any improvements or corrections made if necessary. So still a bit of work. And first I'll just wait a bit and see how the overall interest is this time. In the past I spent a lot of time in writing informative articles and guides, assisting people who look for help, solving problems, modifying and fixing programs, keeping everything up to date and so on, but the overall interest expressed was rather low. A lot of reads and downloads, on the other hand only a few reactions and even fewer comments. Maybe it's just too tiring to show a reaction or leave a comment. And the best thing of all: The only request I had was not even answered. Except a reply of @Dave-H, of course, although the request wasn't addressed to him. Thanks again! Anyway, to me, all that is not really a sign of genuine interest. Of course I know nobody forced me to do all that, but anyway, It's actually a bit frustrating and not much fun in that way. Furthemore I think an author who shares his work with a community at least thrives on feedback and needs a bit of motivation for his creative ambitions. But anyway. I don't want to lose my fun in doing my work and only get annoyed by disrespectful behavior. In the old days my Latin teacher always tried to motivate us in translating by never stopping to say: New piece, new luck! And one thing is for sure: Time flies and will tell. Then we'll see. Kind regards, AstroSkipper1 point
-
After a little break and some programming work, I've almost finished my current project. It is a fact that ProxHTTPSPoxy REV3e is the latest version of our proxies and therefore I'd like to switch to completely. But the lack of a systray menu like HTTPSProxy's was a reason against it. So I decided to create my own version of a ProxHTTPSPoxy systray menu. And now it is ready in first version. Here we go! This is a screenshot of my ProxHTTPSPoxy's systray menu for more convenient use and control of its functions. I created it by combining self-programmed files, which execute specific tasks related to ProxyHTTPSProxy, with already existing programs. Of course, a single compiled program like HTTPSPoxy's launcher is great, but my "launcher" can be totally customized and continously extended according to user's needs due to its modular structure, therefore much more flexible. More features can be added easily without touching existent code. It's fully portable and can be copied to any location. Already implemented features are: Start, stop, hide and show ProxHTTPSPoxy. Check if ProxHTTPSPoxy is running (in RAM). Update cacert.pem and Root Certificates. Open and close IE Proxy settings. Edit config.ini and read documentation. I started creating weeks ago with continuing improvements and bug fixing. Now it's in testing phase. So far it's working without any problems.1 point
-
That's right. The packages of HTTPSProxy and ProxHTTPSProxy are totally different. In HTTPSProxy there is one main executable, whereas in ProxHTTPSProxy a small executable is calling up the actual main executable in subfolder application. Last version of HTTPSProxy bases on pyopenSSL 18.0.0, a rather thin wrapper around (a subset of) the OpenSSL library, whereas ProxHTTPSProxy REV3e bases on pyopenSSL 19.1.0, a more recent one. Current version of pyopenSSL is 22.0.0. I couldn't find any information about HTTPSProxy's openSSL version, but I think it is a bit older than 1.1.1d, probably 1.1.0. Therefore only ProxHTTPSProxy REV3e has TLS 1.3 capabilities. I'm curious what @VistaLover has to say about it. Unfortunately HTTPSProxy's launcher can't be used in ProxHTTPSProxy as it is. The launcher.exe would have to be decompiled, modified and recompiled to get it fully working or a new launcher has to be created. But you know I do things my way which means that I have already created a systray menu for better control and more comfortable use of ProxHTTPSProxy, but the launcher of HTTPSPoxy is simply outstanding and a class of its own.1 point
-
Hi to all and especially to @mina7601, As I posted above and confirmed by @mina7601, the cacert Updater of @heinoganda's ProxHTTPSProxy packages doesn't work anymore. Applying the file cacert_Updater.exe leads to the message "Roots Certificates could not be updated!". I have analyzed this problem and could fix the file cacert_Updater.exe. Now it works in the way as it should be. Here is a download-link of the new version of cacert Updater in form of a separate archive: https://www.mediafire.com/file/uf20arawpbuiz2y/cacert_Updater_Fixed.7z/file Kind regards, AstroSkipper1 point
-
Hi to all, I have updated the content of my article in first post. Due to the fact that some of you had problems when running ProxHTTPSProxy or HTTPSProxy in older systems I have examined the correlation of crashes with the SSE2 capability of a CPU. The current results can be found in sections Prerequisites and Versions. Furthermore both versions of Root Certificate Updater have been updated and are now of 02/24/2022. Regards, AstroSkipper1 point
-
Thanks for commenting! And now I have a mathematical statement for you: @Windows7fan = @xpandvistafan I think after evaluation the boolean truth value has to be set to true. What do you think? PS: I hope today is my day!1 point
-
You're welcome! It has been a lot of work indeed. I did that all especially for people not familiar with this kind of stuff. But now it's finally finished if something can really be finished. In any case, thanks for your support!1 point
-
Where did you read in MDL that KB3072630 should fix "the certificate error"? And which certificate error do you mean? The only post I could find mentioning the update KB3072630 is: But it's referring to Server 2003 or XP x64 and KB3072630 is an older update related to MSI Installer of 2015. The last update of the files msi.dll, msiexec.exe and msihnd.dll was in 2019. Therefore I wonder what this old MSI Installer update should do to fix @Dave-H's Windows Update error code 0x80072f8f.1 point
-
Windows XP Professional release date October 25, 2001. https://en.wikipedia.org/wiki/Windows_XP1 point
-
1 point
-
Oh , it's no secret . Some of them are : Hellgate:London ( I like all those wonderful demons), Diablo II and it's addon , Sacred 1 (frequent) and 2 (rarely , I deleted it , it didn't entertain me enough to ever get back). I like the first one more , the 1st is kinda more realistic and bloody, there are programs that can make it run in full HD. Actually , I'm not a die hard gamer . Also, I played Road Redemption DX11, but on x64 system , deleted too , I think it needs more tracks in free game mode. But it's kinda reminded me of SEGA's Road Rash which I played in 1991. And what about you ?1 point
-
No fight was intended , you started this marvellous topic about Vista , suddenly there are people that say other (newer WIndows) are somewhat ok too . And this is said among us (!) , Vista die-hard fans . How can it be ? This has been discussed a million times , go to Win7/8/9/10/11/12 forum and discuss it there , besides going off-topic is simply not polite.1 point
-
This topic slowly turns into Vista vs. 7 nonsense ...1 point