Friday, February 12, 2016

Create WiFi Hotspot In Windows 7 And Share Internet With Android

Everyone has a modem with high speed but we also want high speed Internet in our Android .
So here I explain you how can you share your PC Data with your Android .
Sharing your Windows internet connection via software has some security issues.

There are programs that can help you do it, but they’re often awkward to set up, and prone to complicated
security and reliability issues, so i recommend you don’t try any software for creating virtual hotspot in PC.

Image result for wifi

The effect is dramatic. Once it’s set up, then any Wi-Fi compatible device that can connect to you - another
desktop, laptop, Phone,or an iPod Touch, say - will immediately be able to get online, by sharing your
internet connection through a duplicate of your wireless adapter.

Getting this working isn’t too difficult, either, as long as you can get over the first hurdle: finding a virtual
Wi-Fi-compatible driver for your wireless adapter.

Steps are below:

1. First thing you check is your wireless adapter is supporting hostednetwork or not.
Open CMD and type the following Command :

netsh wlan show drivers

Image result for netsh wlan show drivers

If you see yes then forward to next steps. If no then you can't.

2. If you’re in luck and manage to find and install an up-to-date Windows 7 driver for your adapter, then
the next step is to set it up, and for that you’ll need an elevated command prompt. Click Start, type CMD,
right-click the Cmd.exe link and select ”Run as Administrator”.

Now type the following command:

netsh wlan set hostednetwork mode=allow ssid=prophethacker key=prophethacker

and press [Enter]. Replace ”prophethacker” with the name you’d like to use for your custom network, and
”prophethacker” with a password that’s a little harder to guess.

Image result for netsh wlan set hostednetwork mode=allow ssid=prophethacker key=prophethacker

3. Still at the command line, type

netsh wlan start hostednetwork

and press [Enter] to fire up the virtual adapter.

4. Now click Control Panel > Network and Internet > Network and Sharing Centre > Change Adapter
Settings, right-click your internet connection that you wanna share it and select Properties.
Click the Sharing tab, check ”Allow other network users to connect...”, choose your virtual Wi-Fi adaptor - and that’s it.

Image result for netsh wlan set hostednetwork mode=allow ssid=prophethacker key=prophethacker

Any nearby Wi-Fi enabled device should see a new network appear with the SSID you defined above. They’ll be able to connect to it using your password, and can then immediately share your internet connection.

MTN Introduced Unlimited Daily Data Plan For Just N100


Globacom gained the highest number of internet users in September 2015 with over a million new internet users on its network and as a result of that, NCC Declares GLO As Best Network In New Internet Subscription, it seems MTN Nigeria are jealous this and want to start work toward winning the 2016 award In New Internet Subscription. MTN has decided to offer something interesting. For those who really want to download heavy files, movie lovers, games addicted, smartphone and system updating, apps, music, etc. MTN now secretly unleashed two different 24hrs unlimited data plan, one goes for N100 and the second one goes for N150, but I don't no different between the two plans yet, because I haven't give any of them trial.
Image result for mtn 150 for one day
 
If the plan works as expected, it should among of the best plan ever, but the worst part of it, not all MTN SIMs supported. It is for those who are eligible.

To Know If Your Sim is Eligible
For N100, dial *567*58# and reply with 1 to activate it if you are eligible.
For N150, dial *567*59# and reply with 1 to activate it if you are eligible.
I wish you the best of luck with your MTN Sim for this cheapest plan. Make sure you first of all dial the code before you load the money to know if your sim is eligible or not. Try it and tell us your experience via the comment box.
Hi lovely viewers and welcome to this post, few months ago Airtel Nigeria ran system upgrade which affected their BIS users with other P...

MTN Unlimited Free Browsing With #0.0kobo



Hi guys, welcome to this lovely awaiting post. It is time to forget about that token Megabytes of MTN music+. You can now enjoy unlimited free browsing with your MTN Sim, no magic IP required and no subscription involved. All you need is your Android smartphone, an MTN Sim with N0.0kobo and Sypon Shield VPN.


The speed is amazing, you won't believe until you give it a trial. Are you guys ready? Let's ride.
You can use your installed Psiphon Handler NetifyVpn, or download Sypon Shield v3.1.3 for stable connection here
Install it on your Android Device

Use your MTN default Setting or create New APN settings on your phone as follows:
» Open your phone settings > Go to more > Go to mobile network > Go to access point names > Select MTN, Then create new APN and configure as shown below:
» APN: web.gprs.mtnnigeria.net
» Proxy: 127.0.0.1
» Port: 8080
» Save And Activate it as your default settings
  

Sunday, February 7, 2016

SOME BASIC COMMANDS YOU MUST KNOW

Microsoft has slowly but surely pushed the command line aside in the Windows interface. This is not without reason, as it’s an antiquated and mostly unnecessary tool from an era of text-based input that has long passed.
But there still are some commands that remain useful, and Windows 8 even added new features. Here are the commands every Windows user needs to know.
In case you’re not sure how to access the command prompt, forgot basic commands, or would like to know how to see a list of  switches for each command, you can refer to our beginners guide to the Windows command line for instructions.

ASSOC

assoccmd2
Most files in Windows are associated with a specific program that is assigned to open the file by default. At times, remembering these associations can become confusing. You can remind yourself by entering the command “assoc” to display a full list of file extensions and the programs they’re connected with.
You can also extend the command to change file associations. For example, “assoc .txt=” will change the file association for text files to whatever program you enter after the equal sign. The ASSOC command itself will reveal both the extension names and program names, which will help you properly use this command. You can probably do this more easily in the GUI, but the command line interface is a perfectly functional alternative.

Cipher

ciphercmd
Deleting files on a mechanical hard drive doesn’t really delete them at all. Instead, it marks the files as no longer accessible and the space they took up as free. The files remain recoverable until they’re overwritten with new data, which can take some time.
The cipher command, however, can be used to wipe a directory by writing random data to it. To wipe your C drive, for example, you’d use the command “cipher /w:c”, which will wipe free space on the drive. The command does not overwrite undeleted data, so you will not wipe out files you need by running this command.
There’s also a host of other cipher commands, however, they are generally redundant with Bitlocker enabled versions of Windows.

Driverquery

driverquerycmd
Drivers remain among the most important software installed on a PC. Improperly configured or missing drivers can cause all sorts of trouble, so its good to have access to a list of what’s on your PC. That’s exactly what the “driverquery” command does. You can extend it to “driverquery -v” to obtain more information including the directory in which the driver is installed.

File Compare

This command can be used to identify differences in text between two files, and is particularly useful for writers and programmers trying to find small changes between two versions of a file. Simply type “fc” and then the directory path and file name of the two files you want to compare.
fccmd
You can also extend the command in several ways. Typing “/b” compares only binary output, “/c” disregards the case of text in the comparison, and “/l” only compares ASCII text.
So, for example, you could use the following:
fc /l "C:\Program Files (x86)\example1.doc" "C:\Program Files (x86)\example2.doc"
to compare ASCII text in two word documents.

Ipconfig

This command relays the IP address that your computer is currently using. However, if you’re behind a router (like most computers today), you’ll instead receive the local network address of the router.
Still, ipconfig is useful because of its extensions. “ipconfig /release” followed by “ipconfig /renew” can force your Windows PC into asking for a new IP address, which is useful if your computer claims one isn’t available. You can also use “ipconfig /flushdns” to refresh your DNS address. These commands are great if the Windows network troubleshooter chokes, which does happen on occasion.

Netstat

Entering the command “netstat -an” will provide you with a list of currently open ports and related IP addresses. You’ll also be told what state the port is in – listening, established or closed. This is a great command if you’re trying to troubleshoot the devices your PC is connected to or you’re afraid you’re infected with a Trojan and are trying to locate a malicious connection.

Ping

pingcmd
Sometimes, you need to know whether or not packets are making it to a specific networked device. That’s where ping comes in handy. Typing “ping” followed by an IP address or web domain will send a series of test packets to the specified address. If they arrive and are returned, you know the device is capable of communicating with your PC; if it fails, you know that there’s something blocking communication between the device and your computer. This can help you decide if an issue is caused by improper configuration or a failure of network hardware.

Pathping

This is a more advanced version of ping that’s useful if there are multiple routers between your PC and the device you’re testing. Like ping, you use this command by typing “pathping” followed by the IP address, but unlike ping, pathping also relays some information about the route the test packets take.

Tracert

tracertcmd
The “tracert” command is similar to pathping. Once again, type “tracert” followed by the IP address or domain you’d like to trace. You’ll receive information about each step in the route between your PC and the target. Unlike pathping, however, tracert also tracks how much time (in milliseconds) each hop between servers or devices takes.

Powercfg

Powercfg is a very powerful command for managing and tracking how your computer uses energy. You can use the command “powercfg /hibernate on” and “powercfg /hibernate off” to manage hibernation, and you can also use the command “powercfg /a” to view the power-saving states currently available on your PC.
Another useful command is “powercfg /devicequery s1_supported” which displays a list of devices on your computer that support connected standby. When enabled, these devices can be used to bring your computer out of standby – even remotely. You can enable this by selecting the device in Device Manager, opening its properties, going to the Power Management tab and then checking the “Allow this device to wake the computer” box.
“Powercfg /lastwake” will show you what device last woke your PC from a sleep state. You can use this command to troubleshoot your PC if it seems to wake from sleep at random.
powercfgcmd
The “powercfg /energy” command can be used to build a detailed power consumption report for your PC, which is output to a directory indicated after the command finishes. This report will let you know of any system faults that might increase power consumption, like devices that are blocking certain sleep modes, or which aren’t properly configured to respond to your power management settings.
Windows 8 added “powercfg /batteryreport”, which provides a detailed analysis of battery use, if applicable. Normally output to your Windows user directory, the report provides details about the time and length of charge and discharge cycles, lifetime average battery life, and estimated battery capacity.

Shutdown

As of Windows 8/8.1 there is now a shutdown command that – you guessed it! – shuts down your computer. This is of course redundant with the already easily accessed shutdown button, but what’s not redundant is the “shutdown /r /o” command, which restarts your PC and launches the Advanced Start Options menu, which is where you can access Safe Mode and Windows recovery utilities. This is useful if you want to restart your computer for troubleshooting purposes.

System File Checker

System File Checker is an automatic scan and repair tool that focuses on Windows system files. You will need to run the command prompt with administrator privileges and enter the command “sfc /scannow”. If any corrupt or missing files are found, they’ll be automatically replaced using cached copies kept by Windows for just that purpose. The command can require a half-hour to run on older notebooks.

Recovery Image

recimgcmd
Virtually all Windows 8/8.1 computers ship from the factory with a recovery image, but the image may include bloatware you’d rather not have re-installed. Once you’ve un-installed the software you can create a new image using the “recimg” command. Entering this command presents a very detailed explanation of how to use it. You must have administrator privileges to use the recimg command, and you can only access the custom recovery image you create via the Windows 8 “refresh” feature.

Tasklist

The “tasklist” command can be used to provide a current list of all tasks running on your PC. Though somewhat redundant with Task Manager, the command may sometimes find tasks hidden from view in that utility.
tasklist
There’s also a wide range of modifiers. “Tasklist -svc” shows services related to each task, “tasklist -v” can be used to obtain more detail on each task, and “tasklist -m” can be used to locate .dll files associated with active tasks. These commands are useful for advanced troubleshooting.

Taskkill

Tasks that appear in the “tasklist” command will have an executable and process ID (a four-digit number) associated with them. You can force stop a program using “taskkill -im” followed by the executable’s name, or “taskkill -pid” followed by the process ID. Again, this is a bit redundant with Task Manager, but may be used to kill otherwise unresponsive or hidden programs.

Conclusion

This article doesn’t cover every Windows command available. There are literally hundreds of them when all variables are included. Most, however, are no longer useful because they’ve been replaced by more convenient menus in the Windows GUI or simply aren’t commonly used (telnet, for example)

Tuesday, February 2, 2016

MY WOMAN MY EVERYTHING ***EPISODE 3***

MY WOMAN MY EVERYTHING
***EPISODE 3***
Adobea went home after she met his absence.
Indeed the night was long, she stood up all night
remembering her encounter with Fii.
She didn’t even know his name. She kept on
remembering the whole scenario to the extent
that she forgot to call the Lecturer Mr. Edwards.
She tossed and turn around on her bed as the
face of Fii kept appearing in her mind.
“Am i in love?” She asked herself.
“No, this can’t be me, i don’t love like that.
Probably am just crushing on him. Yeah thats
the word -Crush, am crushing on him, lets see
what tomorrow has in stoke”
She asked herself.
It wasn’t different from Fii, He was also at home
thinking of these mystery girl she met in class
but was interrupted by a knock on the door.
Apparently, it was his ex girlfriend Nana Ama.
Fii had been trying to get back to her for the
past 6 months. Nana Ama was the busy type and
amateur actress. She was always on the move
with Celebrities and other top movie directors in
the country. She hardly had time for Fii and their
relationship, and that caused the break up.
Fii was surprise to see her at his door step.
“Wow what brings you here? Lets get in” Fii
requested.
“Sorry i can’t am with someone, he is waiting for
me across the street. I just came here for one
thing” Said Nana Ama
“Hmm, what is it” Fii asked.
She opened her purse and took out a ring. It was
a promise ring that Fii gave her a year ago when
they were dating.
“Take it back Fii, and stop calling me, am now
engage and will be getting married soon, i don’t
need any set backs.” Nana Ama said this and
gave Fii the ring.
You can imagine the look on Fii’s face. He was
just hurt at this moment that he couldn’t utter a
word.
Nana Ama having given him the ring went away
that instant.
Even though he was hurt, he had a reason to be
happy. The thought of Adobea was still running
through his mind. He decided to go to campus
early the next morning with the hope that he get
to
interact more with Adobea before the class
begins.
The night passed by and Fii was already on the
move early that morning. Lectures was at 9:30
am, yet by 7:15 he was just 5 minutes away from
the school.
He got to campus and head straight to the
lecturer hall.
To his amazement Adobea was already in class
waiting for him.
Their eyes met, and for awhile they kept staring
at each other. Adobea stood up and went
towards him. She then stood right infront of him,
looked straight into his eyes and asked
“What’s your name”
“Fii” He answered
“Adobea” she continued without waiting for him
to even asked.
They stood there still staring at each other. The
words were few. Their eyes did all the talking
and before you knew it, they were kissing.
The kiss was so real that they felt each other’s
breath while kissing, their was wrestling against
each other. Before the kiss got intense they
were interrupted.
“What do you think you are doing”
The quickly stopped to see who it was.
It was Mr. Edwards the lecturer.

MY WOMAN MY EVERYTHING ***EPISODE 2***

MY WOMAN MY EVERYTHING
***EPISODE 2***
“Do you two know each other already” asked the
lecturer
Adobea was silent, she didn’t know the answer
to give the lecturer.
“Lady, i asked you a question” said the lecturer
It was obvious that Fii had to come out with
something
“Yes sir, she is a good friend of mine way back in
High school” Fii intervene.
One lie lead to the other, the lecturer ignored
them and continued with the class.
It was amazing how Adobea and Fii for the first
time clicked. The chemistry between them was
just above the limit. You could tell from the look
on their faces that they wanted the class to end
so they can talk to each other.
Adobea couldn’t hold herself, she took a sheet of
paper and wrote
“Thank you”, she then passed it to Fii who
quickly replied.
For close to 20 minutes, Adobea and Fii were
just exchanging notes of messages.
There were getting along pretty well. The smiles
on their faces was a sign that they were enjoying
every bit of the conversation.
On the first day, they just didn’t pay attention to
the lecturer, their attention was on each other.
Unfortunately the class had to come to an end
and the lecturer dismissed the class.
Before Fii could ask of Adobea’s name on his
final note, the Lecturer asked Adobea to see
him.
She walked out of the class to see the lecturer
who had already sat in his vehicle.
He made Adobea sit in the car and drove her
away from the presence of the Students.
Adobea curiously asked the lecturer “Sir, where
are we going, i have to go home”
“Don’t worry am just driving you away from these
students, they talk too much, and by the way you
can call me Mr. Edward, am not comfortable with
you calling me sir” The lecturer answered.
“Ok Sir, sorry Mr. Edward, may i know what i
have done wrong? Adobea asked
” why do you think you have done something
wrong? I called you here to meet your
acquittance, as a lecturer, one of my roles is to
seek the welfare of my students.
I won’t waste your time, take my card and call
me tonight”
Adobea took the card and got down from his car.
She actually wanted to see Fii before going
home, she rushed back to the lecture hall to
meet the absence of Fii.
Fii had waited for all this while and had already
left cause he thought Adobea had gone home.

MY WOMAN MY EVERYTHING ***EPISODE 1***

MY WOMAN MY EVERYTHING
***EPISODE 1***
Wealth, Class, Beauty, Fame, name it, Adobea
has it all.
She was from a wealthy and a highly respected
family. Her father happens to be one of the most
Successful Entrepreneur in the Country.
Adobea never lacked anything except friends.
All the people around her where either
opportunist and the few she could actually rely
on were not comfortable around her.
This made her unhappy. She needed friends she
can confined in. But her money can’t buy that.
The only way she thought she can get what she
want is to go back to Tertiary school in disguise.
She had already finished with her first degree in
UK yet she was willing to embark on this
mission.
She applied and eventually gain admission. From
her personal savings she can pay all her fees for
the whole duration of her program, However
Adobea kept this a secret from her father.
She was completely on her own.
She had to go to school using the public
transport “Trotro” leaving behind luxurious cars
that she owned.
She rented a room close to her new school,
bought some dress to look like a regular lady.
It was the first time for lectures and all the fresh
students gathered at the lecture hall waiting for
class to begin.
The atmosphere was filled with tension as they
were all new to the Tertiary system. They hardly
knew themselves either.
Adobea had not arrived yet, she was running late
on her first day on campus, she did that on
purpose cause she wanted to be noticed ones
she entered the class.
Soon a lecturer arrived and shortly after, the
class began.
Adobea arrived in class while lectures was on
going. Indeed she was noticed by all the
students as she looked very charming even in her
simple and regular dress.
She quickly spotted an empty chair and sat on it.
Adobea was not the only one late tho, Fiifi
arrived shortly in a rush right after Adobea got
seated.
Fii was sweaty all over, however he went straight
ahead and sat right beside Adobea.
He didn’t realize the beauty he was sitting beside
until Adobea gave him a handkerchief to wipe off
the sweat.
The lecturer noticed what Adobea did and he
said
“Shame, how can a handsome guy like you go
around with no handkerchief”
Fii got embarrassed with the lecturer’s comment
as the whole class got something to laugh
about.
Adobea felt bad for him and told the lecturer that
“Sir, the handkerchief belong him, he actually
leaned it to me on our way here”
“Do you two know each other already” asked the
lecturer