有没有人使用过这个来自https://www.powershellgallery.com/packages/ConnectWiseManageAPI/0.4.9.0的cmdlet ?
new-cwmcompanyconfiguration
我的问题来自它要求一些必要的参数作为哈希表。我不太确定我需要什么值。不幸的是,我无法找到任何在线使用的代码示例。
我的例子:
$Company = '250'
$name = 'API Test Device'
$type = "Servers - Linux"
$info = "test"
$IPaddress = 'test'
$ostype = 'test'
$serialnumber = 'test'
New-CWMCompanyConfiguration -company $company -name $name -type $type -_info $info -ipAddress $IPaddress -osType $ostype -serialNumber $serialnumber -verbose
它想要公司,类型和信息作为哈希表,不确定要给它提供什么键/值对
我必须检查Get-CWMCompanyConfiguration返回的配置的格式
Example of what worked:
$company = @{"id"="250"}
$name = 'API Test Device'
$type = @{"name"="Servers - Linux"}
$IPaddress = "123.123.123.123"
$ostype = "Test"
$serialnumber = "Test"
New-CWMCompanyConfiguration -company $company -name $name -type $type -ipAddress $IPaddress -osType $ostype -serialNumber $serialnumber