Skip to content

Commit

Permalink
DevCheck: Start the TAEFService if we install it (#4859)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrusTheAxe authored Nov 8, 2024
1 parent b9065d8 commit 6a5ac0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/DevCheck/DevCheck.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ function Repair-DevTestPfx
$passwordLength = 20
$password = New-Object -TypeName System.Security.SecureString
# Generate random characters and append to SecureString
for ($i = 0; $i -lt $passwordLength; $i++)
for ($i = 0; $i -lt $passwordLength; $i++)
{
$randomChar = $charSet[(Get-Random -Maximum $charSet.Length)]
$password.AppendChar($randomChar)
Expand Down Expand Up @@ -1649,6 +1649,7 @@ if (($CheckAll -ne $false) -Or ($CheckTAEFService -ne $false))
if ($test -eq 'NotFound')
{
$test = Install-TAEFService
$test = Start-TAEFService
}
elseif ($test -eq 'NotRunning-OlderVersion')
{
Expand Down

0 comments on commit 6a5ac0c

Please sign in to comment.