agreement

Winsage
July 25, 2026
On July 25, 1989, Apple faced a legal defeat against Microsoft in a copyright infringement lawsuit concerning the "look and feel" of the Macintosh and Windows operating system. Apple filed 189 counts of infringement related to Windows 2.0.3, but the judge dismissed 179 of these claims, allowing Windows to grow rapidly. The origins of the conflict began when Microsoft proposed a licensing agreement to Apple in 1985, which was rejected. Following this, Microsoft launched Windows 1.0 in November 1985, leading to tensions as Windows 2.0 more closely resembled the Macintosh interface. Apple filed a lawsuit on March 17, 1988, claiming copyright violations. The judge ruled that the existing licensing agreement covered many elements of Windows, contributing to a long-standing rivalry between the two companies and establishing a legal foundation for Windows' dominance in the 1990s.
Winsage
July 24, 2026
LG has decided to stop the McAfee pop-up notifications in its Monitor App Installer following intervention from Pavan Davuluri, head of Windows at Microsoft. Tim Sweeney, CEO of Epic Games, had previously highlighted the annoyance caused by these advertisements. The pop-ups appeared when certain LG devices, like the LG UltraGear, were connected to a Windows device for the first time. Windows allows hardware manufacturers to silently add software during external device installations, which can lead to advertising and mixed user experiences. LG is not exploiting vulnerabilities for software installation, and the automatic process is well-documented. This incident raises questions about review procedures and the implications of advertising within the Windows ecosystem.
AppWizard
July 17, 2026
Google and Epic Games have withdrawn their joint motion to modify a court injunction that requires Google to support third-party app stores within the Google Play ecosystem. A permanent injunction issued in October 2024 mandates Google to facilitate alternative app stores on Android devices, with support set to begin on July 22. Google plans to implement a ,000 annual access fee for these alternative marketplaces, while apps downloaded through these stores will still use the Google Play system for transactions. The agreement between Google and Epic includes provisions for reduced fees and alternative payment methods, separate from the injunction. The legal situation regarding third-party app stores does not directly affect Apple, but it may influence Apple's ongoing legal challenges with Epic Games and regulatory developments. Apple is currently appealing a ruling that requires it to allow link-outs and alternative payment options, with oral arguments expected in late 2026 or early 2027.
AppWizard
July 17, 2026
Epic Games and Google have withdrawn their proposed settlement regarding app distribution on Android, which included a program for registered app stores. This decision allows Google to permit third-party app stores on its platform. The legal dispute began when Epic accused Google of monopolizing Android app distribution. Despite multiple victories for Epic, the companies attempted a settlement that included new billing options and reduced fees, but concerns about sideloading apps led to its abandonment. Google plans to invite other app stores starting July 22 in the United States.
AppWizard
July 16, 2026
Google will introduce rival Android app stores within its Play Store starting July 22, following a court ruling that mandates the inclusion of competing app stores. This change allows cryptocurrency applications greater visibility while still processing downloads through Google Play, which will maintain its service fee. Competing app stores must be U.S.-based, keep malware rates below 1%, and pay an annual fee of ,000. The order is temporary, lasting until November 1, 2027, and prohibits Google from incentivizing device manufacturers to prioritize its own store.
AppWizard
July 16, 2026
Google will allow third-party app stores on its Android platform starting July 22, 2026, following a legal agreement with Epic Games. This decision comes after Google withdrew its motion to modify a court injunction requiring the inclusion of third-party stores. The new framework will enable third-party app stores to list apps and games available on the Play Store, with developers having the option to participate under the same conditions as those in the Play Store. Third-party stores will incur a ,000 annual access fee to list Play Store apps and must adhere to specific security and policy protocols.
Winsage
July 15, 2026
Updating Windows applications is important for accessing the latest features and protecting against vulnerabilities. Many users neglect this due to forgetfulness or the time-consuming nature of the process. The Microsoft Store and Windows Update usually provide updates for native Windows applications, but a unified method for updating all programs is lacking. Windows includes a command called winget (Windows Package Manager) that allows users to update all applications simultaneously via the command line. The command to update all apps is:

winget upgrade --all
This command updates both traditional installers and Microsoft Store apps. Users can also update individual apps by specifying the app ID, for example:

winget upgrade "Chrome"
To view all applications managed by winget, the command is:

winget list
To skip confirmation prompts during updates, users can use:

winget upgrade --all --accept-source-agreements --accept-package-agreements
For complete automation, users can create a task in Task Scheduler to run at startup with the following setup: 1. Open Task Scheduler and create a basic task named "Winget Auto Update." 2. Set the trigger to run when the computer starts. 3. Choose to start a program, entering PLACEHOLDER216a2cf34dab649d in Program/script and PLACEHOLDERbe861b18048fd836 in Add arguments. 4. Set the task to run with the highest privileges and add a 1-minute delay to ensure network connectivity. While winget does not cover every Windows application, it effectively manages most mainstream applications.
Search