Chipp.in Tech News and Reviews

Windows, Security & Privacy, Open Source and more

Menu
  • Home
  • Windows
  • Security & Privacy
  • Gaming
  • Guides
  • Windows 11 Book
  • Contact
  • RSS Feed
Menu

Tag: windows 11

Computers

How to back up Windows user profiles

Posted on January 20, 2024January 20, 2024 by Martin Brinkmann

Each Windows user has a user profile that holds customizations and personal files. Users may install software, download files or change the look and feel of Windows.

Backing up user profiles may not be something that most users are familiar with. There are full system backups after all, which include user profile data.

User backups may come in handy in some cases, however. Here are the two main cases:

  1. To migrate a user profile from one Windows device or installation to another.
  2. To back up a user profile for safekeeping.

Windows users who use a Microsoft account may have some of their customizations and files synced between devices. Not all data is synced on the other hand, including Win32 software installations or customizations of installed programs.

A backup of the user profile and the restoration of it on another device takes care of that.

Note that there are also specialized programs for copying settings. Appcopier is a free tool that does that. Note that Windows Backup backs up user data as well, but not much more.

Super Grate: back up Windows user profiles

Back up Windows user profiles

Super Grate is a free open source tool for Windows to back up Windows user profiles and to restore the backups. Its main purpose is migrations from one device to another. It runs on Windows 7 to Windows 11 devices.

The program requires no installation. Just run the program after download to get started. Windows may throw a SmartScreen error, which you can skip. The application is safe to use. Note that Super Grate requires elevation.

The interface looks simple enough, but there is a roadblock for users who never worked with computer names and domains.

Backing up profiles

To back up a profile, it is necessary to enter the name, and optional domain, of the computer. Open Settings > System to get the name of the computer. It is listed at the top of the page.

Name of Computer

Type the name of the computer into the source computer field and activate the “list source” button. The program will return all user-created profiles but no standard profiles.

The name, creation date and last modification date of each profile is listed by the app.

Select one or multiple profiles and activate the start button to back up these profiles. It may take some time to back up profiles. Much of it depends on the size of the profile. There is a progress bar that reveals the progress of the entire process.

Restoring profiles

Restoring a Windows user profile works similar to the backup process. Type the computer name into the destination computer field and hit the “list store” button afterwards. To restore on the same computer, type the computer name again.

Super Grate should return all backed up profiles. Select the profile that you want to restore and then Start to restore the user profile on the device.

Tip: you may rename a Windows user profile by right-clicking on it and selecting the “set destination user name” option from the context menu.

Full migrations

To migrate a user profile from one computer to another, it is necessary to fill out both the source and destination computer fields. These need to be different and connected to the same network.

Consult the official documentation for additional guidance. It includes information about using Active Directory, deleting profiles and more.

Verdict

Creating a backup of a Windows user profile is a simple task with Super Grate. It is a useful when you want to migrate the profile from one device to another, or for back up purposes.

User profiles may become corrupt, for instance after a virus attack or accidental deletions of important files.

Extract

How to properly extract Zip files on Windows 11

Posted on January 18, 2024January 18, 2024 by Martin Brinkmann

Zip archives are widely used on today’s Internet and on desktop computer systems. The Zip archive format is popular and used for distributing files, programs or saving space.

Archives contain one or more files. A Zip archive needs to be extracted, which is called unzipping.

Windows 11 supports the Zip archive format by default. It can extract contents of archives on the system. A third-party tool, like WinZip, WinRar or 7-Zip, is not required anymore for that purpose.

While it is a useful feature, it is far from perfect. Current versions of Windows 11 may be used to create and extract Zip archives. Windows 11 supports extracting other archive types, including Rar.

Last year, I ran benchmarks to find out how well the native functionality compared to that of popular archive apps. While it works, its performance is much slower than that of the tested third-party tools.

How to unzip files in Windows 11?

You may use the File Explorer context menu to extract archives. The option is available for all supported archive formats, including zip and rar.

Step 1: Open File Explorer on the system and navigate to the folder that contains the Zip archive. It may be in the Downloads folder if you have downloaded it from the Internet.

Extract Zip archive

Step 2: Right-click on the Zip file and select the Extract all option from the menu that opens.

Extract menu

Step 3: A window opens. You may change the location the files will be extracted to. The default is a folder that matches the archive file’s name in the same location as the archive.

The option “show extracted files when complete” opens that folder. It is enabled by default, but can be unchecked.

Select Extract to unzip the archive to the selected folder. The process may take a while to complete.

How to view the contents of Zip archives

You may also open archives on Windows 11 before you extract them. This is useful if you want to see the files of the archive or access some of the files.

Open a Zip archive in Windows 11

Double-click on the Zip archive in File Explorer to display its contents. File Explorer lists all folders and files that it contains.

You may browse them or use the built-in search feature to find specific files.

Your Options:

  • Double-click on any file to open it. This works only for files like .txt or .png that have a viewer on the system.
  • Right-click on a file or a selection to get options to copy, cut or delete it. Copy may be used to extract only the selected files. Cut is like copy, but it removes the file from the archive. Delete removes the file from the archive.
  • Select the “extract all” button in the toolbar to extract all files. This works similarly to extracting archives using the context menu.

Tip: You may edit the path in File Explorer to view any archive directly. Just add the archive’s name and file extension to it, e.g. C:\Users\Martin\Downloads\Test\iview466_plugins_x64.zip

Use of third-party tools to unzip files

WinRAR extract files

Third-party archive apps offer several advantages over the native functionality of Windows 11. Apart from the already mentioned speed, which translates to minutes or hours saved when extracting and creating archives, third-party apps support advanced features.

Advantages include support for additional archive formats, better archive creation support and more.

Extracting archives works identical once the third-party app is installed on a Windows 11 device.

Right-click on the archive and select the extract option. If you have installed WinRAR, you select WinRAR > Extract Files.

Command line and PowerShell options

Most Windows users do not need to extract Zip archives from the command line or PowerShell. The process is not faster. In fact, most users may find it complicated, as it requires parameters.

Still, some may find the information useful.

Command Prompt

Tar Command

Open a Command Prompt window in the location of the archive file. If you are in File Explorer, replace the location path with CMD and press the Enter-key. This launches a Command Prompt window in the location.

Now run the command tar -xf ARCHIVENAME, e.g. tar -xf iview466_plugins_x64.zip.

This extracts the archive to the current directory.

PowerShell

You may open a PowerShell prompt from Start. Just open Start, type PowerShell and select the result.

Navigate to the folder of the Zip archive using the CD command.

Once there run the command Expand-Archive ARCHIVENAME to extract it, e.g. Expand-Archive iview466_plugins_x64.zip.

Closing Words

Third-party software offers several advantages over the built-in Zip extraction capabilities of Windows 11. In fact, the only advantage Windows 11’s native functionality has is that it is available immediately.

If you extract archives regularly or need advanced options, then you may want to use third-party tools for that.

Now You: do you use archive apps?

Colors

How to customize colors in Windows 11

Posted on January 17, 2024January 17, 2024 by Martin Brinkmann

Microsoft’s Windows 11 operating system supports a wide range of color settings. Users may customize the color for window borders and title bars, the Start button and the taskbar.

Microsoft distinguishes between color modes, which refers to dark, light and custom modes, and individual color settings of each mode. This has not changed in the recently released Windows 11 version 23H2 update.

The very first choice that users of Windows 11 have to make is whether to enable light, dark or custom mode.

Here is how they differ:

  • Light Mode — designed to work well during daylight hours and in bright environments. This mode supports accent colors for window title bars and borders.
  • Dark Mode — designed for low-light environments, e.g., at night. Changes the colors of the Start Menu, Taskbar and Action Center, supports changing colors for windows borders and title bars.
  • Custom Mode — custom settings that may mix Dark and Light mode settings.

Changing Color Modes on Windows 11 devices

Windows 11 Colors

Follow these step to set the color mode on a Windows 11 system:

  1. Open Start and select Settings. You may also use the keyboard shortcut Windows-I to open the Settings app this way.
  2. Select Personalization in the sidebar menu and then Colors on the page that opens.
  3. Activate the menu next to “choose your mode” and pick one of the available options. These are light, dark and custom.

Changing Light Mode colors

Light Mode color options Windows 11

Select Light under “choose your mode” to enable light mode. If the mode was set to custom or dark, you should notice a return to lighter colors immediately.

Scroll down to Accent color. You may set it to manual or automatic. Set it to manual to pick one of the listed “recent colors” or “Windows colors”, or select “View colors” beneath the options to pick a color from the entire color range.

The selected color is set automatically. Note that the option to show the accent color on Start or the taskbar is disabled in light mode.

You may enable or disable “show accent color on title bars and windows borders” to show the selected color there.

If you set the color to automatic, Windows picks the color based on the wallpaper or open applications. Some users may find this confusing, as the color changes regularly when automatic is selected.

Changing Dark Mode colors

Dark mode supports a wider range of color options than light mode. It is unclear why Microsoft decided to restrict light mode in this regard.

After you have selected Dark as the preferred color mode on the system, you may also set the accent color to manual or automatic. The same color options are provided in this regard.

The accent color is shown on the title bars and windows borders by default. You may also enable “show accent color on Start and taskbar” to show it there as well.

Custom Color Mode

Custom Color Mode Windows 11

This mode gives you the option to set light or dark color modes for Windows and apps individually. You may set Windows to dark mode and apps to light mode, or vice versa.

How to configure less distracting color settings

Depending on how you configure colors on Windows, you may get a colorful system or one that is not as distracting. If you work on Windows 11, you may want to tone down colors on the system.

You may do so in all three color modes. The main recommendation is to disable all other features that Windows supports.

These are:

  • Transparency effects — these make Windows and surfaces translucent.
  • Show accent color on Start and taskbar — to show the taskbar and Start in a single color that uses the selected color mode as its base.
  • Show accent color on title bars and windows borders — to hide accent colors on windows.

It does not really matter which accent color you select, or if you set it to automatic or manual, if you disable all other settings on the page.

Now You: what is your preferred color mode?

Copilot key

There has to be more to the Windows Copilot key

Posted on January 8, 2024January 8, 2024 by Martin Brinkmann

Microsoft announced a dedicated Copilot key for Windows recently. Yusuf Mehdi himself announced the “year of AI” and the introduction of the Copilot key for Windows 11 PCs. Microsoft and several OEMs will ship upcoming devices with the key on the keyboard.

Information about the key is scarce at the moment. While Microsoft did publish a blog post on its Windows Experience blog about the key, it revealed little about its functionality.

Mehdi revealed on Twitter that the key would “enable one-click access to Copilot” and Microsoft’s rather lengthy post does not provide any additional information on the functionality it provides besides that.

Microsoft does compare it to the Windows-key, which it introduced almost 30 years ago. This key, also controversial at the time, introduced a number of new shortcuts on Windows.

Microsoft’s own Surface devices and devices by OEMs such as Dell will feature the new Copilot key.

The Copilot key: what we know

A short clip of the key that Mehdi posted reveals its location next to the right Alt key and the cursor keys on a keyboard for a mobile device. What Mehdi failed to mention is that it sits in the place of the right Ctrl-key on the keyboard.

Tom Warren posted a screenshot of a Dell keyboard with the key. It too replaced the Ctrl-key on the keyboard. It appears that Menu functionality is still available as well, albeit not directly when pressing the key.

The removal of the right Ctrl-key introduces a problem for users who use it. There does not seem to be a replacement option and it is unclear if users may map Ctrl again to the Copilot key to restore the current functionality.

Functionality-wise, all that Microsoft revealed was that you get access to Copilot when you activate the key.

Obviously, Copilot itself needs to rise to the occasion as well. It is severely lacking at the moment. It takes to long to process input and anything that you write is submitted over the Internet to a Microsoft server.

Is there more to it?

If the entire functionality of the key is to launch the Windows Copilot interface, then it is quite the redundant feature. The existing shortcut Windows-C opens the Copilot interface already. Users may also click on the Copilot icon to launch it.

What happens to the key when users deactivate Copilot? It is a dead key then? Will Windows 11 map it to Ctrl automatically? Or will it reactivate Copilot even?

It is certainly possible that the key adds just the launch option, which would demonstrate Microsoft’s dedication to AI. It may be great for the stock price and initial usage of Copilot, but it would be lacking functionality-wise.

If that is indeed all there is to the dedicated key, it is a missed opportunity. If Microsoft uses it as another key for shortcuts, it might interest more users.

From launching dedicated AI tools, such as image generation, to creating summaries of open documents or webpages with a simple shortcut.

If Microsoft wants to please everyone, it would even introduce a setting to remap the key to Ctrl.

Closing Words

The coming days and weeks will provide us with additional information about the key and its uses. While many OEM keyboards will include the key, it is uncertain if the majority of standalone keyboards will support it.

Now You: what is your take on the key?

Microsoft Edge

MSEdgeRedirect: open content in your favorite browser on Windows

Posted on January 1, 2024January 1, 2024 by Martin Brinkmann

When Microsoft launched Windows 11 in late 2021, it did not only block millions of Windows PC owners from updating to the operating system, it also made the use of Microsoft Edge mandatory for certain operations.

Want to open support articles? Edge is required. Web search results? Edge is required. Links to articles and other content in Widgets? Edge is required.

Setting another browser to the system default did not change any this.

Then came MSEdgeRedirect. An open source tool that promises to redirect hardcoded content for Edge to another browser. While Microsoft did try to make the tool unusable, it did survive.

A new version of MSEdgeRedirect is now available. It comes just a week after the integration of Europe Mode. Europe Mode enables everyone to set the geographic location of the operating system to one of several European countries.

MSEdgeRedirect

Along with the change come abilities to remove Microsoft Edge and Bing Search, and gain control over other areas as well.

The newest update as another redirect option to the application: the ability to redirect MSN Discover content to another browser.

MSEdgeRedirect: modes explained

The application supports a wide range of redirect options. Before you get access to these, you need to select the mode of operation. There are three main options to choose from:

  • Europe Mode — This mode makes native changes to the system to set the region to a country in the European Economic Area. It gives you more control over Windows and includes the option to remove Microsoft Edge for good.
  • Service Mode — The application runs in the background to pick up any Edge link and redirect it to the desired target. Quite taxing for the system (developer says 1-10% CPU usage while running).
  • Active Mode — Runs the app instead of Microsoft Edge when links specific for Edge are opened.

If you picked Service or Active Mode, you may configure redirects on the next screen.

All Redirects

The application supports all variants of Microsoft Edge — Stable, Beta, Dev and Canary — and may do its magic regardless of which variant is installed.

Here is the list of available redirects:

  • Bing Discover — content that “Bing” believes is of interest.
  • Bing Search — web searches using Windows Search.
  • MSN News (Alpha) — news content displayed as a widget in Windows Widgets.
  • MSN Weather — weather content displayed on the taskbar and as a widget.
  • Bing Images — images provided by Bing.
  • PDF Viewer — change from Edge to another PDF viewer on the system.
  • Bing Chat — option to redirect Bing Chat.
  • Disable Windows CoPilot — turn the feature off.
  • Redirect Windows Store ‘Apps’ — don’t open them in the Microsoft Store.

You may configure all of these individually. Note that replacements vary depending on the type of content. Usually, you get multiple options to choose from, including a custom option.

Verdict

MSEdgeRedirect is an open source tool that gives users control over certain functionality that Microsoft decided to restrict. There aren’t any technical limitations for these restrictions. It appears to be an attempt by Microsoft to push its services over others, even at the expense of user control and choice.

Apart from not using these services, which works really well, you might give MSEdgeRedirect a try if you use some of them.

The latest version is available on the project’s GitHub repository. Note that you may get a SmartScreen security warning when you run the program on Windows. It is safe to use, so don’t worry about that.

Now You: do you use Windows 11?

Update installation

About Windows’ upcoming Fix problems using Windows Update feature

Posted on December 29, 2023December 29, 2023 by Martin Brinkmann

Upcoming versions of Windows will include a new repair feature that Microsoft calls Fix problems using Windows Update. The feature, which was first spotted in January 2023, uses the capabilities of Windows Update to reinstall Windows.

Since it adds another repair option to Windows, you may wonder how it differs from existing options. In this article, we will take a look at the feature and highlight the differences to existing solutions.

Fix problems using Windows Update
source: PhantomOcean3

First the basics. The option is located under System > Recovery on Windows 11 devices. You find the option to “fix problems without resetting your PC” there. This option attempts to troubleshoot and fix issues directly without any reinstallation or resetting.

There is also “Reset this PC”, which reinstalls Windows and allows you to keep personal files, and “go back”, which tries to uninstall the most recent Windows update.

Fix problems using Windows Update explained

Fix problems using Windows Update is the new addition on the page. When you select the option, Windows will download files from Windows Update to reinstall itself.

A core difference to Reset this PC is that you get to keep personal files, installed applications and settings. In other words, it stays away from any user files and customizations and focuses on restoring the operating system itself.

Microsoft confirmed this when it announced the feature back in July 2023 on its Windows Insider blog.

The description of Fix problems using Windows Update reads: “Reinstall your current version of Windows (your apps, files and settings will be preserved)”.

Microsoft explains: “This operation reinstalls the OS that you have and will not remove any files, settings, or apps. The repair content is displayed on the Windows Update Settings page with the title appended with “(repair version)”.”

The main purpose of the feature is for “keeping the device secure and up to date” according to Microsoft. The company admits however that the new feature can be useful in multiple scenarios besides that.

The option may be useful in the following scenarios (among others):

  • When updates fail to install over and over again using Windows Update.
  • When part of the system is damaged, e.g., after a malware attack.
  • When other issues are experienced related to Windows features.
  • If you delete core apps that you somehow can’t restore any other way.

Closing Words

Microsoft has not yet announced when the new feature will land in Stable versions of Windows. Potential targets are the next Moment update, which rumors say launches in February 2024, or the next feature update, which will come later in 2024.

The new feature is an option. It does not take away any existing options but adds a new one that some users may find useful. Whether it will be indeed useful in many different scenarios remains to be seen.

Now You: which reset/reinstall option do you use when things are broken?

A review of UCheck, a Windows software updater

Posted on December 27, 2023December 27, 2023 by Martin Brinkmann

UCheck is a software updates checker for Windows. It is a freemium product, which means that it is available as a free, limited version, and a commercial version. The price of the commercial version starts at $12 per year.

Earlier this week, I reviewed WingetUI, an open source program to install, uninstall and update software programs on Windows. UCheck promises similar functionality, but the free version is limited to updating and uninstalling software on the system.

The Premium version, available for $12 per year, adds the installation of software, scheduled scans, email support and Enterprise use to the mix. There is also a Technician’s version, which adds scripting, portable configs and license.

The free version of UCheck was used for this review.

UCheck Free overview

UCheck interface

The program is available as a portable and setup version. The interface displays the three main sections, updates, installed, and download, on start. Free version users see several “upgrade” links and offers there as well.

You may want to visit the program settings before you run a scan. The General section reveals that Telemetry data is send by default and that the program is configured to run on startup. You may disable both options there. There is also an option to scan apps that start on Windows automatically, which is an interesting feature.

The settings are also home to exclusions, which accepts folders and files, and custom locations, which can be used to include portable software programs in the scanning.

Activate the Scan button in the main interface to find out which installed (and portable) programs have updates.

UCheck Free updates

The program lists the number of programs with updates, as well as the number of installed programs after the scan.

Select “pending updates” to take a look at the list of outdated programs UCheck discovered during its scan.

Programs are listed with their name, company / developer, location on the local system, and the current and latest version. Filters and a search are supported to display only some results.

The Action menu lists options to update individual programs, to skip this update, and to add them to the list of exclusions. The free version supports batch updates, but you need to start UCheck Free with elevated rights for that. There is a button in the interface that does that.

You may now check one or multiple programs and activate the “update selected” button to download and install updates for the selected applications in one operation. Note that there is no “select all” checkbox, which would make things comfortable.

It is unclear where the downloads come from, as this is not revealed by the application. The database is community powered, which explains why it is large and well maintained.

Comparison to winget and WingetUI

When you compare UCheck to winget, you will notice that UCheck supports more programs than the default winget database. Winget detected about 20 programs with updates on a test system while UCheck over 140.

One reason for that is that UCheck includes the Downloads folder of Windows by default. Depending on use, it may store a large number of applications.

WingetUI is easier to use, there is no doubt about that. It suffers from the same lack of a larger software database though. Another difference is that both “wingets” support the installation of portable programs, which is reserved to paid versions of UCheck.

UCheck does include information about available Windows Updates though.

Closing Words

The end of SUMO, probably the best software updates monitor for Windows, has left a hole. UCheck comes close to what SUMO offered, but you may need the commercial version to really take advantage of some of its features.

The program could use a few usability features, such as an option to check all / uncheck all programs in the updates listing. Nothing major, but these would improve usability for some users.

All in all, UCheck is a well designed program that delivers exactly what it promises. The Premium version is worth a subscription, as it adds scheduled scans and some other features to the app.

Now You: do you use software updaters?

Package

WingetUI review: install, uninstall and update Windows programs

Posted on December 26, 2023December 26, 2023 by Martin Brinkmann

This is a review of WingetUI, an open source program for Windows that many users will find useful.

I wrote an article on the package manager winget for Windows yesterday on Ghacks. It is an integrated command line tool in newer versions of Windows to uninstall, install or update programs.

WingetUI takes the capabilities of winget and puts a shiny user interface around them. If you prefer to use a graphical user interface, WingetUI is a great option.

First the basics. WingetUI is an open source application for Windows. You can download the latest version from its GitHub respository and install it or run a portable version.

WingetUI supports winget but also other package manager and tools. These include Scoop, Chocolatey, Pip, Npm and PowerShell Gallery. Advanced users may configure the client to do their bidding exactly, but it works well without any advanced configuring.

WingetUI: core functionality

The main WingetUI interface is divided into three tabs: discover packages, software updates, and installed packages.

  • Discover packages — This tab features a search to find programs and options to install one or multiple apps at once.
  • Software updates — This tab checks for updates of installed programs. You may update all or some programs using it.
  • Installed packages — The tab lists the installed programs of the system.

Discover Packages

WingetUI interface

Use this to find applications to install. Just type an application name or part of it in the search field and wait for the results to show up.

The program lists package names and IDs, the available version and the source. Note that you may change sources in the preferences. If you just want to use winget, you need to disable all other sources. Some sources, for instance Scoop, are disabled by default.

A double-click on a file display additional information about it. This may include a list of features, a short description and tags.

WingetUI lists package parameters as well, which may be used to change installation parameters.

Check one or multiple programs and select “install selected packages” to download and install them on the system. Several options are available at the top:

  • Install selected packages with administrative rights.
  • Skip the hash check when installing the selected packages.
  • Do an interactive install for the selected packages.

Unless you activate the interactive install option, you may notice that most installations happen silently in the background for the most part.

Software Updates in WingetUI

The Software Updater lists all installed applications that are not up to date. It lists names and IDs, as well as the installed version and the latest version.

You may use it to update all out of date apps in one swift operation. Just activate the “update selected packages” button to download and install updates for the selected Windows programs.

It is a quick and easy process. Note that you may still get UAC prompts to allow updates, but it is definitely quicker than updating programs manually.

A right-click displays some options. You may ignore certain updates using the right-click menu. This is important if you don’t want a program to install a certain update. One reason for that is that the update may introduce bugs or changes that you want to avoid.

The package details offer information, including links to the official websites.

Installed Packages

Installed packages offers an overview of all programs installed on the system. WingetUI displays names, versions and the installation source, which is useful information.

You may use the information to check the source, e.g., if it was installed locally, from the Microsoft Store or using a package manager.

While you may barely use native Windows apps or Microsoft Store apps, others may appreciate the functionality.

Closing Words

WingetUI is a powerful frontend for winget and some other package managers. It is a useful tool to find outdated programs on a Windows system and get these updated in batch mode.

While it may not pick up all oudated programs, as it does not support portable apps installed from other sources, it does a great job at taking care of the rest.

Running it from time to time is a good way of keeping a system’s software up to date.

What happens when you remove Microsoft Edge from Windows 11 after setup?

Posted on December 22, 2023December 22, 2023 by Martin Brinkmann

Microsoft is testing changes currently that give users from many European countries more control over Windows 11. There are workarounds already for users from other regions to uninstall Edge without tools or commands.

Microsoft plans to introduce the change in the first quarter of 2024 in Windows 11. Two of the main improvements let users remove Microsoft Edge and Bing Search from the operating system.

Microsoft Edge is the default browser of Windows 11. Bing Search is used to populate, some would say pollute, search results with web results.

While there have been ways to deal with the two until now, both required some technical know-how or the right tools. AppBuster, for instance, is a free program to remove many locked apps from Windows 11.

Windows users who prefer a different browser use Microsoft Edge to download these browsers. What happens if Microsoft Edge is uninstalled prior to installing any other browser? Are you stranded then, left without any chance to install an Internet browser? Let’s find out.

How to uninstall Microsoft Edge

Once the change lands, users with administrative rights may remove Microsoft Edge from the system.

Tip: even if you live in a region that is not supported by Microsoft in regards to the change, you may still add the functionality to your system. It involves changing the region to that of a European country.

While you may do so manually, you may also use the open source tool MSEdgeRedirect to to it for you. Just enable Europe Mode in the app when you run it. The app makes the required changes in the background. You need to restart the system once before the changes take effect.

Removing Edge is done in Settings > Apps > Installed Apps on Windows 11. Just search for Microsoft Edge, activate the three-dots menu next to its entry and select the uninstall option from the menu.

Uninstall Microsoft Edge

Edge is removed after you confirm by selecting uninstall again. Note that there may be a small warning prompt that explains that removing Edge may impact apps and widgets that depend on the browser.

Windows 11 without a browser

With Microsoft Edge gone, you may notice a few changes right away. The first and most important one is that you may not have a web browser installed anymore.

Microsoft Edge is the default browser. Removing it removes the only browser from the system, unless you install a different browser first.

What happens when you try to open Internet links in that case? Windows launches the Microsoft Store page of Microsoft Edge so that you may install it again.

This is not your only option, however. You may also install other browsers, including Firefox, Brave Browser, Opera GX or Vivaldi Browser from the Store.

In other words: you are not in a cul-de-sac when you uninstall Edge without having access to another browser.

The better option is to use Edge to install a different browser first before removing it.

There is one situation, at the least, which puts you in a dead end after all. Windows has a hard limit on the number of devices associated with an account. If you happen to run into this limit after uninstalling Edge, you won’t be able to install any other browser

The thing is, you may install Microsoft Edge even if you hit the account limit. This may be because it was installed previously on the device, or because it is not affected by the imposed limitation.

If you have another device at hand, you may remove older devices from the Microsoft account to unlock the functionality. Still, it is definitely a nuisance if you hit the limit.

Other things to note

Some links may still require Microsoft Edge to open, at least in the current state of the feature. The “learn about this picture” link for instance, refuses to open in any browser but Edge, even if Edge is not installed and another browser is set as the default.

This may be because of the current state of development. It is unclear if these link will require Edge no matter what once they roll out to stable versions of Windows.

All in all, it will be interesting to see how Microsoft is going to tackle these issues. The most obvious option would be to allow them to load in the default browser, even if it it is not Edge. Whether that is going to happen remains to be seen, however.

Now You: which web browser do you use?

Appcopier: backup and restore Windows Settings

Posted on December 20, 2023December 20, 2023 by Martin Brinkmann

Appcopier is a new open source application by Built By Bel, known for apps such as CleanmgrPlus, ThisIsWin11 or Bloatynosy.

The app, which is in an early development stage, lets Windows 11 users back up and restore system settings. Its developer designed the app to replicate functionality of Microsoft’s new Windows Backup app.

You may remember my rather harsh review of Microsoft’s app, which I called “not a real backup app”.

Appcopier

Appcopier software interface

The developer of the application describes it in the following way:

This small project is still in the making. It allows you to back up and restore your most important Windows 11 preferences and settings offline and locally.

Appcopier has several advantages over Microsoft’s creation. It is open source, portable and it does not require a Microsoft account. In other words, you may use it to back up Windows settings and customizations locally. One downside is that you need to find a way to transfer the backup to another PC, if you want to restore the settings and customizations there.

Using Appcopier is straightforward. After you pass the dreaded “Windows protected your PC” screen by selecting “run anyway and an UAC prompt, you are greeted with a simple interface.

The tested version displays a tree structure in the interface. You may expand the tree to list all available backup options.

There are, at the time of writing:

  • Windows Configurations
    • Personalization settings
    • Taskbar settings
    • Privacy settings
    • Apps Privacy settings
    • Windows 11 Telemetry settings
    • Windows Update settings
    • Windows 11 Wallpapers
  • Apps
    • 7-Zip
    • Notepad++

The program may support other apps and list them under the section. Check some or all of the options and activate the backup button afterwards. Note that the root checkbox did not work during tests to select all items.

Backup and restore

Backups are saved to a subfolder of the program folder. The folders use a date – time naming scheme, which makes it easy to find the right one.

All settings are saved as Registry keys. Wallpapers and themes do get stored in their native formats.

You have two options to restore a backup. Either use the “reload” button in the program interface to select a backup that you want to restore, or execute the Registry files directly on target systems.

These settings are regular Registry keys, which you may import on any compatible system.

Closing Words

Appcopier is an interesting program, especially for users who sign-in to a local account on their Windows devices. The app is in an early stage of development and you may run into bugs currently while using it.

I did not encounter any major issues, but your mileage may vary. The developer announced plans to improve it in the future to add more backup options for “things” that are more complicated to backup than saving Registry values.

The app was only tested on Windows 11, but it should also run on Windows 10 devices according to the developer.

All in all, this is an app that you may want to put on your watchlist if you find it interesting.

Now You: do you sync settings or use backup tools? (via Deskmodder)

  • Previous
  • 1
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • Next

Support This Site

If you like what I do please support me!

Any tip is appreciated. Thanks!
  • August 29, 2026 by Martin Brinkmann Another Windows Issue: Microsoft Defender Antivirus is turned off notification, but it is actually enabled
  • August 28, 2026 by Martin Brinkmann Brave Accounts and Email Aliases launch
  • August 25, 2026 by Martin Brinkmann Microsoft confirms: Latest .NET updates may cause printing issues
  • August 24, 2026 by Martin Brinkmann The Chrome Web Store has a fake VPN extensions problem
  • August 23, 2026 by Martin Brinkmann Microsoft is worsening classic Media Player to get users to upgrade

About

We talk, write and dream about Technology 24/7 here at Chipp.in. The site, created by Martin Brinkmann in 2023, focuses on well-researched tech news, reviews, guides, help and more.

Legal Notice

Our commitment

Many websites write about tech, but chipp.in is special in several ways. All of our guides are unique, and we will never just rehash news that you find elsewhere.

Read the About page for additional information on the site and its founder and author.

Support Us

We don't run advertisement on this site that tracks users. If you see ads, they are static links. Ads, including affiliate links, never affect our writing on this site.

Here is a link to our privacy policy

©2026 Chipp.in Tech News and Reviews