Example #1
0
        private async Task <bool> TeamViewerInstalled()
        {
            try
            {
                var resultString = await deploy.AdvancedPowerShellScript(Resources.CheckForTVRegistryValue);

                var result = Convert.ToBoolean(resultString);
                return(result);
            }
            catch (FormatException)
            {
                return(false);
            }
        }