Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 8fa5c3f

Browse files
fix if statement
1 parent 3a9656a commit 8fa5c3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PreInstall/TeamMachineSetup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function fetchUserData {
5555
}
5656
)
5757
if ($metadata.StatusCode -eq 200) {
58-
if ($NULL -like "$metadata.Content") {
58+
if ($NULL -ne "$metadata.Content") {
5959
if ($stream -eq "bytes") {
6060
[System.Text.Encoding]::ASCII.GetString($metadata.content).split(':')
6161
}

0 commit comments

Comments
 (0)