This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## EXCERPT FROM: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/windows-10-cast-to-not-recognizing-my-tv-anymore/0546e44e-f2a0-4fb7-9fbc-aa148d21c533 | |
I think I may have found a solution. In a quest to find the answer to our problem, I read through several threads yesterday. I came upon one, did it myself, and so far, so good! Hope it also works for you. | |
(The following is a check list of things that need to be turned on, detected, etc). | |
1. Go to > Control Panel > Network & Sharing Center. | |
Look to the left column and click on > Change Advanced Sharing Settings. | |
Click on the arrow pointing downward by > Private (current profile). This will expand it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Created for Debian 7.0 x64 (Wheezy) but should work on any Debian Variant | |
blue='\e[0;34m' | |
NC='\e[0m' # No Color | |
echo -e "${blue}Installing Prerequisites Required for the installer to complete${NC}" | |
apt-get install -y autoconf automake devscripts gawk g++ git-core libjpeg-dev libncurses5-dev libtool make python-dev pkg-config libtiff5-dev libperl-dev libgdbm-dev libdb-dev sudo gcc flex bison libmysqlclient-dev libssl1.0.0 libcurl3 libxml2 libpcre3 gettext && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Created for Debian 7.0 x64 (Wheezy) but should work on any Debian Variant | |
blue='\e[0;34m' | |
NC='\e[0m' # No Color | |
echo -e "${blue}Installing Prerequisites Required for the installer to complete${NC}" | |
apt-get install -y autoconf automake devscripts gawk g++ git-core libjpeg-dev libncurses5-dev libtool make python-dev pkg-config libtiff5-dev libperl-dev libgdbm-dev libdb-dev sudo gcc flex bison libmysqlclient-dev libssl1.0.0 libcurl3 libxml2 libpcre3 gettext && \ |