Hi Snowman, I believe the user time zone is defaulted from the site's time zone, which is located at the top of Administration, Site Settings. To mass update your users' time zones, you could use SQL like this (example only):
update mp_users set TimeZoneId = 'Pacific Standard Time' where TimeZoneId <> 'Pacific Standard Time' or TimeZoneId is NULL;
Jamie