Showing posts with label Earn money. Show all posts
Showing posts with label Earn money. Show all posts

Sunday, August 24, 2014

How to share internet connection from windows 7, 8 through command line (or prompt)

Nowadays Internet has become the most important and entertained part of our life, Everybody uses internet not only in home but also in outside of the home like Bus station, College, School, Office and many more.... with the help of wifi (wireless fidelity). But what happens if there is no such a devices like wifi router to share an internet connection. As we all know Computer has a fast internet connection rather than mobile phones. But today we are on the topic about to make your computer as a wifi hotspot or sharing fast internet connection from your computer to another wifi supportable devices like smart phones, tab, etc. This can easily solved with concept of Wireless Hosted Network was introduced in windows 7 from Microsoft windows. Now we are on the steps to make your computer as a wifi hotspot through command line with simple steps.



STEPS:-

  • First Run Command Prompt with administrative privilege.


  • Now Type netsh wlan show drivers, You will see pic like this and check whether your computer supports hosted network or not, If yes, it supports else it doesn't.




  • Now Type this command netsh wlan set hostednetwork mode=allow ssid=hotspotname key=password (You can change hostpotname and password with your own).




  • Now at last, Type this command netsh wlan start hostednetwork then you will see pic like this.




  • Now your computer is made as a wifi hotspot, but we still need to do simple and quick work for internet connection.
  • Now go to control panel >> Network and sharing center. And click on the Active internet connection and go to properties and sharing tab and  check the box "Allow other network users to connect through this computer's internet connection"and select the network connection name that is used by your hotspot. 


  • Now you are done....
  • You can stop it by command line. Go to command line and type this command netsh wlan stop hostednetwork.

Enjoy..........

Still having problems ?

Read More »

Saturday, May 24, 2014

Protect your folder with password without any software

Files inside of folders of a computer can be protected with password with different software, But today we are going to make an special program with notepad so that you can keep your file secretly.


What we need?

A Computer and a little bit of knowledge.

Steps: 

  • First open a Notepad and copy following code to the Notepad and save it with batch extension type (eg. private.bat ).
cls

@ECHO OFF

title Folder Private

if EXIST "HTG Locker" goto UNLOCK

if NOT EXIST Private goto MDLOCKER

:CONFIRM

echo Are you sure you want to lock the folder(Y/N)

set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== binayagurung goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
  • You can change password 'binayagurung' with your own.
Now your batch file is made and you can create a private folder protecting with above password (binayagurung).

This private.bat file is still unsecured anybody can change password by editing private.bat file, so now we are going to convert .bat file to .exe file so nobody can change the password that you have created.

Steps for converting .bat file to .exe file

  • First Go to run and type this command without quotation "iexpress", then you will see following picture.


  • Now click next button continuously until you get following picture.



  • Create your project title name like i named it protect, now again click on next button continuously until you get following picture.



  • Now you have to add a private.bat file that you have created earlier in a notepad. Then click on Next button continuously until you get following picture.



  • After that choose a private.bat from the list like i did, Then click on the Next button until you get following pic.



  • Now browse the location where you want to save .exe file ( i have saved private.exe file to desktop) and click on next button until you get following pic.



  • Check the 'No restart' radio button like i did and click on next button then it creates a .exe file then click on finish button.




Now you are done, you have successfully converted a .bat file to .exe file, Now nobody can change the password that you have created.


Any difficulties feel free to comment.

Read More »

Wednesday, May 21, 2014

How to verify that your antivirus is working or not?



Hey guys, today i am going to share this article to all the readers, so that you can verify your antivirus is working or not. Sometimes we become confused whether an Antivirus is working or not, But don't worry you can easily check or verify whether your antivirus is working or not, This type of Test is called ELCAR test and can be done easily with the simple steps. 

This test is totally harmless, so you do not need to do worry about it. ELCAR test allows us to check your antivirus is working or not, as an example, once you have made this file and when you try to open, your computer antivirus should identify this ELCAR test file as a virus, if your computer antivirus was not able to identify above file as a virus, then your computer antivirus may have a some problem.

Lets check your computer antivirus, whether it is working or not.



  • First open a Notepad, then copy and paste the following text.
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
  • Now save the file name as anyname and extension with .com .
  • Now open a file (that you have created at previous step).

If your virus is working you should trigger an alert saying virus found, if it didn't find any error or create any alert, then your antivirus is not working


NOTE: This file(that you have created earlier) is harmless, so you do not need to worry.



Read More »

Friday, May 16, 2014

Top Notepad Tricks

Notepad is one of the best platform for editing the text, anything can be written with any type of extension, Today i will share some most useful and interesting tricks of notepad.


Trick 1:

This trick is called Matrix effect trick.
  • First Open a Notepad.
  • Now copy and paste the following code.

@echo off
color 0a
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

  • Now save the file with .bat extension type.
  • Run the .bat file,Then you will have matrix Effect on your screen.


Trick 2:

This trick is called Keyboard Dancing Led.
  • First Open a Notepad.
  • Now cop and paste the following code.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


  • Now save the file name as dance.vbs (where vbs is an extension you must include).
  • Run the dance.vbs file then you can see your keyboard lights are blinking like dancing.

How to Stop this.

  • First go to task manager(ctrl+alt+del).
  • Now exit the program named wscript.

Trick 3:

Make a simple virus, this is very dangerous trick, if you open this file you may lose all files from C drive or any specified Drive below (don't do this).
  • First open a Notepad.
  • Now copy and paste the following code.

@Echo off
Del C:\ *.* |y


  • Now save the file name as virus.bat (.bat is an extension, you must include).

Trick 4:

This is World trade center attack trick. The flight number of the plane that had hit World Trade Center on  (9/11) was Q33NY, Coincidentally it has become an amazing trick.
  • First Open a Notepad.
  • Now Copy and paste the following text.

Q33N
  • Now change the font size to 72 and font to wingdings.

Other tricks will be added soon So, keep visiting.

Read More »

Monday, May 12, 2014

How to enable hibernate mode in windows 8

Hibernation in computer means similar to doing shutdown mode in computer, but it saves the contents of its RAM (Random Access Memory) to the hard disk even if the powered off. It is more similar to sleep mode in computer but saves more power at the cost of slower resumption.




After buying or installing new windows 8 operating system to the computer there will be shutdown, restart and sleep mode in power option but not Hibernate. So, today we are going to enable hibernate mode in windows 8 step by step.

Steps:
  1. First go to control panel and click on power options.
  2. Now click on 'what the power buttons does' at the left side of the window.
  3. Click 'Change settings that are currently unavailable'.
  4. Now Scroll down to the bottom of that window to find the 'Shutdown settings' section.
  5. Check the box next to the hibernate enable option and click on 'save changes'.

Now you are done Now you will see Hibernate mode in power option as shown in the picture below.




Read More »

Saturday, April 5, 2014

How to repair windows system files from command prompt



System files of a Computer can be repaired by using command prompt with the help of sfc command. It usually takes 5-10 minutes to complete operation i.e. to repair system files.

Follow these steps :-

  1. Run command prompt with administrative privilege.
  2. Now type this command sfc/scannow and press enter.
  3. After the completion of process, Restart the Computer.

Note :-for sfc/scannow command to work correctly make sure that you have given administrative privilege to command prompt in windows7,8,8.1 and windows vista. But this is not required in earlier version of windows. 
Read More »

Saturday, March 15, 2014

Earn with Probux


What is Probux?
Probux is a PTC(Pay To Click) site. which pays you money, if you visit other sites through it. And it also provide the quality traffic to your site if you have become a advertiser, paying certain amount of money.
  • How can we earn money with probux?
Probux has great tasks and many more option for earning:
  1. viewing ads:-There is a four(4) fixed ads, from where you can easily earn $0.01 per each ad(means $0.04 per day).there are many more other ads, which pays you upto $0.005 per each ad.
  2. Progrid:-It is kind of a lucky game. There are twenty(20) chances per day. You can win upto $5(But this is in a rare case).
  3. Direct Referrals:-You can earn by referring your friend and others to signup and click ads in a probux. You both can earn from this method.
  4. Rented referrals:-This is a great feature of Probux. You can rent your account to others. If you have rental referrals you can earn upto 50% of their earning doing nothing or you can make upto $2 per day.
  5. Crowd flowers:- crowd flowers is a company, which undertakes the different projects and tasks and place them onto probux.Every projects will have a different payout rates. If you earned $50 you will be crowned by $5.

You can double your income by upgrading your membership to premium account.
  • Payment processes:
there are two processes Paypal and Payza.



Read More »

Wednesday, February 26, 2014

How to fix fake serial problem in IDM

Nowadays IDM is the most widely used download manager because of its capability to download files at a faster rate than compared to that of any browser or any other download manager.But it has a trial period, which makes people to buy it but some people can not afford to buy a full version, so they have to use crack version of IDM, but sometimes crack serial key fails to work when you tries to update the version at that time a message occurs displaying 'Internet Download Manager has been registered with fake serial Number.
for overcoming this problems there are some of the best way is given to fix this problem:-

  • Trick first:
This trick is very useful when that type of error occurs in your IDM.
  1. First close opened IDM (Internet Download Manager).
  2. Open installed directory of IDM (eg. C:\Program Files (x86)\Internet Download Manager).
  3. Rename IDMGrHlp.exe into IDMGrHlp (Donot change the extension).
  4. Rename idmBroker.exe into IDMGrHlp.exe .

       Now Restart your computer then it is done and Enjoy!!!

  • Trick Second
  1. close IDM (if opened).
  2. Go to Run (i.e. window+R).
  3. type 'regedit' (without quotation).
  4. Now click on HKEY_LOCAL_MACHINE >> Software >>
  5. select Internet Download manager, And delete it.
  6. Now Download the register key of idm from here.
  7. install it and now its done.
                        Now enjoy guys

Download the Full version of IDM
Read More »

Simple steps to increase performance of PC

1.Defragmenting and optimizing your hard disk:-
  1. In windows 8, go to search box then type defragment then click " defragment and optimize your disk".
  2. then select every single disk and optimize and analyze them , it will take just few minutes. but in previous version of windows (eg.windows xp/vista/7). 
  3. click all programs then click accessories then click system tools and at last click "defragment and optimize your disk" then select every single disk and optimize and analyze them , it will take just few minutes.
2.Cleaning up your PC (or Notebook or Laptop):-
  1. Go to Run (or press windows+R) then type "cleanmgr" without quotation, click OK.
  2. New confirm box will open then click OK after few seconds options for cleaning up your PC (or Notebook or Laptop) window will open.
  3. Just click OK and click "delete files" (don't be panicked it only deletes temporary and unused files of your PC (or Notebook or Laptop), it won't affect your personal files).
  4. After few seconds it will be done, then your PC (or Notebook or Laptop) will be faster than before.
Read More »

Shutdown command line for Windows

The shutdown command is a Command Prompt command that can be used to shut down, restart, log off, or hibernate your own computer.
The shutdown command can also be used to remotely shut down or restart a computer you have access to over a network.
Shutdown Command Syntax:
shutdown [/i | /l | /s | /r | /g | /a | /p | /h | /e |/o] [/hybrid] [/f] [/m \\computer-name] [/t xxx] [/d[p:|u:]xx:yy] [/c "comment"] [/?]
How To Read Command Syntax if you're not sure how to read the shutdown command syntax shown above.
/i = This shutdown option shows the Remote Shutdown Dialog, a graphical version of the remote shut down and restart features available in the shutdown command. The /i switch must be the first switch shown and all other options will be ignored.
/l = This option will immediately log off the current user on the current machine. You can not use the /l option with the /m option to log off a remote computer. The /d, /t, and /c options are also not available with /l.
/s = Use this option with the shutdown command to shut down the local or /m defined remote computer.
/r = This option will shut down and then restart the local computer or the remote computer specified in /m.
/g = This shutdown option functions the same as the /r option but will also restart any registered applications after the reboot.
/a = Use this option to stop a pending shut down or restart. Remember to use the /m option if you're planning on stopping a pending shut down or restart that you executed for a remote computer.
/p = This shutdown command option turns off the local computer completely. Using the /poption is similar to executing shutdown /s /f /t 0. You can not use this option with /t.
/h = Executing the shutdown command with this option immediately puts the computer you're on into hibernation. You can not use the /h option with the /m option to put a remote computer into hibernation, nor can you use this option with /t, /d, or /c.
/e = This option enables documentation for an unexpected shut down in the Shutdown Event Tracker.
/o = Use this shutdown switch to end the current Windows session and open the Advanced Boot Options menu. This option must be used with /r. The/o switch is new beginning in Windows 8.
/hybrid = This option performs a shutdown and prepares the computer for fast start up. The /hybrid switch is new beginning in Windows 8.
/f = This option forces running programs to close without warning. Except with the /l, /p, and /h options, not using shutdown's /f option will present a warning about the pending shut down or restart.
/m \\ computer-name = This shutdown command option specifies the remote computer that you want to execute a shut down or restart on.
/t xxx = This is the time, in seconds, between the execution of the shutdown command and the actual shut down or restart. The time can be anywhere from 0 (immediately) to 315360000 (10 years). If you don't use the /t option then 30 seconds is assumed. The /toption is not available with either the /l, /h, or /p options.
/d [p:|u:]xx:yy = This records a reason for the restart or shut down. The p option indicates a planned restart or shut down and the u a user defined one. The xx and yy options specify major and minor reasons for the shut down or restart, respectively, a list of which you can view by executing the shutdown command without options. If neither p nor u are defined, the shut down or restart will be recorded as unplanned.
/c "comment" = This shutdown command option allows you to leave a comment describing the reason for the shut down or restart. You must include quotes around the comment. The maximum length of the comment is 512 characters.
/? = Use the help switch with the shutdown command to show detailed help about the command's several options. Executing shutdown without any options also displays the help for the command
Shutdown Command Examples:
shutdown /r /d p:0:0
In the above example, the shutdown command is used to restart the computer that's currently being used and records a reason of Other (Planned). The restart is designed by /r and the reason is specified with the /d option with p representing that the restart is planned and the 0:0 indicating an "Other" reason.
Remember, major and minor reason codes on a computer can be displayed by executing shutdown without options and referencing the Reasons on this computer table that's displayed.
shutdown /l
Using the shutdown command as shown here, the current computer is immediately logged off. No warning message is displayed.
shutdown /s /m \\SERVER /d p:0:0 /c
In this shutdown command example, a remote computer named SERVER is being shut down with a recorded reason of Other (Planned).Since no time is designated with the /t option, the shutdown will begin on SERVER 30 seconds after executing the shutdown command.
shutdown /s /t 0
Finally, in this last example, the shutdown command is used to shut down the local computer immediately since we designated a time of zero with the shutdown /t option.
Read More »

Tuesday, February 25, 2014

Earn Money online

Nowadays online earning is growing rapidly. Some of the Best and trusted earning sites are given below, from where you can easily make $70 per month investing less than 2 hours per day.

Microworkers
Microworkers has been a great website for earning good amount of money for users all over the world. which pay their website via Paypal/Mastercard and many more option and has good reputation in internet.They have $10 minimum payout.
Shorttask
This is the best earning website specially for those people who do not have a PR website/blog. you will find many more available tasks there for users all over the world
Rapidworers
Another great website for making easy money. The minimum payout for this website is only $4 and what more it is instant.If you are a user of Microworkers you will not have much problem there.
Minijobz
This website can be very much useful for members other than tier 1 country (US, UK, Canada). Minijobz provides handsome amount jobs for India, Philippines workers. You will find more International job in this website.
Read More »