Public/DefaultConfigCommands/Reset-RpConfigCommandDefaults.ps1
function Reset-RpConfigCommandDefaults { <# .SYNOPSIS Resets the RemotePro configuration to default values. .DESCRIPTION This function removes existing configuration files and creates new default configuration files for RemotePro. Set-RpConfigCommands and Set-RpDefaultConfigCommandIds are called to populate the RemotePro.ConfigCommands and RemotePro.ConfigCommandDefaultIds properties. In the RpControllerObject, these properties are used to store the configuration commands and their default ids. .COMPONENT DefaultConfigCommands .EXAMPLE Reset-RpConfigCommandDefaults .LINK https://www.remotepro.dev/en-US/Reset-RpConfigCommandDefaults #> [CmdletBinding()] param() process { try { # Remove the configuration files if (Test-Path -Path (Get-RpConfigPath)){ Remove-Item -Path (Get-RpConfigPath) } if (Test-Path -Path (Get-RpConfigPath -DefaultIds)){ Remove-Item -Path (Get-RpConfigPath -DefaultIds) } if (-not (Test-Path -Path $(Get-RpConfigPath))){ New-RpConfigCommandJson -Type DefaultJson } Set-RpConfigCommands #Populate ConfigCommands Set-RpDefaultConfigCommandIds #Populate ConfigCommandDefaultIds } catch { Write-Error $_.Exception.Message } } end {} } |