Securing Browser Connections Without Defaults
Securing Browser Connections Without Defaults
Vowed to not touch Edge for as long as you live? You might feel cornered after installing a fresh copy of Windows. With only Edge installed by default, most users just use Edge to download another browser. While this approach works fine, you can’t use it if you’ve uninstalled Edge from your computer.
Fortunately, installing a browser without another browser is possible on Windows. Start by selecting the browser you want to install because in most cases, you’ll only be able to download the most popular browsers. We explain how you can download a browser without using a browser in this guide.
Disclaimer: This post includes affiliate links
If you click on a link and make a purchase, I may receive a commission at no extra cost to you.
1. Use the Microsoft Store
Before you move forward with this method, note that Google Chrome is unavailable on the Microsoft Store. If you want to install Chrome, skip to the next method.
Fortunately, Windows 10 and 11 come with a preinstalled Microsoft Store app. The app lets you download the most popular apps, including web browsers like Firefox, Opera, and Brave.
To install a browser, start by launching the Microsoft Store. Search for Microsoft Store in the Start Menu and search for the browser you want to install. Select the browser and clickInstall . Wait for the browser to finish installing.
When installing a browser, be sure to check the publisher to avoid installing fake apps.
2. How to Install Browsers Using Commands
You can use PowerShell or Command Prompt to download a browser using a command as well. For simplicity, we’ll use PowerShell throughout this guide. You don’t need to know any commands or scripting to use this method. Just follow the steps illustrated below.
First, let’s talk about ways you can use PowerShell or Command Prompt to install a browser. There are two utilities that enable you to download files:
- Winget: Winget is the Windows package manager available on the Windows 10 v1809 and later.
- Curl: The Curl command allows you to make web requests and download files and is available on all versions after the April 2018 update (Windows 10 v1803).
- Chocolatey: Chocolatey is a third-party package manager that allows installing and uninstalling applications.
Let’s talk about how you can use these to download a browser.
Use Winget
If you’re running Windows 10 v1809 or later, Winget is one of the easiest ways to download a browser without a browser. Start by launching PowerShell by searching for it in the Start Menu. Then, execute one of the following commands based on the browser you want to download:
winget install --id=Google.Chromewinget install --id=Mozilla.Firefoxwinget install --id=Opera.OperaGXwinget install --id BraveSoftware.BraveBrowser
When asked for confirmation, pressY .
Exit the PowerShell window after the browser has been installed and you’ll be ready to start browsing.
Download a Browser Using the Curl Command
Launch PowerShell by searching for it in the Start Menu. Navigate to the desktop by executing the following command:
cd Desktop
Type the link for the browser you want to download (Chrome ,Firefox ,Opera , andBrave ) and execute the following command:
curl -L "link" -o download.exe
Paste the link in quotation marks like so:
The command essentially asks Curl to navigate to a specific URL, make a download request, follow HTTP redirects, and save the files as download.exe.
Once the file has been downloaded, run the installation wizard to complete the installation process.
Download a Browser Using Chocolatey
Chocolatey is a third-party package manager that functions similarly to Windows’ winget andUbuntu’s APT . It’s a tool that helps install and uninstall apps using PowerShell or Command Prompt.
However, Chocolatey doesn’t come preinstalled with Windows. You’ll need to first allow the running of executable scripts and then install Chocolatey using PowerShell.
Of course, using Winget makes more sense since it’s already installed on all the latest versions of WIndows. But if you want a third-party manager for better control or a larger repository, you might chooseChocolatey over Winget .
To get started, search for PowerShell in the Start Menu and launch it as an administrator. Execute the following command to allow executable scripts:
Set-ExecutionPolicy AllSigned
Next, run the following command:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('<a class="url" href="https://community.chocolatey.org/install.ps1" target="_blank">https://community.chocolatey.org/install.ps1</a>'))
That’s quite long, and since you’re probably viewing this on a different device, your best bet would be to email the command to yourself and copy it over from a client like Outlook. As a last resort, you can always manually type this into PowerShell.
When you’re done, you can install all apps in Chocolatey’s repository by typing their name after “choco install”. Here are the commands for downloading the most popular browsers:
choco install googlechromechoco install firefoxchoco install operachoco install brave
Once the process is complete, you can start using the new browser.
3. Use a Invoke-WebRequest PowerShell Script
PowerShell is a command-line environment you can use to download files from the internet. This means you can also download browsers a browser’s setup file using PowerShell and run the installation without using another browser.
Start bylaunching PowerShell on your computer by searching for it in the Start Menu. Type the following command into the PowerShell:
cd Desktop
The command takes PowerShell to your desktop. When you run the command for downloading a file, PowerShell will save the file to your desktop.
Next, grab the download link for the browser you want to install. Here are the installation links for the most popular browsers—Chrome ,Firefox ,Opera , andBrave .
Run the following command in PowerShell:
Invoke-WebRequest link -o download.exe
Replace the word link with the link to your browser’s setup file. Once you execute the command, you’ll see PowerShell downloading the file. Once the download is complete, exit PowerShell and run the download.exe file stored on your desktop. Follow the installation wizard’s instructions and you’re set.
Start Browsing on Your Fave Browser From Day One
Hopefully, you were able to download a browser and install it using one of these methods. Windows offers a ton of options to get things done. Take your pick when installing a browser without a browser. What matters is installing a browser you think best suits your needs.
Also read:
- [New] Break the Ice with These Beginner Video Gadgets for 2024
- [New] Quick Red-Eye Photo Fixes on Your iPhone, No Money Needed
- [Updated] 2024 Approved Vimeo Chapters Essentials for Seamless Cutting
- [Updated] In 2024, Navigating Cutting-Edge Imaging A Shopper's Selection Process
- [Updated] Step-by-Step Incorporating Songs Into Your Facebook Timeline for 2024
- Configuring Internet Constraints on Windows 11 Devices
- Decoding ESD Files and Their Conversion Into ISO on Windows OS
- Digital Disguise: Mastering the Art of Hiding on Windows 11
- Mastering Error Correction: Tackling 0X8007045d in Win11
- Must-Watch 10 Unique IGTV Content Formats for Brands
- Personalized Keybinding Strategies for Predefined Text in Windows 11
- Retrace Your Files: Accessing Windows 11'S Historical Data
- Snag Your Dream Apple Watch at Exclusive Deals Just In Time!
- Step-by-Step to Immediate Fix: Boot Sound Service Reset
- Upgrading Your Computer's Mouse with Ease
- Title: Securing Browser Connections Without Defaults
- Author: Richard
- Created at : 2024-11-03 06:13:34
- Updated at : 2024-11-06 16:57:58
- Link: https://win11-tips.techidaily.com/securing-browser-connections-without-defaults/
- License: This work is licensed under CC BY-NC-SA 4.0.