我試圖用PowerShell來導入以下數據:導入多個IP地址
Name AllowedIPAddresses Enabled
activeDirectoryAll {AA.BB.28.1,AA.BB.28.2,AA.BB.124.1,AA.BB.124.2} TRUE
CIMHttpServer {AA.BB.134.77} TRUE
CIMHttpsServer {AA.BB.134.77} TRUE
CIMSLP {AA.BB.21.128/26} TRUE
cmmds {All} FALSE
dhcp {All} FALSE
當我導入AllowedIPAddresses
到一個數組用命令
$Srcdata = Import-Csv -Path $SrcFWFile
該數據具有以下類型:
AllowedIPAddresses NoteProperty System.String AllowedIPAddresses={All}
但是日期需要是這種類型:
AllowedIPAddresses NoteProperty System.Object[] AllowedIPAddresses=System.Object[]
如何操作此列,這樣我可以一個System.Object
中插入這些爲多個IP地址?
是您的輸入文件逗號分隔? – DarkLite1