Install Browser without Browser in Windows (Install Browser via Command Lines)

Subscribers:
1,450
Published on ● Video Link: https://www.youtube.com/watch?v=Ia1incmmML8



Duration: 3:24
5 views
0


Here's how to Install Browser without Browser in Windows.

Here are a few ways to install applications on Windows using command line commands:

- MSI Installer:

To install an MSI package, use the msiexec command like this:

```
msiexec /i C:\path\to\app.msi
```

For a silent install, add the /qn parameter:

```
msiexec /i C:\path\to\app.msi /qn
```

- Chocolatey:

Chocolatey is a package manager for Windows that allows you to install apps from the command line. First install Chocolatey, then use the choco install command:

```
choco install appname
```

For example, to install Google Chrome:

```
choco install googlechrome
```

- Scoop:

Scoop is another command line installer for Windows. After installing Scoop, you can use scoop install to install apps:

```
scoop install appname
```

For example, for Visual Studio Code:

```
scoop install vscode
```

- Windows Package Manager (Winget):

Winget is the new official package manager for Windows. Use winget install:

```
winget install appname
```

For example:

```
winget install Microsoft.VisualStudioCode
```

So in summary, the main options are msiexec for MSI installers, Chocolatey, Scoop, and Winget - which all allow installing Windows applications from the command line.