Leaderboard
Popular Content
Showing content with the highest reputation on 07/29/2023 in all areas
-
Beyond the very subtle (but noticeable) FUD, I feel your pain. You'd be better served in a non-xp forum, or paying for advice you can trust, for an OS that you actually use. Better yet, get a PhD, and come lecture here, for free.6 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.5 points
-
@Dixel I think you are confusing matters: 1) how to batch rename files 2) how to open a command prompt when in an explorer window in the shown directory/folder To batch rename files (#1 in the above list) there are of course working command lines and/or you can write a dedicated batch, BUT there are a number of dedicated third party tools with more (or easier, or enhanced) features. My remark and suggestions were ONLY and EXCLUSIVELY about how to open a command prompt in an explore window (#2 in the above list). For that (open a command prompt in an explorer window, #2 in the above list) there is NO available function in Windows XP, there is something similar (and I later posted a link to an article on petri.com about how to use the existing feature) that however opens a command prompt in a selected directory, NOT in the currently displayed one. To do the latter (open a command prompt in an explorer windows in the currently displayed directory) there is the need for a third party tool, and I posted a link to two of them, one tested and used successfully by me for over 10 years, and another one, not tested by me, but said to be working just fine, more suitable to later versions of windows. jaclaz3 points
-
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?2 points
-
Hi @AstroSkipperand all others, sorry for the delays, despite what they say about 8.xxx to be the last for XP, I have only been able to use Comodo 5.xxx and 6.xxx under XP. Newer versions simply didn't work good for me, despite what they say! I even had missing icons! As you may see on the screen, 5.5 works, but modern programmes have no problems to just go through it! When checking for updates, for example. Conclusions: I do not recommend the 5.xxx range for the modern days usage, It's simply too old. I'll go on with the investigations.2 points
-
I literally wrote: I have doubts, no need to activate your other senses, I, of course, could simply forget, and I have no shame in it, I don't use XP daily, but what does it have to do with "pain" and "fear", unless imagining me in trouble makes you feel better. If so, please go on, however, interesting would be to know what you think about the on-topic subject, as a long time WinXP diehard. Did you have that function already, or you applied the registry hack that brings it to windows XP SP3? As for your worries about my personal life, I'd better be served in a nice restaurant near my house, with a nice Dutch dish, instead of your word salad, so please, stick to technical information only.2 points
-
New build of post-deprecated Serpent/moebius for XP! * Notice: This repo will not be built on regular schedule, and changes are experimental as usual. ** Current moebius patch level should be on par with 52.9, but some security patches can not be applied/ported due to source milestone differences between versions. Test binary: Win32 http://o.rthost.win/basilisk/basilisk55-win32-git-20230729-cc1746f04-xpmod.7z Win64 http://o.rthost.win/basilisk/basilisk55-win64-git-20230729-cc1746f04-xpmod.7z repo: https://github.com/roytam1/basilisk55 Repo changes: - ported from UXP: 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. (f041afc6) (34419f498) - ported from UXP: 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. (13ac0d64) (fc5bb92c2) - ported from UXP: 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. (ddd49121) (91fabc37c) - ported from UXP: 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. (d42d5ce1) (49dc7be42) - import from UXP: 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 (07b6c03d) (80a55462c) - ported from UXP: 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 (dc23241a) (5e37d7f16) - import from UXP: Issue #1240 - Part 5a - BigInt to Number conversion. https://bugzilla.mozilla.org/show_bug.cgi?id=1466893 (25ee8102) (f37c3575d) - ported from UXP: Issue #1240 - Part 5b - BigInt support for basic arithmetic operations. https://bugzilla.mozilla.org/show_bug.cgi?id=1471134 Parts 3-5. (44b5d8de) (e9db14392) - import from UXP: Issue #1240 - Part 5c -Implement ToInt32OrBigInt operation. https://bugzilla.mozilla.org/show_bug.cgi?id=1490387 (d44e3c99) (52cd25051) - import from UXP: 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. (20b52c9e) (e6f87b935) - import from UXP: Issue #1240 - Part 5e - BigInt bitwise operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1490387 (03734326) (c636a3619) - import from UXP: Issue #1240 - Part 5f - Add DataView methods for BigInt access. https://bugzilla.mozilla.org/show_bug.cgi?id=1528582 (e3ec7384) (f8a89726e) - import from UXP: Issue #1240 - Part 6a - Implement BigInt.prototype.toLocaleString. https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 5. (e8f0ea21) (3eec0cf70) - import from UXP: Issue #1240 - Part 6c - Implement asIntN and asUintN methods for BigInt values. https://bugzilla.mozilla.org/show_bug.cgi?id=1501104 (bbbab389) (b63e50296) - import from UXP: 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 (1355043d) (39f489448) - import from UXP: Issue #1240 - Part 7 - Handle BigInt values in XPCVariant code. https://bugzilla.mozilla.org/show_bug.cgi?id=1603055 (4a3f1b75) (86680acff) - import from UXP: 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. (7a30b0fa) (58dd96863) - import from UXP: Issue #1240 - Part 9 - Fix incorrectly parsing decimal BigInt 0n. The decimal parser strips leading 0s, so prevent tokenbuf being empty. (4aa193b1) (10f0b4e02) - ported from UXP: 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 (2d5ee3c4) (205f33291) - ported from UXP: 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 (15115c97) (dc387c94c) - import from UXP: 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. (0fc38724) (8e6c59994) - import from `custom` branch of UXP: js/BitInt: add BigInt support in JitFrames, fix crash in discord when posting. (bdc6b905) (cc1746f04)2 points
-
for inpatient testers: new binaries uploaded! changelogs will be posted after I wake up some hours later!2 points
-
Hi @VVallter Breneka, hello from Belgium and welcome to MSFN! I wish you to enjoy the forums! Have a nice day. hpwamr2 points
-
2 points
-
This time I decided to make a totally clean install again, just to launch Spellforce 3 Reforced, released in 2022. No missing dependencies, all looks good, but I'm awarded with this error. It's not a driver problem, the game starts just fine with the same driver on later OS. This happens with all versions of the Kernel. Ideas?2 points
-
@win32, as promised, the solution for both methods (local and normal), was to redirect Opera browser to the original non-modified shell32 from SP2 (modified in 2009). I forced the path through my starter app., (the one with the Opera icon, if you remember). Now dialogues open up just fine.2 points
-
I move from Win7 to Linux, but it will last and I am running out of a license to Kaspersky. It makes no sense to extend it, so I'm looking for some free anti -virus that can protect my win7 for about a few months. Can any of you recommend something to me?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
-
Yes, the DirectWrite in there is good enough to make some fonts load in Supermium, but I don't believe the media foundation or Direct2D parts are compatible.1 point
-
There is NO "universal" answer to that question. The simple fact of the matter is that you WILL have to try all of them and decide which one fits YOUR personal preferences.1 point
-
I can confirm that the latest build fixed the crash for me. Thanks roytam1.1 point
-
I now tried visiting @cloudstr's cited site: https://www.jaynestars.com/ in today's NM27 release, and it didn't crash NM27. Thank you very much.1 point
-
New build of BOC/UXP for XP! Test binary: MailNews Win32 https://o.rthost.win/boc-uxp/mailnews.win32-20230729-ef491d91-uxp-bdc6b90572-xpmod.7z BNavigator Win32 https://o.rthost.win/boc-uxp/bnavigator.win32-20230729-ef491d91-uxp-bdc6b90572-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/boc-uxp/tree/custom * Notice: the profile prefix (i.e. parent folder names) are also changed since 2020-08-15 build, you may rename their names before using new binaries when updating from builds before 2020-08-15. -- New build of HBL-UXP for XP! Test binary: IceDove-UXP(mail) https://o.rthost.win/hbl-uxp/icedove.win32-20230729-id-656ea98-uxp-bdc6b90572-xpmod.7z IceApe-UXP(suite) https://o.rthost.win/hbl-uxp/iceape.win32-20230729-id-656ea98-ia-93af9a0-uxp-bdc6b90572-xpmod.7z source repo (excluding UXP): https://github.com/roytam1/icedove-uxp/tree/winbuild https://github.com/roytam1/iceape-uxp/tree/winbuild for UXP changes please see above.1 point
-
Good question! Kaspersky has a free version, but I never used it and cannot tell a paid user how to downgrade to Kaspersky Free. Microsoft Security Essentials has long been a very popular free antivirus for Windows 7. However, Microsoft once said that definition updates would be provided “until 2023,” and there have been ominous reports from MSE users recently (such as this SevenForums thread). I cannot promise you that MSE will be useful for even a few more months. Avast/AVG also makes free versions that still support Windows 7, as does Panda. I wrote about antivirus products that have already ended or plan to end support for Windows 7 in a March 1 post.1 point
-
You posted in English already on the forum, and you need to at least provide a translation. This is an English only forum as you can see in the rules.1 point
-
@VVallter Breneka Welcome to the forum!1 point
-
Totally agree, I can't imagine this world without iguanas.1 point
-
FYI, Ultra Adware Killer has been updated to the version 10.7.9.0 on 20.07.2023. I tested this version under Windows XP. Unfortunately, the versions 10.7.8.0 and 10.7.9.0 are no longer compatible with Windows XP although some websites, as for example Softpedia, still list the most recent version 10.7.9.0 falsely as compatible. Therefore, the last XP-compatible version seems to be 10.7.7.0. Accordingly, I changed the provided download link, which would otherwise point to an XP-incompatible version, and updated my article completely. Cheers, AstroSkipper1 point
-
Hope you're taking the heat well at your place. If I'm still missing something obvious, please enlighten me ... I think the reason was to provide a download link which was missing for the SQLiteStudio 3.1.1 in that previous post.1 point
-
Interesting! And what if one just extracts them, and then installs via the simple "inf" method?1 point
-
My driver is from 2021, oen of the last ones for 7 and 8. RDR2 runs perfectly fine. DXVK, I tried today, no result. Looks like the game can be added to a full no-support list!1 point
-
In any case, save this driver, you might need it in the future, it's a very rare one for Kaby!1 point
-
How to Find On-Board Intel HD Graphic Series, Device ID https://www.youtube.com/watch?v=-Se17-uYWL8 https://www.youtube.com/watch?v=4MUD1WsQ8pU1 point
-
I tested these myself; Versions: - Intel Graphics Driver: 21.20.16.4508 - Intel Display Audio Driver: 6.16.00.3164 (Windows 7) - Intel Display Audio Driver: 09.22.00.621 (Windows 8.1/10) Supports Intel Iris graphics, Intel Iris Pro graphics and Intel HD graphics on: - 7th Gen Intel Core processor family (Codename Kaby Lake) - 6th Gen Intel Core processor family (codename Skylake) - Apollo Lake - Intel Xeon Processor E3-1200 v5 Product Family - Intel Xeon Processor E3-1500 v5 Product Family - Intel Xeon Processor E3-1200 v6 Product Family https://drivers.softpedia.com/get/GRAPHICS-BOARD/INTEL/ASUS-PRIME-Z270-P-Intel-Graphics-Driver-21-20-16-4508-Beta.shtml1 point
-
On that PC, I'm updated to the level of January 2020. Not sure if I want to go higher. Veodeocard is with 6GB of VRAM, looks like it's enough. Drivers are old, but they don't make them for Windows 7 anymore. I would like to add, i run RDR2 perfectly fine, no freezes. So the card is fine.1 point
-
Thanks! But now only black screen and nothing. I had the same issue with Elden ring, black screen and only music in the menu (I could hear the clicking). Platfrom update installed! Ideas?1 point
-
Yes, but I don't notice any real world difference on either of my 8TB drives with Vista. It's fast regardless of the setting.1 point
-
Yes,. just delete that file and re-write again, when the power is back! Nothing to worry about.1 point
-
1 point
-
If you run a UPS, then no. And no worries for the already written files, even without it! The worst that might happen is a damaged file which was wrtitten when the outage happened, and only under some certain circumstances!1 point
-
Of course I noticed! Your HDD is just showing off its age, windows 7 [2008 R2] is known to be brutal on HDD. With anything after Vista, tear and wear happens much faster! Now we wait for SSD supporters to tell us how good windows 7 will perform with an SDD from the year 2023.1 point
-
thanks for it dan, was looking for same https://dltutuapp.com/tutuapp-download/ https://kodi.software/1 point
-
Why I switched from Avast! to WiseVector StopX There is a very specific reason why I have recently started recommending WiseVector StopX. Until now, I have always used products from Avast! and was also satisfied. On my old computer, which is low on resources and performance, I actually had Avast! Premier installed on my Windows XP partition and had been using it for many years. This year, unfortunately, I had several negative experiences. More and more often, the GUI shut down completely and showed only an empty, white window. Only a repair installation could revive it. In addition, programmes that were reported as false positives were not ignored as offered and excluded from further monitoring. Instead, their access was completely blocked and no longer released. Furthermore, again and again, almost periodically, the Avast! service caused a very high and prolonged CPU load. All these problems prompted me to uninstall the entire Avast program package. And then came the next set of difficulties. The uninstall routine is an imposition. An uninstallation had not really taken place. Whoever programmed this routine should be fired! All files and program folders were not deleted. Thus, completely useless! Even the special Avast uninstaller "Avast! Clear" could not remove everything. So I had to do it manually. The main program folder could not be deleted. Not even with administrator rights. Same with a booted Linux and Mini Windows XP from outside. Both could not delete anything from the locked files and folders. So I was thinking about a proper solution how to delete the locked folders and files. By the way, I am writing this to spare others similar problems. Anyway, the solution is either one tries to delete it under the user account System, whose rights can be obtained with suitable tools (for example RunAsSystem), or one falls back on good old DOS. And this is how I did it. I booted my computer into a real DOS mode and used Volkov Commander to delete all the locked files and folders. DOS doesn't give a damn about accounts and permissions. What needs to be deleted, gets deleted. DOS was my first OS on an IBM compatible PC, and it is an endless love. In any case, this approach was the right way to get rid of all remnants of Avast! Premier. BTW, before uninstalling, I measured the amount of disk space which was consumed by Avast!. And I was stunned. It was about 1.5 GB in many different folders. Unbelievable! After that torture, I installed WiseVector StopX at last. I configured it as well as possible and tested it deeply. WiseVector StopX is very light-weight and consumes approximately 100 MB of disk space in only one program folder. It has less RAM usage, very low CPU load and is easy to handle via its tray icon. On my old computer, it's simply perfect. The performance of my system has been increased, all actions are much faster than before. In short, I am impressed and very happy with my switch to this antivirus program. Cheers, AstroSkipper1 point
-
As far as I know, you need a license only for the premium features like real-time protection and so on. Without a licence, Malwarebytes should be able to be used as an offline scanner. Try it and you will see! I own a lifetime license, therefore I never used the free version.1 point
-
Thank you for the link! I had also read this forum post at the time, but sadly its solution was ineffective for me. At that time, I really tested everything! Malwarebytes' support was also involved. There was nothing I hadn't tried. And, I have read all the articles that have ever been published. Therefore, my hope is not very high that the problem can still be solved. But as my Latin teacher always liked to say: "Neues Stück, neues Glück". Translated: "New piece (of text), new luck".1 point
-
In the manual and on the QuickHeal homepage, it is claimed that the programs are compatible with Windows XP. Here is a quotation taken from the website of QuickHeal Total Security: Here is the link: https://www.quickheal.com/quick-heal-total-security/ Do they lie? I do not hope so.1 point
-
If you extract winUpRestore!v28.exe you see what it does. After performing you have to set up Trusted Zone once again. Only the three mentioned urls related to MU. The tool is the latest one. The web site of the author doesn't exist anymore. I think that too but I am not absolutely sure.1 point
-
Yes, I have all POSReady updates installed. My system had always been updated by Windows Update and if any necassary update wasn't offered I downloaded and installed it. I had some problems to get MU working again but now it is working flawlessly. No error codes. But for resetting Windows Update I used the tool winUpRestore!v28.1 point
-
@Dave-H Very disappointing! I'd almost have bet on it that this last solution would work for you. But alright. Either you've missed one or more steps which had to be performed or your system is more defective than I previously assumed. Anyway you said you couldn't click the button "Check updates". Maybe due to a misconfigured Internet Explorer. MU web site has been called up as a http web site. Check your settings in Internet Zone, set it to lowest security level and unselect SmartScreen Filter in Advanced tab. Check all other settings of your Internet Explorer. At this point I don't want to conceal what the most effective method is to get rid of error code 0x80072f8f. Most of affected users performed a complete reinstallation of Windows XP and they reported it would have worked. A lot of them were assisted by remote connection to Microsoft and their experts couldn't find the cause of the problem. And what did they do? Of course a complete reinstallation of Windows XP. So what does it tell us? Microsoft itself is the causer of error code 0x80072f8f. What would I do if I were you? At first I'd create an image of my system partition, replace CMOS battery, set up BIOS settings including date and time, clean my registry to get rid of all waste due to incomplete uninstallations and so on, clean complete system and all caches, reset Internet Explorer and Windows Update, perform all steps once again (and when I say all I mean all, regardless of steps or installations I did before) and execute all solutions I've posted here if necessary. If that didn't work I'd reinstall Windows XP or better I'd restore an image which was the last working one. I do have such images. If my system fails seriously I'll restore my system partition in less than 30 minutes and my computer is a very, very old one. Cheers!1 point
-
@Dave-H Have you already tried this new solution?1 point