This cmdlet imports configuration-pattern settings into Lenovo XClarity Administrator.
Import-LXCAConfigPattern [-Connection Connection]
-Settings String
[CommonParameter]
To ensure the correct format, use an existing configuration pattern as a template.
This cmdlet returns the ID of the imported configuration pattern.
The following example imports the configuration-pattern settings from a local file to the XClarity Administrator server
$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred
$settings = Get-Content Path c:\pattern_setting.txt
Import-LXCAConfigPattern Setting $settings
Disconnect-LXCA