public bool TryRemoveEnvironment(string name, out IAzureEnvironment environment)
        {
            bool result = Profile.TryRemoveEnvironment(name, out environment);
            IAzureEnvironment other;

            DefaultProfile.TryRemoveEnvironment(name, out other);
            return(result);
        }