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

Minor fix to PowerShell profile scripting example #196

Merged
merged 6 commits into from
Sep 16, 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
4 changes: 2 additions & 2 deletions docs/src/tutorial_cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ New-Item -Path $Profile -ItemType File -Force
Open the PowerShell code editor in your Azure portal by running the following command.

```powershell
code Microsoft.PowerShell_profile.ps1
code $Profile
```

### 3. Create a PowerShell profile for use with helper functions

Paste the following code into your Microsoft.PowerShell_profile.ps1 file.
Paste the following code into your '$Profile' ('Microsoft.PowerShell_profile.ps1') file.
Save, then restart the session.

```powershell
Expand Down