Skip to content

Commit

Permalink
⭐️ add installation script for windows (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock authored Oct 25, 2022
1 parent 9512ccf commit 4376d3c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ GOBIN
vSsphere
i-1234567890abcdef0
Ssphere
iex
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,21 @@

Install `cnspec` with our installation script:

**Linux and macOS**

```bash
bash -c "$(curl -sSL https://install.mondoo.com/sh/cnspec)"
```

**Windows**

```powershell
Set-ExecutionPolicy Unrestricted -Scope Process -Force;
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;
iex ((New-Object System.Net.WebClient).DownloadString('https://install.mondoo.com/ps1/cnquery'));
Install-Mondoo -Product cnspec;
```

If you prefer a package, find it on [GitHub releases](https://github.com/mondoohq/cnspec/releases).


Expand Down

0 comments on commit 4376d3c

Please sign in to comment.