Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update PowerShell usage and version info #252

Merged
merged 1 commit into from
Nov 20, 2024
Merged
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
12 changes: 11 additions & 1 deletion src/react/docs/app-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,23 @@ This PowerShell cmdlet tool provides essential checks to confirm a strong securi

## How do I access it?

It is a PowerShell cmdlet. You can access it from your PowerShell command line by invoking:
It is a PowerShell cmdlet. If this is the first time you are running the assessment, you can access it from your PowerShell command line by invoking:

```PowerShell
Install-Module ZeroTrustAssessment
Invoke-ZTAssessment
```

For subsequent runs of the assessment, use `Import-Module` instead:

```PowerShell
Import-Module ZeroTrustAssessment
Invoke-ZTAssessment
```

## What version of PowerShell do I need?

This app uses PowerShell 7.0 or higher. It will not run if you have a version of PowerShell below 7.0. You can download PowerShell 7.0 [here](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.4)

## How does this app work?

Expand Down
Loading