When saving the powerJobs settings dialog multiple settings that start with the same name are overridden with incorrect value

Issue

When a powerJobs setting starts with the name of another setting its value is changed to the value of the setting its name starts with, when the dialogue is saved

Example

$vault = "Something" 
$vaultUser = "Administrator"

When saving this will result in

$vault = "Something"
$vaultUser = "Something"

Solution

Ensure that no setting starts with the name of another setting.

Example

$vault = "Something" 
$vaultUser = "Administrator"

Change it to

$vaultName = "Something" 
$vaultUser = "Administrator"