我正在尝试配置现有ODBC DSN的属性。工作示例代码:
$properties = @('server=myserver1', 'description=sql server 2008')
Set-OdbcDsn -Name 'TestDSN' -SetPropertyValue $properties -DsnType System
这有效,server
和description
是有效输入。我的问题是:如何找到-SetPropertyValue
接受的属性列表?如果我使用:
Set-OdbcDsn -Name 'TestDSN' -SetPropertyValue = @('foobar=myserver2') -DsnType System
出于明显的原因,这不起作用。它返回错误Set-OdbcDsn : Invalid keyword-value pairs
我检查了this Powershell参考,但没有帮助。
如何找到-SetPropertyValue
的有效关键字名?