We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed61899 commit 9675a60Copy full SHA for 9675a60
1 file changed
Helpers/CompatChecks/ThirdPartyAppxCCP.vb
@@ -14,11 +14,7 @@ Namespace Helpers.CompatChecks
14
Dim Appxs() As String = thirdPartyAppxsRk.GetSubKeyNames()
15
thirdPartyAppxsRk.Close()
16
If Appxs.Count > 0 Then
17
- Dim appxStr As String = ""
18
- For Each Appx In Appxs
19
- appxStr &= String.Format("{0}, ", Appx)
20
- Next
21
- appxStr = appxStr.TrimEnd(", ")
+ Dim appxStr As String = String.Join(", ", Appxs)
22
Status.Compatible = True
23
Status.StatusMessage = New Classes.StatusMessage("Third-party Microsoft Store app checks",
24
"Some packages that may only be registered to this user account have been detected. Sysprep may fail to run.",
0 commit comments