Remove posts from two categories in Archive Page

try this…

Not Tested

add_action("pre_get_posts","my_category_remove");

function my_category_remove($query)
{

if(is_archive()) {
$query->set('category__not_in', array(/*the categories (ID's) you wish not to show, comma separated*/));
}

return $query;
}

Reference