You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Since the module more or less relies on a config step, it'd be nice to have a wrapper for Get-PSFConfig -Module dbaclone to abstract the usage of the third party module involved.
This would make it easy to automate checking if the config needs to be (re)set, without making someone dig into the otherwise un-exposed usage of PowerShell Framework to handle the config metadata for the module. This could be helpful on CI build agents which might have harder resets or have new machines swapped out consistently.
An example might be:
if (-not(Get-DcnConfiguration)) {
Set-DcnConfiguration ...
}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Since the module more or less relies on a config step, it'd be nice to have a wrapper for
Get-PSFConfig -Module dbaclone
to abstract the usage of the third party module involved.This would make it easy to automate checking if the config needs to be (re)set, without making someone dig into the otherwise un-exposed usage of PowerShell Framework to handle the config metadata for the module. This could be helpful on CI build agents which might have harder resets or have new machines swapped out consistently.
An example might be:
The text was updated successfully, but these errors were encountered: