import subprocess

def get_timezone():
    """Extract the current time zone settings of the workstation."""
    try:
        # Run the command to get the time zone info using tzutil
        result = subprocess.check_output(['tzutil', '/g'], stderr=subprocess.STDOUT)
        # Decode the byte output to a string 
        timezone = result.strip()
        print "Current Time Zone:", timezone
        return timezone
    except subprocess.CalledProcessError as e:
        print "Error occurred while fetching time zone:", e.output
    except Exception as e:
        print "An unexpected error occurred:", str(e)

if __name__ == "__main__":
    get_timezone()
