Import-CommandConfiguration
PowerShell Crescendo json ファイルをインポートします。
構文
Import-CommandConfiguration
[-file] <String>
[<CommonParameters>]
説明
このコマンドレットは、プラットフォーム固有のコマンドのプロキシとして機能する関数に変換できるオブジェクトをエクスポートします。 その後、結果の オブジェクトを使用して、PowerShell パイプラインに参加できるネイティブ コマンドを呼び出すことができます。 出力オブジェクトの メソッドは ToString
、ネイティブ コマンドを呼び出す関数を作成するために使用できる文字列を返します。 ネイティブ コマンドがすべてのプラットフォーム上にある場合、Microsoft Windows、Linux、および macOS は、生成された関数を実行できます。
例
例 1
Import-CommandConfiguration ifconfig.crescendo.json
Verb : Invoke
Noun : ifconfig
OriginalName : ifconfig
OriginalCommandElements :
Aliases :
DefaultParameterSetName :
SupportsShouldProcess : False
SupportsTransactions : False
NoInvocation : False
Description : This is a description of the generated function
Usage : .SYNOPSIS
Run invoke-ifconfig
Parameters : {[Parameter()]
[string]$Interface = ""}
Examples :
OriginalText :
HelpLinks :
OutputHandlers :
パラメーター
-file
ラップするコマンドを表す JSON ファイル。
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
入力
None
出力
A Command object
メモ
によって Import-CommandConfiguration
返されるオブジェクトは、 メソッドを ToString
介して変換されます。
一般に、 を Export-CrescendoModule
使用して PowerShell .psm1
ファイルを作成する必要があります。
関連リンク
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
PowerShell