Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

EdSon

Member
  • Joined

  • Last visited

  • Country

    Peru

Everything posted by EdSon

  1. For UpGrade (On Live Windows) copy & replace appraiserres.dll from Windows 10 to Windows 11 sources folder For Boot Install edit Windows Registry, for example (Shift + F10 and execute cmd commands): Reg Add HKLM\SYSTEM\Setup\LabConfig /V ByPassTPMCheck /T REG_DWORD /D 1 Reg Add HKLM\SYSTEM\Setup\LabConfig /V ByPassSecureBootCheck /T REG_DWORD /D 1 OR use Regedit GUI (view Source) Source: https://allthings.how/how-to-install-windows-11-on-legacy-bios-without-secure-boot-or-tpm-2-0/
  2. Highly dependent on hardware compatibility. For example my Lenovo Y50-70 is not 100% compatible with Lastest Version of Win10 (bugs with audio control, reorder desktop icons, etc.). Win10 1607 (Aniversary) yes is compatible and I do not have those problems I prefer Win8.0 but now I am testing Win10 LTSB 2016 (I managed to install the modern calculator XD). Soon I will test the Win10 LTSB 2015 ... --- Reorder desktop icons bug with Win10 versions greater than 1607:
  3. I prefer to use a windows shared folder in PC and one file manager for my phone (android): https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer Or copy on USB the files and connect to phone by OTG micro usb to USB adapter
  4. --disable-infobars --user-agent="Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.81 Safari/537.36" Blank: Need Update view: Resize client area, for example with Zoom or Open Developer Tools F12 Left panel :-/ --disable-infobars --user-agent="Mozilla/5.0 (Windows NT 5.1; rv:51.0) Gecko/20100101 Firefox/51.0" Good :-) BUT, New Tab :-/, not show bottom direct access and the search input only accepts URL T_T:
  5. Ups, a } is missing XD. Corrected, view working: https://jsbin.com/johefiqapi/edit?html,output
  6. 'this' from .onclick is lost in the setTimeout function, setTimeout has own 'this', use a variable: // Set onclick event to msgs elements for ( let i = 0; i < msgs.length; i++ ) { msgs[i].onclick = function() { let m = this; setTimeout(function(){ m.style.display = 'none'; clks++; createCookie('clicks', clks, 1); }, 3000); } }
  7. dllcache directory is like a windows original backup system files. SFC /ScanNow command check actual Windows system files using dllcache original files and restore if is necesary. The WinLogon.exe:sfc_os.dll System process continous checking changes on Windows System Files (Windows File Protection), this detect/not-found C:\Windows\System32\atmfd.dll file and check backup C:\Windows\System32\DllCache\atmfd.dll for integrity and restore the atmfd.dll file Delete x-atmfd.dll: del C:\Windows\System32\x-atmfd.dll Change directory and rename atmfd.dll and dllcache\atmfd.dll: cd %windir%\system32 ren atmfd.dll x-atmfd.dll & ren dllcache\atmfd.dll x-atmfd.dll Windows File Protection: https://support.microsoft.com/en-us/help/222193/description-of-the-windows-file-protection-feature
  8. First clarify that JavaScript on the client side is completely manipulable by that client Check: <style> .msg { border: solid; background: yellow; padding: 1em; } </style> <div class="msg">Hello</div> <div class="msg">vicious</div> <div class="msg">world!</div> <script> var msgs = document.getElementsByClassName('msg'); var cookie = document.cookie; var clks = 0; var rx = new RegExp('(clicks=)(\\d)+'); // Check if exists cookie and get clicks count if ( cookie.match(rx) ) { clks = cookie.match(rx)[2]; } else { createCookie('clicks', 0, 1); } // If click counts >= 3 hide msgs elements if ( clks >= 3 ) { for ( let i = 0; i < msgs.length; i++ ) { msgs[i].style.display = 'none'; } } // Set onclick event to msgs elements for ( let i = 0; i < msgs.length; i++ ) { msgs[i].onclick = function() { this.style.display = 'none'; clks++; createCookie('clicks', clks, 1); } } function createCookie(name, value, days) { let cookie = name + '=' + value; if (days) { // max-age is more simple, set time-life in seconds cookie += ';max-age=' + days * 24 * 60 * 60; } document.cookie = cookie; } </script> Using cookie name: clicks with value: count of clicks Using Regular Expresion (RegExp) for matching and extract cookie value Using getElementsByClassName array-like for hide and set click event using keyword: this Using max-age for cookie, it is simpler than calculating expiration datetimes On live: https://jsbin.com/zavogaqexu/edit?html,output
  9. On WinXP is more simply: CD %WinDir%\System32 Ren atmfd.dll x-atmfd.dll BUT, atmfd.dll auto-restore C:\WINDOWS\system32>dir *atmfd.dll 14/04/2008 07:00 285.696 atmfd.dll 1 archivos 285.696 bytes 0 dirs 7.849.308.160 bytes libres C:\WINDOWS\system32>ren atmfd.dll x-atmfd.dll C:\WINDOWS\system32>dir *atmfd.dll 14/04/2008 07:00 285.696 atmfd.dll 14/04/2008 07:00 285.696 x-atmfd.dll 2 archivos 571.392 bytes 0 dirs 7.849.308.160 bytes libres This working in Windows XP, but display Alert Dialog cd %windir%\system32 ren atmfd.dll x-atmfd.dll & ren dllcache\atmfd.dll x-atmfd.dll
  10. Check: document.addEventListener('DOMContentLoaded', function() { // If the 'hide cookie is not set we show the message if (!readCookie('hide')) { document.getElementById('popupDiv').style.display = 'block'; } // Add the event that closes the popup and sets the cookie that tells us to // not show it again until one day has passed. document.getElementById('close').addEventListener('click', function() { document.getElementById('popupDiv').style.display = 'none'; createCookie('hide', true, 1) return false; }); }); // --- // And some generic cookie logic // --- function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } function eraseCookie(name) { createCookie(name,"",-1); } Where: $(document).ready(function() { -or- $(function() { -by- document.addEventListener('DOMContentLoaded', function() { -or- window.addEventListener('load', function() { -or- window.onload = function() { $('#popupDiv').show(); -by- document.getElementById('popupDiv').style.display = 'block'; -or- document.querySelector('#popupDiv').style.display = 'block'; $('#close').click(function() { -by- document.getElementById('close').addEventListener('click', function() { -or- document.getElementById('close').onclick = function() {
  11. Jou! LOL I see, I had not seen this application. I'm analyzing it, I just found out XD ---- mmm... It is use HTTPDL (https://github.com/golang/build/tree/master/internal/httpdl), very interestint XD. There will be if I can introduce my dwn.vbs to make it more independent
  12. Why Mega and not Mediafire? Mediafire not limited and persists decades . Mega Bandwidth Limit Exceeded I have made a batch script for update my Windows 8 Certificates donwloading rootsupd.zip from Kaspersky: BUT in Clean Windows XP do not using https autentification to Kaspersky T_T. TLS1.1, TLS1.2 problems?. Anyway the following bacth script works perfectly on a clean windows xp, downloading rootsupd.exe from web.archive.org: @Echo Off Title Roots and Revoked Certificates Updater (Batch Edition) Echo =========================================================================== For /F "tokens=1,2,3 delims=.-/ " %%a In ('Date /T') Do Set "wd=%~dp0CertUpd_%%a-%%b-%%c" Echo Creating Working directory ^(%wd%^) ... MD "%wd%" & CD /D %wd% Echo: Echo Creating VBScript downloader ... Echo: ( Echo Set xhttp = CreateObject^("MSXML2.ServerXMLHTTP"^) Echo Set strm = CreateObject^("ADODB.Stream"^) Echo xhttp.SetOption^(2^) = 13056 Echo xhttp.open "GET", WScript.Arguments^(0^), False Echo xhttp.send Echo strm.Type = 1 Echo strm.Open Echo strm.Write xhttp.ResponseBody Echo strm.SaveToFile WScript.Arguments^(1^), 2 Echo strm.Close Echo Set xhttp = Nothing : Set strm = Nothing ) > dwn.vbs Echo: Echo Downloading rootsupd.exe ... Set "url=https://web.archive.org/web/20170829230259/http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/rootsupd.exe" CScript.exe /NoLogo dwn.vbs %url% rootsupd.exe Echo: Echo Extract rootsupd.exe ... "%wd%\rootsupd.exe" /Q /C /T:"%wd%" Echo: Echo Downloading .sst files Set "url=http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/" Set "files=authroots.sst updroots.sst roots.sst delroots.sst" For %%a In (%files%) Do CScript.exe /NoLogo dwn.vbs %url%%%a %%a Echo: Echo Installing Certificates updroots.exe authroots.sst updroots.exe updroots.sst updroots.exe -l roots.sst updroots.exe -d delroots.sst Echo: Echo Finish :-) Pause
  13. Process Explorer add Image Hijacks on Regedit: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe] "Debugger"="\"C:\\Tools\\PROCEXP.EXE\"" On Windows 98 no idea XD.
  14. - Download Office Deployment Tool: https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_12325-20288.exe - Create one folder for working, for example: "C:\myoffice\" - Launch officedeploymenttool_12325-20288.exe and set extract folder on "C:\myoffice\" - Open notepad copy/write this lines and save as "C:\myoffice\myconfig.xml" (for 64-bit in en-US language): <Configuration> <Add OfficeClientEdition="64" Channel="PerpetualVL2019"> <Language ID="en-US" /> </Add> </Configuration> - Open Command Prompt (cmd) or PowerShell and execute (this download Office 2019 complete package + Language en-US (~1.83 GB) on "C:\myoffice\Office\"): CD /C "C:\myoffice" Setup.exe /Download myconfig.xml - Go to folder "C:\myoffice\Office\Data\16.0.10357.20081" (your version may vary, take note) and extract i640.cab (i360.cab for 32-bit) file on: "C:\Program Files\Common Files\Microsoft Shared\ClickToRun\" (Create subfolder if not exist) - On Command Prompt or PowerShell execute (copy and paste) -- This install Microsoft Office Access, Excel, PowerPoint and Word only -view excludedapps-) -- CHECK your Microsoft Office download in line: version.16=16.0.10357.20081 ^ correct if necessary. "%CommonProgramFiles%\microsoft shared\ClickToRun\OfficeClickToRun.exe" ^ deliverymechanism=f2e724c1-748f-4b47-8fb8-8e0d210e9208 ^ platform=x64 ^ culture=en-US ^ b= ^ displaylevel=True ^ forceappshutdown=True ^ piniconstotaskbar=False ^ acceptalleulas.16=True ^ updatesenabled.16=True ^ updatepromptuser=True ^ updatebaseurl.16=http://officecdn.microsoft.com/pr/f2e724c1-748f-4b47-8fb8-8e0d210e9208 ^ cdnbaseurl.16=http://officecdn.microsoft.com/pr/f2e724c1-748f-4b47-8fb8-8e0d210e9208 ^ mediatype.16=Local ^ sourcetype.16=Local ^ version.16=16.0.10357.20081 ^ baseurl.16="C:\myoffice\Office" ^ productstoadd="ProPlus2019Volume.16_en-US_x-none" ^ ProPlus2019Volume.excludedapps.16=groove,lync,onedrive,onenote,outlook,publisher,teams ^ flt.useexptransportinplacepl=disabled ^ flt.useofficehelperaddon=disabled ^ flt.useoutlookshareaddon=disabled ^ flt.usebingaddononinstall=disabled ^ flt.usebingaddononupdate=disabled
  15. mmm... Is driverpacks.net == drp.su ? I am trying install drivers for Windows XP with drp.su AIO Offline package and it doesn't end XD. It is very heavy. In driverpacks.net there are packages separated by operating systems, I will try XD. At the moment to look for drivers in the .inf files I am using (not results in my current packages drivers): FindStr /S /I /C:"DEV_9839" *.inf There must be ways to force the installation of drivers by modifying the .inf file ... Maybe from Win Up or Win Down Drivers OS versions. I understand that to disable the automatic installation of drivers you have to: - Disable Plug and Play Service or - Delete DevicePath data on Regedit (query my default data value and delete): C:\>Reg Query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion" /V "DevicePath" ! REG.EXE VERSION 3.0 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion DevicePath REG_EXPAND_SZ %SystemRoot%\inf C:\>Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion" /V "DevicePath" /T "REG_EXPAND_SZ" /D "" /F The operation completed successfully C:\> -- Restart PC
  16. At the moment (2020-03-26) all seems to be going well in Chrome, Mypal and Firefox on YouTube (Subscriptions) Google Chrome 49.0.2623 (141.61 MB Ram) => Mypal Browser 28.8.4 (248 MB Ram) => Mozilla Firefox 52.9.0esr (282 MB Ram) => Chrome consumes less ram than any other XD. Other test: =>
  17. Maybe: https://drp.su/en/laptops/asus/x102ba/chipset?os=windows-xp-x86 (AMD Processor) - The most correct is: Device manager > [select your device] > Properties > Details > Hardware ID > [copy first line] I.E.: PCI\VEN_8086&DEV_0416&SUBSYS_397817AA&REV_06 - Search PCI\VEN_8086&DEV_0416&SUBSYS_397817AA&REV_06 on Google or a drivers site as https://drp.su/en/catalog
  18. TeamViewer is a great software, is very good stable I don't see why replace it except for the contacts list. Other options: - AnyDesk: https://anydesk.com/ - Supremo: https://www.supremocontrol.com/ - Workaround to the contact list on TeamViewer is Shortcut with parameters o batch file with command line options: TeamViewer.exe --id 1234567890 --password MiPassword Reference: https://community.teamviewer.com/t5/Knowledge-Base/Command-line-parameters/ta-p/34447
  19. After (CALL :shortname "%%a") the next line to run is :shortname ..., this set shortanme variable to ~0,-48. Use to GoTo label for jump: @Echo Off For %%a In ("*SHA-1*.jpg" "*SHA-1*.gif") Do Call :shortname "%%a" Goto :continue :shortname Set shortname=%~n1 Set shortname=%shortname:~0,-48% Set shortname=%shortname%%~x1% Echo %shortname% Goto :EOF :continue Pause Goto :EOF
  20. First search for the text "SHA-1"; in the file name and separate @Echo Off :: Create empty files to contain file names parsed yes / no shafiles Echo. 2>yshafiles.txt Echo. 2>nshafiles.txt :: For all jpg and gif files in actual folder For %%a In (*.jpg *.gif) Do ( :: Search "SHA-1;" in file name and save Echo %%a | Find "SHA-1" && Echo %%a >> yshafiles.txt || Echo %%a >> nshafiles.txt ) After use @jaclaz implementation
  21. Nop, the color feature is posible on all Windows (incl. XP) using FindStr: @Echo Off Set "on=[YES]" Set "off=[NO] " Set opt1=%off% Set opt2=%off% Set opt3=%off% :menu Cls <NUL Set/P=A. & ( If %opt1%==%on% (Call :echolor %opt1% 0a) Else (<NUL Set/P=%opt1%) ) & Echo Option_1 <NUL Set/P=B. & ( If %opt2%==%on% (Call :echolor %opt2% 0a) Else (<NUL Set/P=%opt2%) ) & Echo Option_2 <NUL Set/P=C. & ( If %opt3%==%on% (Call :echolor %opt3% 0a) Else (<NUL Set/P=%opt3%) ) & Echo Option_3 Echo D. GO Choice.exe /C ABCD /N /M "Toggle your option: " If ERRORLEVEL 4 GoTo :continue If ERRORLEVEL 3 (If %opt3%==%on% (Set opt3=%off%) Else (Set opt3=%on%)) & GoTo :menu If ERRORLEVEL 2 (If %opt2%==%on% (Set opt2=%off%) Else (Set opt2=%on%)) & GoTo :menu If ERRORLEVEL 1 (If %opt1%==%on% (Set opt1=%off%) Else (Set opt1=%on%)) & GoTo :menu :continue Pause Goto :EOF :echolor (text, color) MD "%tmp%\_%1" >NUL Pushd "%tmp%\_%1" For /F %%a In ('Echo PROMPT $H ^| Cmd.exe') do Set "bs=%%a" <nul Set /P="_" >"%1" FindStr.exe /S /B /P /A:%2 /C:"_" "%1" <nul Set /P=%bs%%bs% Popd RD /S /Q "%tmp%\_%1" Goto :EOF - Make a temp directory for reduce FindStr recursive finder to minimum - Pushd and Popd for save, change and recovery the current directory - For Echo PROMPT $H, for obtain BackSpace character - FindStr colorize the folder containing the searched string followed by a colon and the string - Use BackSpace variable for delete colon and string - Use <NUL Set/P="hello" for Echo without newline endening - Windows XP not include Choise.exe command T_T. BUT you can use Set /P asking to press Enter Key modifying the menu like this: :menu Cls <NUL Set/P=A. & ( If %opt1%==%on% (Call :echolor %opt1% 0a) Else (<NUL Set/P=%opt1%) ) & Echo Option_1 <NUL Set/P=B. & ( If %opt2%==%on% (Call :echolor %opt2% 0a) Else (<NUL Set/P=%opt2%) ) & Echo Option_2 <NUL Set/P=C. & ( If %opt3%==%on% (Call :echolor %opt3% 0a) Else (<NUL Set/P=%opt3%) ) & Echo Option_3 Echo D. GO Set /P op="Toggle your option AND PRESS ENTER: " If /I "%op%"=="D" GoTo :continue If /I "%op%"=="C" (If %opt3%==%on% (Set opt3=%off%) Else (Set opt3=%on%)) & GoTo :menu If /I "%op%"=="B" (If %opt2%==%on% (Set opt2=%off%) Else (Set opt2=%on%)) & GoTo :menu If /I "%op%"=="A" (If %opt1%==%on% (Set opt1=%off%) Else (Set opt1=%on%)) & GoTo :menu GoTo :menu Result: - Another option for colorize is using Call to PowerShell: https://stackoverflow.com/questions/2048509/how-to-echo-with-different-colors-in-the-windows-command-line
  22. Exactly, use redraw menu. Choice is a too a good option: @Echo Off Set on=[YES] Set off=[NO] Set opt1=%off% Set opt2=%off% Set opt3=%off% :menu Cls Echo 1. %opt1% Option_1 Echo 2. %opt2% Option_2 Echo 3. %opt3% Option_3 Echo 4. GO Choice /C 1234 /N /M "Toggle your option: " If ERRORLEVEL 4 GoTo :continue If ERRORLEVEL 3 (If %opt3%==%on% (Set opt3=%off%) Else (Set opt3=%on%)) & GoTo :menu If ERRORLEVEL 2 (If %opt2%==%on% (Set opt2=%off%) Else (Set opt2=%on%)) & GoTo :menu If ERRORLEVEL 1 (If %opt1%==%on% (Set opt1=%off%) Else (Set opt1=%on%)) & GoTo :menu :continue Pause
  23. Regards, - Is possible install .NET Framework 8 in Windows 8 ?, because I have tried to install version 7.2 and 8 and I was unable to T_T - The latest version it supports and functionally is .NET Framework 6.2 - In Windows Server 2012 the .NET Framework 8 is installed normally: Windows Server 2012: %WinDir%\System32\catroot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE} Package_1_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_2_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_3_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_4_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_9_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_10_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_11_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_12_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_13_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_14_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_23_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_for_KB4486081_RTM~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_1_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_2_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_for_KB4019990_RTM~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat Windows 8: %WinDir%\System32\catroot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE} Package_1_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_2_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_3_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_4_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_9_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_10_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_11_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_12_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_13_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_for_KB4486081_RTM~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989.cat Package_1_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_2_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_for_KB4019990_RTM~31bf3856ad364e35~amd64~~6.2.1.1.cat Package_for_KB4019990~31bf3856ad364e35~amd64~~6.2.1.1.cat - I try install updates from: dism.exe /online /add-package /packagepath:"x64-Windows8-RT-KB4486081-x64.cab" dism.exe /online /add-package /packagepath:"Windows8-RT-KB4019990-x64.cab" - Logs on %windir%\logs\cbs\cbs.log show: ... CBS Appl: detect Parent, Package: Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989, Parent: Microsoft-Windows-NetFx4-OC-Package~31bf3856ad364e35~amd64~~6.2.9200.16384, Disposition = Detect, VersionComp: EQ, ServiceComp: EQ, BuildComp: EQ, DistributionComp: GE, RevisionComp: GE, Exist: present CBS Appl: detectParent: package: Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989, no parent found, go absent CBS Appl: detect Parent, Package: Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989, disposition state from detectParent: Absent CBS Appl: Evaluating package applicability for package Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989, applicable state: Absent CBS Plan: Skipping package since its start state and target state are both absent for package: Package_8_for_KB4486081~31bf3856ad364e35~amd64~~6.2.1.2989, current: Absent, pending: Default, start: Absent, applicable: Absent, targeted: Absent, limit: Installed ... - mmm... Could it be that I will have to manually copy the files according to the .mum and .manifest to the Windows system? XD

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.