Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
247967c
Fixes slow startup of `az` and `az devops`
jessehouwing Sep 14, 2023
6261205
Adds helpers to refresh the `$env:path`
jessehouwing Sep 19, 2023
cd78c1f
Uses environment functions from ImageHelpers
jessehouwing Sep 19, 2023
81b44e8
Copies Invoke-ValidateCommand from the mac helpers
jessehouwing Sep 19, 2023
3f65f32
Uses Invoke-ValidateCommand to configure az-zli and run warmup
jessehouwing Sep 19, 2023
82e0603
Switches '[int]` for `[uint]` on Windows PS5
jessehouwing Sep 19, 2023
d8ff5a1
Suppresses warning about experimental status of `az config`
jessehouwing Sep 20, 2023
c1b3d6b
Do not disable file logging for now.
jessehouwing Sep 20, 2023
0aacdc6
Update Install-AzureCli.ps1
jessehouwing Sep 20, 2023
3dd6743
Properly turns off survey messages
jessehouwing Sep 21, 2023
8d92ec2
Update Install-AzureCli.ps1
jessehouwing Sep 22, 2023
b85a098
Update Install-AzureDevOpsCli.ps1
jessehouwing Sep 22, 2023
6ff129b
Update Install-AzureDevOpsCli.ps1
jessehouwing Sep 22, 2023
10eaf15
fix quotes around dummy
jessehouwing Sep 22, 2023
67b4a8d
Imrpoves comment
jessehouwing Sep 22, 2023
ad59f07
How did that `uint` sneak back in...
jessehouwing Sep 22, 2023
7900076
Update Install-AzureDevOpsCli.ps1
jessehouwing Sep 22, 2023
129a955
Find python from the path of `az`
jessehouwing Sep 22, 2023
a67e883
And lets try ignoring the error to see what happens.
jessehouwing Sep 22, 2023
03dc291
Update Install-AzureDevOpsCli.ps1
jessehouwing Sep 22, 2023
e38336b
Update images/win/scripts/ImageHelpers/PathHelpers.ps1
jessehouwing Sep 29, 2023
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
Prev Previous commit
Update images/win/scripts/ImageHelpers/PathHelpers.ps1
Co-authored-by: Stijn Devogel <38946188+StijnDevogel@users.noreply.github.com>
  • Loading branch information
jessehouwing and StijnDevogel authored Sep 29, 2023
commit e38336b2d61ab2bd79eabd1d7726a200e505bda6
2 changes: 1 addition & 1 deletion images/win/scripts/ImageHelpers/PathHelpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function Get-UserVariable {
[string]$UserVariable
)

[System.Environment]::GetEnvironmentVariable($SystemVariable, "User")
[System.Environment]::GetEnvironmentVariable($UserVariable, "User")
}

function Get-SystemVariable {
Expand Down