save this as a .bat and run it. will output your SAB Settings and license, etc in 1 .reg file in C:\temp
<# :
@echo off
powershell /nologo /noprofile /command ^
"&{[ScriptBlock]::Create((cat """%~f0""") -join [Char[]]10).Invoke(@(&{$args}%*))}"
exit /b
#>
New-Item -Path "c:\temp" -Name "dump" -ItemType "directory" -ErrorAction SilentlyContinue
$keys = Get-ChildItem -path HKCU:\software\StartIsBack, HKLM:\software\StartIsBack
$tempFolder = 'C:\temp\dump'
$outputFile = 'C:\temp\Output.reg'
$i = 1;
$keys | ForEach-Object {
$i++
& reg export $_ "$tempFolder\$i.reg"
}
'Windows Registry Editor Version 5.00' | Set-Content $outputFile
Get-Content "$tempFolder\*.reg" | Where-Object {
$_ -ne 'Windows Registry Editor Version 5.00'
} | Add-Content $outputFile
Remove-Item C:\temp\dump -Recurse