How to list all subcategories from all categories but not from a certain category

Well, according to official documentation, you should pass depth argument inside your function.

As it’s written here

Try this:

  <?php wp_list_categories( array(
    'orderby'=> 'id',
    'order' => 'DESC',
    'show_count' => false,
    'use_desc_for_title' => false,
    'title_li' => '',
    'depth; => 1
   ) ); ?>