Leaderboard
Popular Content
Showing content with the highest reputation on 12/16/2022 in Posts
-
In relation to the post made by @dmiranda on page 11 on AF's 360EE version shared (I am lazy to link the exact comment), I've made a little BAT file to execute the browser (it has to be on the same folder as the "360chrome.exe" file to work). Due to all the files this browser makes I thought it would be a good idea to write this kind of script to remove files after browser execution (it also removes 2 registry entries that the browser creates when executed, they can be seen at the end of the code). I tested it a little so I don't know if any files I set to be deleted are actually important. Some of you might already know which files are preferrable to be deleted so if you want to share which can be, then, that would be great (as well as registry entries created by the browser). I set it up so in case you run the browser with a custom profile folder you just change the "profile" variable to whatever that profile is. To avoid the CMD window poping on screen everytime you run it you can follow these steps (post #5) (the CMD window will still exist but minimized by default) Cheers. @echo off :: ======================================= :: run "360chrome.exe" file with arguments :: ======================================= 360chrome.exe --disable-component-update :: ======================================================= :: files and folders to be deleted after browser execution :: ======================================================= cd ".\User Data" :: folders rmdir "ShaderCache" /S /Q rmdir "Webstore Downloads" /S /Q rmdir "temp" /S /Q rmdir "PnaclTranslationCache" /S /Q :: files del *.log del mconfig :: Set "profile" folder set profile=Default :: Inside "profile" folder profile del "%profile%\*.tmp" del "%profile%\*.ldb" del "%profile%\*.log" del "%profile%\360Bookmarks" del "%profile%\Google Profile.ico" del "%profile%\heavy_ad_intervention_opt_out.db" del "%profile%\*-journal" del "%profile%\LOCK" del "%profile%\LOG*" del "%profile%\MANIFEST*" del "%profile%\README" del "%profile%\Secure Preferences" del "%profile%\Shortcuts" del "%profile%\Sync360_V8.sqlite3" del "%profile%\TransportSecurity" del "%profile%\Visited Links" del "%profile%\Web Data" del "%profile%\CURRENT" del "%profile%\Network Action Predictor" del "%profile%\Network Persistent State" del "%profile%\QuotaManager" del "%profile%\Top Sites" del "%profile%\previews_opt_out.db" del "%profile%\History Provider Cache" rmdir "%profile%\AutofillStrikeDatabase" /S /Q rmdir "%profile%\blob_storage" /S /Q rmdir "%profile%\DailyBackup" /S /Q rmdir "%profile%\data_reduction_proxy_leveldb" /S /Q rmdir "%profile%\databases" /S /Q rmdir "%profile%\Extension Rules" /S /Q rmdir "%profile%\Extension State" /S /Q rmdir "%profile%\Feature Engagement Tracker" /S /Q rmdir "%profile%\File System" /S /Q rmdir "%profile%\GPUCache" /S /Q rmdir "%profile%\IndexedDB" /S /Q rmdir "%profile%\Platform Notifications" /S /Q rmdir "%profile%\Service Worker" /S /Q rmdir "%profile%\shared_proto_db" /S /Q rmdir "%profile%\Site Characteristics Database" /S /Q rmdir "%profile%\VideoDecodeStats" /S /Q rmdir "%profile%\Extensions\Temp" /S /Q rmdir "%profile%\Session Storage" /S /Q rmdir "%profile%\Download Service" /S /Q rmdir "%profile%\Thumbnails" /S /Q :: ====================================================== :: Registry entries to be deleted after browser execution :: ====================================================== reg delete "HKEY_CURRENT_USER\Software\360" /f reg delete "HKEY_CURRENT_USER\Software\360Chrome" /f3 points
-
Hi... I want to sleep, the night starts here... we hope to see each other tomorrow, bye! Before all, greetings for our freshly recovered @XPerceniol, for you @xpw10, Merry Christmas!...2 points
-
To you too legacyfan, and to ALL our friends here! A Merry Christmas! We Wish You a Merry Christmas with Lyrics2 points
-
A gift for everyone from the heart - you are like extended family :~))))2 points
-
We now have a very special section for super funny jokes like this one. https://msfn.org/board/topic/184217-welcome-to-joke-central-the-lol-corner-of-the-forum/2 points
-
I run only on-demands anti-virus (Malwarebytes and Quick Heal)2 points
-
...and check Detox topic maybe? Mina, legacyfan and others too, to make your inputs? "Thank you so much for all your support."..2 points
-
Regarding "dark mode" - there has been progress made towards releasing a "dark version". BUT there is no solution as of yet for what is referred to as "FOUC" and the default white "about:blank" page that displays for a split second before the dark mode .css is applied. Regarding imdb - please detail what is not working on imdb as I just visited several imdb pages and everything seems to be working. Is it WebRTC? DRM? WebGL? JS WASM? 3 of 4 are disabled intentionally, I've never looked into DRM. But yes, it is true, this is based on a 2020 rendering engine and there will be 2022 "bleeding edge of technology" javascript functions that will not work on a 2020 rendering engine. All of us on XP must decide for ourselves if the 2022 javascript functions on the "bleeding edge of technology" are really important enough to warrant migrating from XP.2 points
-
The error code that produces the message associated with the logon procedure failure can come from a wide variety of functions; when I was using a Kaby Lake laptop I tried to debug it. But debuggers would fail to run! So I would have to return to the laptop, change every reference to the error code in ntdll/kernel32 (and a few other lower level DLLs) so each one returns a unique error code (so one function would return a message associated with error code 85, the next would return one associated with 86) to identify what exactly is failing in there. Unfortunately the build quality of the laptop is very poor so it cannot be moved easily, as it can't be closed without risking the screen snapping off (and thus it's not where I actually live). You can't dictate what any user can or cannot do. The latter two are focused on Windows XP anyway and there is no telling how successful the HAL wrapper will be. But if it is, it will give me more flexibility in modernizing parts of the kernel.2 points
-
2 points
-
Not gonna solve any issues (probably), but this fresh upload has some interestng tips and trivia for YT - https://www.youtube.com/watch?v=WKOkCpMZ3Z02 points
-
This project make possible to compile ACPI 2.0 driver from leaked XP SP1 & W2003 RTM sources, has same functionality as existing acpi.sys v6666 (still missed integer/fields/memory 64 bit support/) Grab leaked XP SP1/W2003 RTM sources (google it) Use "XPSP1/NT" directory as basedir if you want to compile acpi.sys for Windows XP x32 Use "Win2K3/NT" directory as basedir for Windows 2003 x32 / Windows 2003 x64 / Windows XP x64 Download any GNU patch package for windows (gnuwin32.sourceforge.net, cygwin, mingw, msys2, ...) Open command console, change current dir to base\busdrv\acpi\ (Windows XP x32) Save text diff patch https://pastebin.com/C5NXwHbS (v7 update) to file base\busdrv\acpi\sp1_to_sp3(ACP2).patch (Windows 2003 x32 / Windows 2003 x64 / Windows XP x64) Save text diff patch https://pastebin.com/8QURrM49 (v7 update) to file base\busdrv\acpi\rtm_to_sp2(ACP2).patch (Windows 2003 x32 / Windows 2003 x64 / Windows XP x64) Rename Win2K3/NT/public to Win2K3/NT/public2 (Windows 2003 x32 / Windows 2003 x64 / Windows XP x64) Update compiler and headers to mix of W2003 DDK+WRK, unpack https://anonfiles.com/J1W9H1a8y1/W2003_tools_update_7z to basedir with overriding existing files Remove "read only" flag from base\busdrv\acpi directory including sub-dirs and files Apply patch to convert original SP1/RTM sources to SP3/SP2 with extended ACPi 2.0 syntax: patching file driver/amlinew/amlipriv.h patching file driver/amlinew/amlitest.c patching file driver/amlinew/data.c patching file driver/amlinew/misc.c patching file driver/amlinew/object.c patching file driver/amlinew/parser.c patching file driver/amlinew/proto.h patching file driver/amlinew/type1op.c patching file driver/amlinew/type2op.c patching file driver/inc/aml.h patching file driver/nt/debug.c patching file driver/nt/debug.h patching file driver/nt/devpower.c patching file driver/nt/internal.c patching file driver/nt/interupt.c patching file driver/nt/irqarb.c patching file driver/nt/osnotify.c patching file driver/nt/pciopregion.c patching file driver/nt/rangesup.c patching file driver/nt/root.c patching file driver/nt/wake.c Change current dir to basedir (Windows XP x32 / Windows 2003 x32) Run razzle environment setup: (Windows 2003 x64 / Windows XP x64) Run razzle environment setup Change current dir to base\busdrv\acpi\driver\ Complie ACPI driver: build /Dcegbw Compiled acpi.sys.sys will be in (x32) base\busdrv\acpi\driver\nt\obj\i386\ or (x64) base\busdrv\acpi\driver\nt\obj\amd64\ Project contains implementation of new ACPi 2.0 syntax: ToInteger ToString ToHexString Continue ConcatenateResTemplate ToDecimalString Mod ToBuffer CopyObject MidString QwordConst (inside ParseIntObj) Timer CreateQWordField(fake it as CreateDWordField) Know issues workarounds: BSOD 0xA5 (0x10006, ...) missing _DIS method for "PNP0C0F" (PCI Interrupt Link Devices) BSOD 0xA5 (0x02,xxx, 0x0, ...) ACPI vs E820 mem ranges conflict IOTRAPS I/O range 0xFF00-0xFFFF vs VGA (10-bit decode!) conflict BSOD 0xA5(0x03, ..., C0140008, ...) error in ValidateArgTypes() when reading 64-bit fields BSOD 0x7E(c0000005, ...) error in AcpiArbCrackPRT() when referencing null pointer BSOD 0xA5 (0x11, 0x08, ..., ...) error in _AMLILoadDDB() (zero lenght buffer) BSOD 0xA5 (0x11, 0x08, ..., ...) error in _AMLILoadDDB() (doubled device definition) BSOD 0xA5 (0x0000000D, ..., 0x4449555F, 0) absence _UID method BSOD 0xA5 (0x11, 0x08, ..., ...) error in _AMLILoadDDB() (Connection() opcode) CPU definition as Device with _HID=ACPI0007 BSOD 0xA5(0x03, ..., C0000034, ...) postponed SSDT loading on x64 platform (v8 update) Assertion Fail on loaddsdt.c, line 488 for x64 builds (v8 update) Unresolved issues: BSOD 0xA5 (0x0000000D, ..., ..., ...) duplicated/absence _HID/_UID method (AMD boards) BSOD 0xA5 (0x2001, 0x01, 0xC0000034, ...) failure to evaluate the _PIC method in NotifyHalWithMachineStates() Conflicted device names in Windows device manager (Code 42)1 point
-
Moi feeling a bit peckish ... I love JimKwik's egg analogy: "Your life is like an egg. If it's broken by an outside force, life ends. BUT if it's broken by an inside force ... life begins. Great things begin on the inside." I like eggs.1 point
-
[ Ooops ... I got caught stalking everybody on Sunday ] Hello stranger Xperceniol! I thought you had abandoned us for good. I then saw you and msfntor at the other forum. I was wondering what you were up to. I came back here because the other day someone else was having a similar issue I had on a Dell Latitude (which has been driving me insane). I can install any OS except the two I want (XP and Windows10). Just now, I have installed Windows 8.10 on it instead. Life is tough. Oh well we can't always have what we want. Merry Christmas!1 point
-
Something to do with handling of local / session storage (https://app.bountysource.com/issues/94137785-discussion-dom-storage-next_gen).1 point
-
You of all folks should know I don't use any of these. It was only the partially working dark theme I was answering about.1 point
-
AFAIK the Surface Go is a Class-3 UEFI: https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-8.1-and-8/hh824898(v=win.10)?redirectedfrom=MSDN And - still AFAIK - UefiSeven or similar is needed on such hardware: https://www.sevenforums.com/installation-setup/426914-installing-win-7-pro-sp1-uefi-class-3-gen-10-laptop.html https://github.com/manatails/uefiseven I consider that "a trick". jaclaz1 point
-
1 point
-
Eternal cookie for you. Banner cookie here: https://twitter.com/Eternal_Cookie LOL just kidding!1 point
-
Typos are normal at your age. All is normal at your age, I've been there. You will live for a long time, @XPerceniol my friend.1 point
-
Drivers may be a problem, however it being UEFI isn't. Win7 will work fine on UEFI without any tricks. Unless you count imaging the disk as a trick. I haven't used Setup to install Win7 in years now I think.1 point
-
Hi, If I have not misinterpreted what is reported in the debug log, it seems that in acpiV6 (SHA-1. 4D8A256457B6D3F5E2FB3E6574DA5A1446BF68F5) the AMLILoadDDB patch is missing:1 point
-
1 point
-
Hotkeys for Quicksettings(actioncenter) and Notifications not working for me since Windows updated to 22623.1028. Now with 22623.1037 the same. When i disable Startallback, the hotkeys are functionally again. The other hotkeys (Win+E, Win+Alt+ESC, Win+W etc.) all work as usual, with startallback activated. Hope this will be fixed soon. greetings sananda edit: with new Version, Hotkeys working again greetings1 point
-
1 point
-
1 point
-
You want the "regular" version and not the "ungoogled" version. Third link in Post #1 -- https://msfn.org/board/topic/184135-arcticfoxienotheretoplaygames-360chrome-v135-build-2022/1 point
-
1 point
-
For the dark page rendering use these flags : --enable-features=WebContentsForceDark --force-dark-mode The last one is for the UI in "normal" chrome. But it will not help with the most modern websites, for example imdb. Why ? because the engine of this browser is outdated, yeah , sorry to say it. But if use thee same flags with, say chrome 102 - it will render them dark. About the UI of this chinese one, its' for the author to answer.1 point
-
I intend to try this browser next to Newmoon28, to see if it manages some sites where Newmoon fails. But as usual the bright white chrome interface is not making it very pleasant for my eyes. Are there any working extensions to darken/recolor the UI and/or the page rendering? Of course there is Dark Reader on the web store, but I see no "Add to chrome" option, so I guess the chrome version is too outdated to install such the normal way.1 point
-
1 point
-
And I have a feeling when someone simply doesn't know what to answer, they just switching the subject. I'm not sure why you felt like a dead horse , lol. Anyways, I'm sorry you felt like a dead horse . And your poor head, geez.1 point
-
1 point
-
Oh gosh, I'm no hero, but just me as is, no promises other than I'm real. Thank you I missed you guys.1 point
-
1 point
-
1 point
-
Agreed. Internal connections do not concern me. Mozilla does them. Chromium does them. I don't know how to "thwart" the exaggerations often posted regarding 360Chrome without some sort of "redirection" for a more "fair" comparison/analysis. We are not all going to agree and we are all going to have a little bit of bias towards what "works for us" on our own computers. I just seek a more "level playing field" then what has happened in this thread of late. And, admittedly, I don't know HOW to get that "level playing field". I felt like a "dead horse" being beaten over the head with a baseball bat the way this thread derailed so abruptly. My head is still spinning! I kind of have to narrow it down to this - I can pay my water bill and transfer between cheking and savings on my XP computers with and only with 360Chrome v13/v13.5 (for how much longer is anybody's guess). Other users migrate to this thread for very similar reasons and this project has a "need". It is not going to be for everyone. Having "options" is supposed to be a good thing.1 point
-
1 point
-
OK. funny to you, but not funny to me, OK. Yet I like to laugh, I look for opportunities to laugh, life is sad without laughter...1 point
-
360EE 11.0 has the same problem,may be the Chromium kernerl version was too old1 point
-
1 point
-
1 point
-
Apologies, it's VP9 in the browser. I guess the app defaulted to h.264 and I thought I was checking in the browser, which was a while back. It's possible that user agent doesn't determine anything except default setting whether to pick mobile/desktop site. Search for any Android user agent, eg. https://www.whatismybrowser.com/guides/the-latest-user-agent/android.1 point
-
Indeed, light GUI doesn't help if videos don't play smoothly. I'm a minority with my 8 years old smartphone, but in my case it's h.264. I think most mobile users access it via dedicated app, though it probably doesn't make a difference by default, compared to the mobile website. From a bit of searching, selected codec is device dependent. It wouldn't surprise me if AV1 is picking on steam (wasn't sure how to put it, hopefully it's understandable) on smartphones since saving bandwidth is one of the key characteristics and you usually don't have unlimited data through mobile carrier. Also considering the short time most people keep their smartphone for. https://bitmovin.com/av1-playback-support/ The thing with browsers forked from older Firefox, at least Pale Moon or more accurately UXP platform, AV1 support is disabled by default, but even if you enable it, it won't work on YouTube, though it may work on other sites (I only remember encountering test site to test AV1 support). I believe not working on YouTube is the result of the browser not doing something that mainstream browsers do and I seem to remember reading Pale Moon folks disabled it due to other more problematic issues related to it (would have to dig out that thread on their forum to know the specifics). Same, but it's also important to look at the platform (UXP), upon which application (Pale Moon) is built, The whole thing was forked off Firefox version that is indeed old, but there was some work put into it so the resulting browser is not old, looking at the age at least and it does things these days old Firefox didn't. It's just not enough for a number of messy websites. If you want an extreme example...Links...not old, but good luck using it in practice. Best case you get a readable site with images and messed up layout. Bonus points if you can do some interaction. I've read you can actually post on this forum with it.1 point
-
Sounds wonderful ! Delicious food ... fresh air ... this is the life.1 point