<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta name="description" content="Knowledgebase at EEG Info"/>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <title>Tech Support | EEG Info</title>

        <!-- Importing CSS Stylesheets Properly -->
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
        <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300" rel="stylesheet" type="text/css" />
        <link rel="stylesheet" type="text/css" href="/css/knowledgebase.css" />

        <style>
            .knowledgebase h5 {
                font-size: 18px;
                text-transform: inherit;
                margin: 0 0 15px 0;
            }
        </style>

        <script type="text/javascript" src="/tech-support/js/angular.js"></script>
        <script type="text/javascript" src="/tech-support/js/knowledgebase.js"></script>
        <!-- Server Details

Server Name: eegmain0
-->

<!--  -->
		<!--


FIRST SET --
ctxPath: //www.eeginfo.com/
cwsPath: 
shopPath: //store.eeginfo.com/shoppingcart


-->

<base href="//www.eeginfo.com/" /><!-- with the base path set we can safely have the same urls for the files below on any page, as well as normalize other html requests, like images. -->

<!--


SECOND SET --
ctxPath: //www.eeginfo.com/
cwsPath: //cws.eeginfo.com/centralservices
shopPath: //store.eeginfo.com/shoppingcart
mainSitePath: //www.eeginfo.com
cwsJSCorePath: //cws.eeginfo.com/centralservices/cdn/js/core
-->

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<!-- <script type="text/javascript" src="//code.jquery.com/jquery-1.11.2.min.js"></script> -->
<script type="text/javascript" src="//code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.js"></script>
<!-- <script type="text/javascript" src="https://code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script> -->
<script type="text/javascript" src="//code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>

<link href="css/fonts/titillium-web/css/fonts.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300' rel='stylesheet' type='text/css'>

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>

<script type="text/javascript">
	var _logout = function () {
		$.post('//www.eeginfo.com/rest/eegLoginService/logout', function () {
//			location.reload();
			location.href = '//www.eeginfo.com/member/login.do';
		});
	};

</script>
<script>
	(function (i, s, o, g, r, a, m) {
		i['GoogleAnalyticsObject'] = r;
		i[r] = i[r] || function () {
			(i[r].q = i[r].q || []).push(arguments)
		}, i[r].l = 1 * new Date();
		a = s.createElement(o),
				  m = s.getElementsByTagName(o)[0];
		a.async = 1;
		a.src = g;
		m.parentNode.insertBefore(a, m)
	})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');

	ga('create', 'UA-1013533-1', 'auto');
	ga('send', 'pageview');

	var basePath = '//www.eeginfo.com/';//This is set into the js so we know the basePath for functions like loadPage
</script>

<script type="text/javascript" src="//cws.eeginfo.com/centralservices/cdn/js/core/date.js"></script>
<script type="text/javascript" src="//cws.eeginfo.com/centralservices/cdn/js/core/logger.js"></script>
<script type="text/javascript" src="//cws.eeginfo.com/centralservices/cdn/js/core/cws.min.js"></script>

<script type="text/javascript" src="//cws.eeginfo.com/centralservices/cdn/js/core/ModelView.js"></script>
<script type="text/javascript" src="//cws.eeginfo.com/centralservices/cdn/js/core/models/Cart.js"></script>
<script type="text/javascript" src="//store.eeginfo.com/shoppingcart/js/models/Cart.js"></script>
<script type="text/javascript">
            $(function () {
                $('.ta-insert-video').each(function () {
                    var $this = $(this);
                    var vidAttr = $(this).attr('ta-insert-video');
                    if (vidAttr && vidAttr.match('youtube')) {
                        $('<iframe width="560" height="315" src="' + vidAttr + '" frameborder="0" allowfullscreen></iframe>').insertAfter($this);
                        $this.hide();
                        $('a[href="https://www.youtube.com/watch?v=' + vidAttr.split('/embed/')[1] + '"]').hide();
                    }
                });
            });
        </script>
    </head>
    <body>
        <script type="text/javascript" src="//www.eeginfo.com/js/nav.js"></script>
<link rel="stylesheet" type="text/css" href="//www.eeginfo.com/css/nav.css" />
<script type="text/javascript">
	$(document).ready(function () {
		/*
		 "Hovernav" navbar dropdown on hover
		 Uses jQuery Media Query - see http://www.sitepoint.com/javascript-media-queries/
		 */
		var mq = window.matchMedia('(min-width: 900px)');
		if (mq.matches) {
			$('ul.navbar-nav > li').addClass('hovernav');
			$('ul.navbar-nav > li').removeClass('open');
		} else {
			$('ul.navbar-nav > li').removeClass('hovernav');
			$('ul.navbar-nav > li.dropdown > a').click(function (e) {
				e.preventDefault();
			});
		}
		;
		/*
		 The addClass/removeClass also needs to be triggered
		 on page resize <=> 768px
		 */
		if (matchMedia) {
			var mq = window.matchMedia('(min-width: 900px)');
			mq.addListener(WidthChange);
			WidthChange(mq);
		}
		function WidthChange(mq) {
			if (mq.matches) {
				$('ul.navbar-nav > li').addClass('hovernav');
				$('ul.navbar-nav > li').removeClass('open');
				// Restore "clickable parent links" in navbar
				$('.hovernav a').click(function () {
					window.location = this.href;
				});
			} else {
				$('ul.navbar-nav > li').removeClass('hovernav');
				$('ul.navbar-nav > li.dropdown > a').click(function (e) {
					e.preventDefault();
				});
			}
		}
		;
		// Restore "clickable parent links" in navbar
		$('.hovernav a').click(function () {
			window.location = this.href;
		});

		$('.logoutLink').css('cursor', 'pointer').click(function (e) {
			e.preventDefault();
			_logout();
		});
	});
</script>
<div id="container" class="container">
	<a class="sr-only sr-only-focusable" href="#content">Skip to main content</a>
	<div id="header">
		<div class="row">
			<div class="col-sm-4 col-xs-6">

				<a id="logoLink" href="https://eeginfo.com">EEG Info</a>
				</div>
			<div id="socialMedia" class="col-sm-4 col-xs-6 col-sm-offset-4">
<!--				<a href="https://www.facebook.com/eeginstitute" target="_blank">
					<img src="//www.eeginfo.com/images/facebook_grey.jpg" alt="Find us on Facebook" style="width:22px; height:22px; border:none; margin-right:5px;">
				</a>-->
				<!--				<span>
									<script src="//platform.linkedin.com/in.js" type="text/javascript"></script>
									<script type="IN/CompanyProfile" data-id="2697937" data-format="hover" data-related="false"></script>
								</span>-->

				</div>


		</div>

		<nav class="navbar navbar-default">
			<div class="">
				<div class="navbar-header">
					<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#mainNav">
						<span class="sr-only">Toggle navigation</span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
					</button>
					<a class="navbar-brand" href="//www.eeginfo.com">EEG Info</a>
				</div>
				<div class="collapse navbar-collapse" id="mainNav">
					<!-- http://alijafarian.com/bootstrap-multi-column-dropdown-menu/ -->
					<ul class="nav navbar-nav">
						<li class="dropdown">
							<a href="//www.eeginfo.com/what-is-neurofeedback.jsp" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
								What is neurofeedback?
								<span class="caret"></span>
							</a>
							<div class="dropdown-menu multi-column columns-2" role="menu">
								<div class="row">
									<div class="col-sm-7 col-xs-12">
										<ul class="multi-column-dropdown">
											<li><a href="//www.eeginfo.com/what-is-neurofeedback.jsp">How it Works</a></li>
											<li><a href="//www.eeginfo.com/research/">Research</a></li>
											<li><a href="//www.eeginfo.com/member/directory.do">Find a Provider</a></li>
											<li><a href="https://news.eeginfo.com/">Newsletter</a></li>
											<li><a href="//www.eeginfo.com/neurofeedback-videos-media.jsp">News &amp; Media</a></li>
											<li><a href="//www.eeginfo.com/reading/#sues-book-corner">Sue&#39;s Book Corner</a></li>
										</ul>
									</div>
									<div class="col-sm-5 col-xs-12">
										<a class="eegHomeLink" href="//www.eeginfo.com/neurofeedback-videos-media.jsp">
											<img src="//www.eeginfo.com/images/winf-navthumb.jpg" alt="Watch videos" />
											<br>Watch Videos
										</a>
									</div>
								</div>
							</div>
						</li>
						<li class="dropdown">
							<a href="//www.eeginfo.com/courses/" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
								Education
								<span class="caret"></span>
							</a>
							<div class="dropdown-menu multi-column columns-2" role="menu">
								<div class="row">
									<div class="col-sm-7 col-xs-12">
										<ul class="multi-column-dropdown">
											<li><a href="//www.eeginfo.com/othmer-method-neurofeedback-certification/index.jsp">Othmer Method Certification</a></li>
											<li><a href="//www.eeginfo.com/courses/clinical-practice.jsp">Introductory Courses</a></li>
											<li><a href="//www.eeginfo.com/courses/mastering-neurofeedback-and-the-othmer-method.jsp">Mastering Neurofeedback</a></li>
											<li><a href="//www.eeginfo.com/courses/next-level-neurofeedback.jsp">Next Level Neurofeedback</a></li>
											<li><a href="//www.eeginfo.com/courses/synchrony.jsp">Synchrony</a></li>
											<li><a href="//www.eeginfo.com/courses/alpha-theta.jsp">Alpha Theta</a></li>
											<li><a href="//www.eeginfo.com/courses/clinical-summit.jsp">Advanced Clinical Summit</a></li>
											<li><a href="//www.eeginfo.com/courses/ondemand-course.jsp">OnDemand Introductory Training</a></li>
											<li><a href="//www.eeginfo.com/courses/video-education.jsp">Video Library</a></li>
											<li><a href="//www.eeginfo.com/reading/#sues-book-corner">Sue&#39;s Book Corner</a></li>
										</ul>
									</div>
									<div class="col-sm-5 col-xs-12">
										<a class="eegHomeLink" href="https://shop.eeginfo.com/collections/training-courses">
											<img src="//www.eeginfo.com/images/education-navthumb.jpg" alt="Enroll Today" />
											<br>Enroll Today
										</a>
									</div>
								</div>
							</div>
						</li>
						<li class="dropdown">
							<a href="//www.eeginfo.com/institute/" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
								The Clinic
								<span class="caret"></span>
							</a>
							<div class="dropdown-menu multi-column columns-2" role="menu">
								<div class="row">
									<div class="col-sm-7 col-xs-12">
										<ul class="multi-column-dropdown">
											<li><a href="//www.eeginfo.com/institute/clinicalservices.jsp">Clinical Services</a></li>
											<li><a href="//www.eeginfo.com/institute/testimonials.jsp">Testimonials</a></li>
											<li><a href="//www.eeginfo.com/institute/our-clinicians.jsp">Meet the Clinicians</a></li>
											<li><a href="//www.eeginfo.com/institute/contact-institute.jsp">Schedule a Consultation</a></li>
										</ul>
									</div>
									<div class="col-sm-5 col-xs-12">
										<a class="eegHomeLink" href="//www.eeginfo.com/institute/contact-institute.jsp">
											<img src="//www.eeginfo.com/images/clinic-navthumb.jpg" alt="Contact Us" />
											<br>Contact Us
										</a>
									</div>
								</div>
							</div>
						</li>
						<li>
							<a href="//www.eeginfo.com/member/directory.do">Find a Provider</a>
						</li>
						<li class="dropdown">
							<a href="//www.eeginfo.com/research/" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
								Research
								<span class="caret"></span>
							</a>
							<div class="dropdown-menu multi-column columns-2" role="menu">
								<div class="row">
									<div class="col-sm-7 col-xs-12">
										<ul class="multi-column-dropdown">
											<li><a href="//www.eeginfo.com/research/adhd_main.jsp">ADHD</a></li>
											<li><a href="//www.eeginfo.com/research/autism_main.jsp">Autism</a></li>
											<li><a href="//www.eeginfo.com/research/ptsd_main.jsp">PTSD</a></li>
											<li><a href="//www.eeginfo.com/research/depression_main.jsp">Depression</a></li>
										</ul>
									</div>
									<div class="col-sm-5 col-xs-12">
										<a class="eegHomeLink" href="//www.eeginfo.com/research/index.jsp">
											<img src="//www.eeginfo.com/images/research-navthumb.jpg" alt="View All Topics" />
											<br>View All Topics
										</a>
									</div>
								</div>
							</div>
						</li>
						<li class="dropdown">
							<a href="//www.eeginfo.com/member/" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
								Member Services
								<span class="caret"></span>
							</a>
							<div class="dropdown-menu multi-column columns-2" role="menu">
								<div class="row">
									<div class="col-sm-7 col-xs-12">
										<ul class="multi-column-dropdown">
											<li><a class="loginLink" href="//www.eeginfo.com/member">Sign in</a></li>
													<li><a href="//www.eeginfo.com/member/pricing.jsp">Join Professional Membership</a></li>
											<li><a href="//www.eeginfo.com/tech-support/">Tech Support</a></li>
											<!--<li><a href="//www.eeginfo.com/knowledgebase/remote.jsp">Remote Tech Support</a></li>-->
											<li><a href="http://www.homecoming4veterans.org/become-clinician.html">Join Homecoming for Veterans</a></li>
											<li><a href="//www.eeginfo.com/member/dashboard/listing.jsp">Manage Directory Listing</a></li>
										</ul>
									</div>
									<div class="col-sm-5 col-xs-12">
										<a class="eegHomeLink" href="//www.eeginfo.com/member/pricing.jsp">
											<img src="//www.eeginfo.com/images/directory-navthumb.jpg" alt="Join Directory" />
											<!--<br>Join Directory-->
										</a>
									</div>
								</div>
							</div>
						</li>
						<li>
							<a href="https://shop.eeginfo.com/">Shop</a>
						</li>
						<li class="eeg-nav-cart">
							<a href="https://shop.eeginfo.com/cart"><span class="eeg-nav-cart-icon"><i class="fa fa-shopping-cart" aria-hidden="true"></i> <span class="cartItems"></span></span></a>
						</li>
					</ul>
				</div>
			</div>
		</nav>
	</div>
	<a name="content"></a>
</div>

<div class="provider-mobile"><a href="//www.eeginfo.com/member/directory.do" class="provider-link-mobile" >find a provider</a></div>

<style type="text/css">
	.eeg-nav-cart {
		display: none;
	}
	.eeg-nav-cart-icon {
		display: none;
		position: relative;
		top: 2px;
		/*color: #45b4b8 !important;*/
	}
	.eeg-nav-cart-icon, .cartItems {
		font-size: 16px;
	}
	.hovernav .eeg-nav-cart-icon, .hovernav .cartItems {
		color: #333;
	}
	li.eeg-nav-cart:hover,  .eeg-nav-cart:hover .eeg-nav-cart-icon ,  .eeg-nav-cart:hover .cartItems {
		color: #fff;
	}

</style>

<script type="text/javascript">
	var nCartItems = 0;//sCart.info.products ? sCart.info.products.length : 0;

	function updateCartTotals() {
		try {
			if (!sCart) return;
			sCart.fromCookie();
			nCartItems = 0;
			if (sCart.info.products && sCart.info.products.length > 0) {
				for (var i = 0; i < sCart.info.products.length; i++) {
					var scip = sCart.info.products[i];
					if (scip && scip.quantity) {
						nCartItems += parseInt(scip.quantity);
					} else if (scip.prodId) {
						nCartItems++;
					}
				}
			}
			//Devin, nCartItems is correct now.

			$('#cartItems, .cartItems').html(nCartItems);// + ' Cart Item' + (nCartItems != 1 ? 's' : '')
			if (nCartItems > 0) {
				$('.eeg-nav-cart, .eeg-nav-cart-icon').show();
			}
		} catch (err) {
			console.warn(err);
		}

	}
	$(function () {
		updateCartTotals();
	});
</script>
<!--<script type="text/javascript" src="//www.eeginfo.com/js/nav.js"></script>
<link rel="stylesheet" type="text/css" href="//www.eeginfo.com/css/nav.css" />-->
<script type="text/javascript">
//	var navMeId = '';
//	$(function () {
//		$('#mainNav').nav([{
//				name: 'what is neurofeedback?',
//				href: '//www.eeginfo.com/what-is-neurofeedback.jsp',
//				img: '//www.eeginfo.com/images/winf-navthumb.jpg',
//				subImgLink: {
//					name: 'Watch Videos',
//					href: '//www.eeginfo.com/neurofeedback-videos-media.jsp'
//				},
//				menu: [{
//						name: 'How it Works',
//						href: '//www.eeginfo.com/what-is-neurofeedback.jsp'
//					}, {
//						name: 'Research',
//						href: '//www.eeginfo.com/research/index.jsp'
//					}, {
//						name: 'Find a Provider',
//						href: 'http://eeginfo.com/member/directory.do'
//					}, {
//						name: 'Newsletter',
//						href: 'http://news.eeginfo.com/'
//					}, {
//						name: 'News &amp; Media',
//						href: '//www.eeginfo.com/neurofeedback-videos-media.jsp'
//					}, {
//						name: 'Sue&#39;s Book Corner',
//						href: '//www.eeginfo.com/reading/#sues-book-corner'
//					}
//				]
//			}, {
//				name: 'education',
//				href: '//www.eeginfo.com/courses/index.jsp',
//				img: '//www.eeginfo.com/images/education-navthumb.jpg',
//				subImgLink: {
//					name: 'Enroll Today',
//					href: '//store.eeginfo.com/shoppingcart/category/trainingcourses.do'
//				},
//				menu: [{
//						name: 'Othmer Method Certification',
//						href: '//www.eeginfo.com/othmer-method-neurofeedback-certification/index.jsp'
//					}, {
//						name: 'Introductory Course',
//						href: '//www.eeginfo.com/courses/clinical-practice.jsp'
//					}, {
//						name: 'Advanced Clinical Summit',
//						href: '//www.eeginfo.com/courses/clinical-summit.jsp'
//					}, {
//						name: 'Practicum Weekends',
//						href: '//www.eeginfo.com/courses/practicum-weekends.jsp'
//					}, {
//						name: 'Practicum Weeks',
//						href: '//www.eeginfo.com/courses/practicum-weekends.jsp'
//					}, {
//						name: 'OnDemand Introductory Training',
//						href: '//www.eeginfo.com/courses/ondemand-course.jsp'
//					}, {
//						name: 'Complete Training Program',
//						href: '//www.eeginfo.com/courses/complete-training-package.jsp'
//					}, {
//						name: 'Video Library',
//						href: '//www.eeginfo.com/courses/video-education.jsp'
//					}, {
//						name: 'Special Events',
//						href: '//www.eeginfo.com/courses/speaker-series.jsp'
//					}, {
//						name: 'Sue&#39;s Book Corner',
//						href: '//www.eeginfo.com/reading/#sues-book-corner'
//					}
//				]
//			}, {
//				name: 'the clinic',
//				href: '//www.eeginfo.com/institute/index.jsp',
//				img: '//www.eeginfo.com/images/clinic-navthumb.jpg',
//				subImgLink: {
//					name: 'Contact Us',
//					href: '//www.eeginfo.com/institute/contact-institute.jsp'
//				},
//				menu: [{
//						name: 'Clinical Services',
//						href: '//www.eeginfo.com/institute/clinicalservices.jsp'
//					}, {
//						name: 'Testimonials',
//						href: '//www.eeginfo.com/institute/testimonials.jsp'
//					}, {
//						name: 'Meet the Clinicians',
//						href: '//www.eeginfo.com/institute/our-clinicians.jsp'
//					}, {
//						name: 'Schedule a Consultation',
//						href: '//www.eeginfo.com/institute/contact-institute.jsp'
//					}
//				]
//			}, {
//				name: 'find a provider',
//				href: 'http://eeginfo.com/member/directory.do'
//			}, {
//				name: 'research',
//				href: '//www.eeginfo.com/research/index.jsp',
//				img: '//www.eeginfo.com/images/research-navthumb.jpg',
//				subImgLink: {
//					name: 'View All Topics',
//					href: '//www.eeginfo.com/research/index.jsp'
//				},
//				menu: [{
//						name: 'ADHD',
//						href: '//www.eeginfo.com/research/adhd_main.jsp'
//					}, {
//						name: 'Autism',
//						href: '//www.eeginfo.com/research/autism_main.jsp'
//					}, {
//						name: 'PTSD',
//						href: '//www.eeginfo.com/research/ptsd_main.jsp'
//					}, {
//						name: 'Depression',
//						href: '//www.eeginfo.com/research/depression_main.jsp'
//					}
//				]
//			}, {
//				name: 'shop',
//				href: 'https://store.eeginfo.com/shoppingcart'
//			}, {
//				name: 'member services',
//				href: 'http://eeginfo.com/member/directory.do',
//				img: '//www.eeginfo.com/images/directory-navthumb.jpg',
//				subImgLink: {
//					name: 'Join Directory',
//					href: 'http://eeginfo.com/member/pricing.jsp'
//				},
//				menu: [{
//						name: !navMeId ? 'Login' : 'Logout',
//						href: !navMeId ? '//www.eeginfo.com/member' : '',
//						onclick: function () {
//							new Logout().logout();
//						}
//					}, {
//						name: 'Tech Support',
//						href: '//www.eeginfo.com/knowledgebase.jsp'
//					}, {
//						name: 'Remote Tech Support',
//						href: '//www.eeginfo.com/knowledgebase/remote.jsp'
//					}, {
//						name: 'Join Homecoming for Veterans',
//						href: 'http://www.homecoming4veterans.org/become-clinician.html'
//					}, {
//						name: 'Manage Directory Listing',
//						href: 'http://eeginfo.com/member/dashboard/listing.jsp'
//					}
//				]
//			}
//		]);
//	});
</script>

<!--<div id="nav">
	<ul id="mainNav"></ul>
</div>--><div id="container" class="knowledgebase" style="margin-top: 30px;">
            <div class="col-md-1">
                <a href="tech-support/" class="btn btn-info btn-lg"><i class="fa fa-caret-left" aria-hidden="true"></i> Back</a>
            </div>

            <div class="col-md-10 pull-right">
                <div id="knowledgebaseContent">
                    <h5>Connecting Windows 7 Computer to TV or Monitor using HDMI Cable</h5>

                    <p>These instructions are general instructions.  Your TV set may work slightly different than described below.  Please consult your TV owners manual for any discrepancies.</p><ol><li>Acquire an HDMI cable long enough to reach between you TV/Monitor and your computer.  An HDMI cable is pictured below:<br/><br/><span id="selectionBoundary_1481059096809_06965260250799388" class="rangySelectionBoundary">&#65279;</span><img src="https://s3.amazonaws.com/beeMedic/Knowledgebase/Knowledgebase+Photos/HDMI.jpg" width="261" height="261"/><br/><br/></li><li>Turn on your TV and computer.</li><li>Plug in one end of the HDMI cable into the HDMI port on your computer.</li><li>Plug the other end of the HDMI cable into an available HDMI port on the TV/Monitor.  If your TV/Monitor has multiple HDMI inputs, look to see if there is a port number next to it (i.e. HDMI 1, HDMI 2, etc.)</li><li>Set your TV or Monitor to the appropriate HDMI input.  This step in slightly different on every TV/Monitor.  Press the &#34;Input&#34; or &#34;Source&#34; button on your remote control or TV/Monitor.  An input menu should appear on you TV/Monitor screen.</li><li>Select the appropriate input.</li></ol><p><b>OTHER OPTIONS</b><br/>If your screen is working properly after the steps above, you may not need to go any further.  The following steps may provide further set-up options:</p><ol><li>You may want to adjust the screen resolution from your computer to you HDTV, to achieve optimal settings.  SEE Article:  <a href="https://support.microsoft.com/en-us/help/14108/windows-7-change-screen-resolution" target="">How to change your screen resolution, Windows 7</a>.</li><li>You will need to <a href="https://www.eeginfo.com/knowledgebases/180/configuring-dual-monitor-set-up-on-windows-7-(or-higher)" target="">configure an &#34;extended monitor&#34; setup</a> so you can see two different things on each screen, as opposed to simply duplicating the screen onto the TV/Monitor.</li><li>You may want to re-configure playback devices, so that your sound plays out of either your TV or computer speakers.  SEE Article:  <a href="https://www.eeginfo.com/knowledgebases/181/setting-default-playback-device-to-come-through-hdtv-speakers-using-an-hdmi-cable." target="">Setting default playback device to come through HDTV speakers using an HDMI cable</a>.<br/></li></ol></div>

                <div id="relatedLink">
                    <h3>More from this category:</h3>
                    <ul>
                                        <li>
                                                        <a href='./knowledgebases/153/advanced-media-player,-dreamscapes,-tropical-heat,-and/or-inner-tube-have-stopped-working'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Advanced Media Player, Dreamscapes, Tropical Heat, and/or Inner Tube have stopped working</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/185/changing-screen-resolution-in-windows-7-(or-higher)'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Changing Screen Resolution in Windows 7 (or Higher)</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/176/cygnet-application-shortcuts-(windows-8.1-or-higher)'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Cygnet Application Shortcuts (Windows 8.1 or Higher)</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/174/dedicated-video-ram---faq'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Dedicated Video RAM - FAQ</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/350/fixing-problems-with-windows-update'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Fixing Problems with Windows Update</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/180/how-do-i-extend-my-screen?'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How do I extend my screen?</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/181/how-do-i-get-the-sound-to-come-through-my-tv-speakers-using-an-hdmi-cable'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How do I get the sound to come through my TV speakers using an HDMI cable</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/173/how-to-check-computer-specs-for-cygnet-software'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How to Check Computer Specs for Cygnet Software</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/369/how-to-check-for-windows-updates'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How to check for Windows updates</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/412/how-to-fix-windows-feature-update-failed---computers-with-nvme-ssd-drives'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How to fix Windows Feature Update failed - computers with NVMe SSD drives</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/184/how-to-move-windows-between-multiple-monitors-in-windows-7-(or-higher)'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How to move windows between multiple monitors in Windows 7 (or higher)</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/177/how-to-remove-unwanted-antivirus-programs'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> How to Remove Unwanted AntiVirus Programs</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/169/minimum-recommended-computer-configuration-for-cygnet-software'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Minimum Recommended Computer configuration for Cygnet Software</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/172/my-computer-shut-down/turned-off-in-the-middle-of-a-session'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> My computer shut down/turned off in the middle of a session</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/335/preferred-graphics-processor-settings'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Preferred Graphics Processor Settings</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/175/preventing-damage-from-esd'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Preventing Damage From ESD</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/356/setting-the-preferred-graphics-processor-on-laptops-that-have-both-intel-and-nvidia-graphics-cards'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Setting The Preferred Graphics Processor On Laptops That Have BOTH Intel and NVIDIA Graphics Cards</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/426/sound-settings---changing-the-default-playback-device'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Sound Settings - Changing The Default Playback Device</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/332/sound-troubleshooting-for-cygnet'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Sound Troubleshooting For Cygnet</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/183/switching-primary-and-secondary-monitors-(windows-8.1-or-higher)'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Switching Primary and Secondary Monitors (Windows 8.1 or higher)</a>
                                                    </li>
                                        <li>
                                                        <a href='./knowledgebases/354/uninstall-audio-driver-to-return-to-default-settings'>
                                                            <i class="fa fa-caret-right" aria-hidden="true"></i> Uninstall Audio Driver To Return To Default Settings</a>
                                                    </li>
                                        </ul>
                    </div>
            </div>
        </div>

        <div class="container">
            <div class="row">
                <div class="col-md-12"><div id="footer">
	
		<div class="row">
			<div class="col-md-12">
				<p>
				<a href="http://brianothmerfoundation.org/" target="_blank">Brian Othmer Foundation</a>
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="institute/">EEG Institute</a>
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="courses/">Training Courses</a>
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="http://news.eeginfo.com/">Newsletter</a>
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="//store.eeginfo.com/shoppingcart">Products</a>
				<!-- <span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="link">Link to Us</a> -->
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="contact">Contact Us</a>
				<!-- <span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="careers">Careers</a> -->
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="/tech-support/">Tech Support</a>
				<!-- <span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="links/">Links</a> -->
				<span style="margin:0 5px 0 5px;">&#124;</span>
				<a href="/member/dashboard/privacy_policy.jsp">Privacy Policy</a>
				</p>
			<br />
			<p>
				&copy; 2026
				<a href="http://www.eeginfo.com">EEG INFO</a> All rights reserved<br /><br />
				
				21700 Oxnard St., Suite 1150<br />
				Woodland Hills, CA 91367<br />
				866.334.7878
			</p>
			</div>
		</div>
	
</div>


</div>
            </div>
        </div>
    </body>
</html>
