fix indent
This commit is contained in:
parent
9fcba83eb2
commit
16bbc678dd
|
@ -45,7 +45,7 @@ Try {
|
|||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$module = ${env:ProgramFiles} + "\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1"
|
||||
If (!(Test-Path $module)) {
|
||||
If (-Not (Test-Path $module)) {
|
||||
$module = ${env:ProgramFiles(x86)} + "\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1"
|
||||
}
|
||||
Import-Module $module
|
||||
|
|
|
@ -45,7 +45,7 @@ Try {
|
|||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$module = ${env:ProgramFiles} + "\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1"
|
||||
If (!(Test-Path $module)) {
|
||||
If (-Not (Test-Path $module)) {
|
||||
$module = ${env:ProgramFiles(x86)} + "\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1"
|
||||
}
|
||||
Import-Module $module
|
||||
|
|
Loading…
Reference in New Issue