Import-CommandConfiguration
PowerShell Crescendo json dosyasını içeri aktarın.
Syntax
Import-CommandConfiguration
[-file] <String>
[<CommonParameters>]
Description
Bu cmdlet, platforma özgü komut için ara sunucu işlevi gören bir işleve dönüştürülebilen bir nesneyi dışarı aktarır. Sonuç nesnesi daha sonra PowerShell işlem hattına katılabilen bir yerel komutu çağırmak için kullanılabilir. ToString
Çıkış nesnesinin yöntemi, yerel komutu çağıran bir işlev oluşturmak için kullanılabilecek bir dize döndürür. Yerel komut tüm platformlardaysa Microsoft Windows, Linux ve macOS oluşturulan işlevi çalıştırabilir.
Örnekler
ÖRNEK 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 :
Parametreler
-file
Sarmalanacak komutu temsil eden JSON dosyası.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Girişler
None
Çıkışlar
A Command object
Notlar
tarafından Import-CommandConfiguration
döndürülen nesnesi yöntemi aracılığıyla ToString
dönüştürülür.
Genel olarak, bir PowerShell .psm1
dosyası oluşturmak için komutunu kullanmanız Export-CrescendoModule
gerekir.
İlişkili Bağlantılar
PowerShell