共用方式為


Import-PowerShellDataFile

從匯入值。PSD1 檔案,而不叫用其內容

語法

Import-PowerShellDataFile
      [[-Path] <String[]>]
      [<CommonParameters>]
Import-PowerShellDataFile
      [-LiteralPath <String[]>]
      [<CommonParameters>]

Description

Import-PowerShellDataFile Cmdlet 會傳回哈希表,其中包含 中的索引鍵/值組。PSD1 檔案。

範例

範例 1:從 PSD1 擷取值

$content = Import-PowerShellDataFile .\Configuration.psd1
$content

Name                           Value
----                           -----
key1                           value1
key2                           value2

此範例會擷取儲存在 Configuration.psd1 檔案內之哈希表中的機碼/值組。

參數

-LiteralPath

要匯入之檔案的路徑。 路徑中的所有字元都會被視為常值。 不會處理通配符。

類型:String[]
別名:PSPath
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Path

要匯入之檔案的路徑。 允許通配符,但只會匯入第一個相符的檔案。

類型:String[]
Position:0
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:True