scripts/Save-IdentityNowConfiguration.ps1

function Save-IdentityNowConfiguration {
<#
.SYNOPSIS
    Saves default IdentityNow configuration to a file in the current users Profile.

.DESCRIPTION
    Saves default IdentityNow configuration to a file within the current
    users Profile. If it exists, this file is then read, each time the
    IdentityNow Module is imported. Allowing settings to persist between
    sessions.

.EXAMPLE
    Save-IdentityNowConfiguration

.LINK
    http://darrenjrobinson.com/sailpoint-identitynow
#>


    [CmdletBinding()]
    param ()

    Export-Clixml -Path $IdentityNowConfigurationFile -InputObject $IdentityNowConfiguration
}