Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
milanaryal committed Nov 19, 2023
1 parent 3deff78 commit 1da94b6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
13 changes: 9 additions & 4 deletions src/_posts/2020-07-05-free-and-public-dns-resolvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To set up [Google Private DNS on an Android device](https://developers.google.co
1. Open the Settings app on your Android device.
2. Select Network & security > Advanced > Private DNS or Network & Internet > Private DNS.
3. Select Private DNS provider hostname.
4. Enter dns.google as the hostname of the DNS provider or the address for the DNS server you sourced earlier.
4. Enter `dns.google` as the hostname of the DNS provider or the address for the DNS server you sourced earlier.
5. Tap Save.

### Cloudflare DNS resolver [aka 1.1.1.1]
Expand All @@ -41,9 +41,14 @@ According to DNSPerf, 1.1.1.1 is the world's fastest recursive DNS resolver, bea
| Primary DNS | 1.1.1.1 | 2606:4700:4700::1111 |
| Secondary DNS | 1.0.0.1 | 2606:4700:4700::1001 |

1.1.1.1 also offers an optional Family Protection mode for blocking access to websites with adult content as well as enforcing safe search in search engines.
Enable Private DNS with [1.1.1.1 on an Android device](https://developers.cloudflare.com/1.1.1.1/setup/android/#configure-1111-manually){:rel="nofollow"}:

1. Go to Settings > Network & internet.
2. Select Advanced > Private DNS.
3. Select the Private DNS provider hostname option.
4. Enter `one.one.one.one` and press Save.

[Enable Private DNS with 1.1.1.1 on Android 9 Pie +](https://blog.cloudflare.com/enable-private-dns-with-1-1-1-1-on-android-9-pie/){:rel="nofollow"}.
1.1.1.1 also offers an optional Family Protection mode for blocking access to websites with adult content as well as enforcing safe search in search engines.

### OpenDNS

Expand All @@ -54,7 +59,7 @@ According to DNSPerf, 1.1.1.1 is the world's fastest recursive DNS resolver, bea
| Primary DNS | 208.67.222.222 | 2620:119:35::35 |
| Secondary DNS | 208.67.220.220 | 2620:119:53::53 |

[OpenDNS](https://www.opendns.com/setupguide/) also offers an optional Family Protection mode for blocking access to websites with adult content as well as enforcing safe search in search engines.
OpenDNS also offers an optional [Family Protection mode](https://www.opendns.com/setupguide/){:rel="nofollow"} for blocking access to websites with adult content as well as enforcing safe search in search engines.

### AdGuard DNS resolver

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,36 @@ date: 2023-11-18 00:00:00 +0545

Windows Package Manager (also known as winget) is a free and open-source package manager designed by Microsoft for Windows 10 and Windows 11.

It consists of a command-line utility and a set of services for installing applications. The winget command-line tool enables users to discover, install, upgrade, remove, and configure applications on Windows 10 and Windows 11 computers Independent software vendors can use it as a distribution channel for their software packages. The tool is available on Windows 11 and modern versions of Windows 10 as a part of the App Installer. If you are interested in learning more about winget, you can visit the official [Microsoft Learn page](https://learn.microsoft.com/en-us/windows/package-manager/winget/){:rel="nofollow"}.
It consists of a command-line utility and a set of services for installing applications. The winget command-line tool enables users to discover, install, upgrade, remove, and configure applications on Windows 10 and Windows 11 computers Independent software vendors can use it as a distribution channel for their software packages. The tool is available on Windows 11 and modern versions of Windows 10 as a part of the App Installer. If you are interested in learning more about winget, you can visit the official [Microsoft Learn page](https://learn.microsoft.com/en-us/windows/package-manager/winget/){:rel="nofollow"}.

Updating the winget:
open the elevated PowerShell window using the Search box or any other preferred ways. When PowerShell window is opened as administrator, type and execute the following command:

```sh
winget update
winget upgrade
```

Upgrading all installed packages:
This command is not necessary but quite helpful as it will show you the list of all the outdated programs and available updates for them. You will also be able to see the program name, ID, installed version, and available version. Now execute the command that will automatically update those programs with their latest versions. The command is:

```sh
winget upgrade --all
```

One by one, the Windows Package Manager will automatically download the new versions of programs and install them silently. This may take some time. So, let the process complete, and your programs will be updated with the new versions.

Just for your information, run `winget` command to view more information about how to use the tool. The following are some of the other commands and options available for use with winget.

Searching for an application:

```sh
winget search "package name"
```

You can see more information about how to use one of winget's built-in commands by passing `-?`` to it. For example, to see the various options you can use with winget, run the following command:

```sh
winget search -?
```

Installing the specified application:

```sh
Expand All @@ -49,6 +59,14 @@ Upgrading the given package:
winget upgrade <package_id>
```

Updating all available packages to the latest application:

```sh
winget upgrade --all
```

`winget upgrade --silent --all` --- Runs the installer in silent mode. This suppresses all UI. The default experience shows installer progress.

Displaying installed packages:

```sh
Expand Down

0 comments on commit 1da94b6

Please sign in to comment.