def is_server_installed()

in assets/scripts/SilentInstaller.py [0:0]


def is_server_installed():
    ''' Checks if there is an existing installation of Tableau Server '''

    out = subprocess.check_output(['sc', 'query', 'type=', 'service', 'state=', 'all'])
    return ('Tableau Server' in str(out))