perl -I/opt/rt4/lib -MRT -e’
RT::LoadConfig( ); RT::Init( );
my $u = RT::User->new($RT::SystemUser);
$u->Load(“root”);
print $u->PrincipalObj->GrantRight(
Object => $RT::System,
Right => “SuperUser”
);
‘
This will turn any RT user into a superuser. Replace root user with any other valid user.