Skip to content

Commit

Permalink
Reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgw committed May 13, 2022
1 parent 7877c5d commit 18c0c22
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/DSCResources/DSC_Computer/DSC_Computer.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,18 @@ function Get-TargetResource
$convertToCimCredential = New-CimInstance `
-ClassName DSC_Credential `
-Property @{
Username = [System.String] $Credential.UserName
Password = [System.String] $null
} `
Username = [System.String] $Credential.UserName
Password = [System.String] $null
} `
-Namespace root/microsoft/windows/desiredstateconfiguration `
-ClientOnly

$convertToCimUnjoinCredential = New-CimInstance `
-ClassName DSC_Credential `
-Property @{
Username = [System.String] $UnjoinCredential.UserName
Password = [System.String] $null
} `
Username = [System.String] $UnjoinCredential.UserName
Password = [System.String] $null
} `
-Namespace root/microsoft/windows/desiredstateconfiguration `
-ClientOnly

Expand Down

0 comments on commit 18c0c22

Please sign in to comment.