external help file | Module Name | online version | schema |
---|---|---|---|
PSKoans-help.xml |
PSKoans |
2.0.0 |
Retrieves the configuration settings for PSKoans.
Get-PSKoanSetting [[-Name] <String>] [<CommonParameters>]
Retrieves configuration data from the locally stored json file in $HOME/.config/PSKoans
.
Get-PSKoanSetting
Retrieves all module settings.
Get-PSKoanSetting -Name LibraryFolder
Retrieves the library folder location (also retrievable with Get-PSKoanLocation
).
Get-PSKoanSetting -Name Editor
Retrieves the text editor that PSKoans will use for Show-Karma -Contemplate
.
Specifies which setting value to retrieve.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
When a specific setting is requested, returns only the value of that setting, which will usually be a string.
When all settings are requested, returns an object with properties representing each setting.
Author: Joel Sallow (@vexx32)