This mod only affects create_account.php. For new accounts it will default the country selection list to the country of your choice.
Legend: 
Download

Report
Default country also needs to affect the New Shipping Address page. This file adds the instructions to do this.
Based on the admin_default_country file issued by portalplanet
Ho aggiornato il file sql in Italiano devi comunque settare sulle configurazioni il paese di default " Italy"
I created this also but I used the admin area to define the default country so that it is not hard coded.
Justin Rains
http://demo.portalplanet.us/
This mod should also affect Address_Book_Details.php
I'm not exactly sure how to incorporate it into this mod but this is what I did to default to the united states.
In addition, you'll also have edit /includes/modules/address_book_details.php to change the following line:
<td class="main"><?php echo tep_get_country_list('country', $entry['entry_country_id']) . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>': ''); ?></td>
to:
<td class="main"><?php echo (($entry['entry_country_id'] == '') ? tep_get_country_list('country', 223) : tep_get_country_list('country', $entry['entry_country_id'])) . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>': ''); ?></td>
This mod only affects create_account.php. For new accounts it will default the country selection list to the country of your choice.