Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
milanaryal committed Nov 18, 2023
1 parent bf90897 commit 3deff78
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ For people whose registrars don't provide DNS (Domain Name System) hosting with

All of these providers are either free, or have a decent free plan.

### [Hurricane Electric Internet Services](http://dns.he.net/){:rel="nofollow"}

DNS hosting portal Hurricane Electric provide a 100% free DNS service. They have incredible connectivity all over the world making them an ideal host for your DNS infrastructure.

### [CloudFlare](http://www.cloudflare.com/dns){:rel="nofollow"}

Probably one of the largest free DNS hosting providers, no premium charges unless you get into some of their advanced CDN features. But they are also technically a managed DNS host which means you don't have as much control. However, they do provide you with additional security features such as rate limiting, filtering, and blocking. Cloudflare's speeds are also faster than most premium DNS providers.

### [Hurricane Electric Internet Services](http://dns.he.net/){:rel="nofollow"}

DNS hosting portal Hurricane Electric provide a 100% free DNS service. They have incredible connectivity all over the world making them an ideal host for your DNS infrastructure.

### [Namecheap](http://www.namecheap.com/domains/freedns.aspx){:rel="nofollow"}

A highly reputable domain registrar Namecheap offers free DNS hosting package, you don't even have to register your domain with them (though we use them for domain registration!)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,60 @@ 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 computersIndependent 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/).
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:

```
```sh
winget update
```

Upgrading all installed packages:

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

Searching for an application:

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

Installing the specified application:

```
```sh
winget install <package_id>
```

You can use the following syntax to install multiple applications in a single command:

```
```sh
winget install <query1> <query2> ...
```

Example:

```
```sh
winget install Microsoft.WindowsTerminal Microsoft.PowerToys Microsoft.VisualStudioCode
```

Upgrading the given package:

```
```sh
winget upgrade <package_id>
```

Displaying installed packages:

```
```sh
winget list
```

Uninstalling the given package:

```
```sh
winget uninstall <package_id>
```

Learn more about the winget tool supported [commands](https://learn.microsoft.com/en-us/windows/package-manager/winget/#commands).
Learn more about the winget tool supported [commands](https://learn.microsoft.com/en-us/windows/package-manager/winget/#commands){:rel="nofollow"}.

0 comments on commit 3deff78

Please sign in to comment.