Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/pages/desktop-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Export the Teleport user certificate authority by running the following from
`cmd.exe` on your Windows system:

```code
$ curl 'https://teleport-proxy.example.com:443/webapi/auth/export?type=windows' > teleport.cer
$ curl -o teleport.cer 'https://teleport-proxy.example.com:443/webapi/auth/export?type=windows'
```

<Admonition type="warning" title="PowerShell">
Expand All @@ -70,8 +70,8 @@ following command:

From the Windows system, download the [Teleport Windows Auth
Setup](https://cdn.teleport.dev/teleport-windows-auth-setup-v(=teleport.version=)-amd64.exe).
Extract the `.exe` file from the archive and run it. When prompted, select the
Teleport certificate file from the previous step. Once complete, reboot the system.
Run the installer. When prompted, select the Teleport certificate file from the previous step.
Once complete, reboot the system.

<Admonition type="tip" title="Headless Installation">
The Teleport Windows Auth Setup can be run in a shell environment with elevated
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Visit the provided URL in order to create your Teleport user.

If a user does not already exist, you can create it with `adduser <login>` or
use [host user creation](./server-access/guides/host-user-creation.mdx).

If you do not have the permission to create new users on the Linux host, run
`tctl users add teleport $(whoami)` to explicitly allow Teleport to
authenticate as the user that you have currently logged in as.
Expand Down Expand Up @@ -178,7 +178,7 @@ Install `tsh` on your local workstation:

<TabItem label="Windows - Powershell">
```code
$ curl -O teleport-v(=teleport.version=)-windows-amd64-bin.zip https://get.gravitational.com/teleport-v(=teleport.version=)-windows-amd64-bin.zip
$ curl -o teleport-v(=teleport.version=)-windows-amd64-bin.zip https://get.gravitational.com/teleport-v(=teleport.version=)-windows-amd64-bin.zip
# Unzip the archive and move `tsh.exe` to your %PATH%
```
</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/includes/install-windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To install `tsh` on Windows, run the following commands in PowerShell:
# by default, so you need to convert it to a string
$ [System.Text.Encoding]::UTF8.getstring($Resp.Content)
# <checksum> <filename>
$ curl -O teleport-v(=teleport.version=)-windows-amd64-bin.zip https://get.gravitational.com/teleport-v(=teleport.version=)-windows-amd64-bin.zip
$ curl -o teleport-v(=teleport.version=)-windows-amd64-bin.zip https://get.gravitational.com/teleport-v(=teleport.version=)-windows-amd64-bin.zip
$ certUtil -hashfile teleport-v(=teleport.version=)-windows-amd64-bin.zip SHA256
# SHA256 hash of teleport-v(=teleport.version=)-windows-amd64-bin.zip:
# <checksum>
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ chart.
You can also fetch an installer via the command line:

```code
$ curl -O https://cdn.teleport.dev/teleport-(=teleport.version=).pkg
$ curl -o https://cdn.teleport.dev/teleport-(=teleport.version=).pkg
# Installs on Macintosh HD
$ sudo installer -pkg teleport-(=teleport.version=).pkg -target /
# Password:
Expand Down