Skip to main content

How to Share data between two windows PC?

How to Share data between two windows PC?

PC 1

1. Assign Static IP like 192.168.0.2

2. Right Click on folder which you want share.

3. Click on Sharing, then Advance Sharing.

4. Tick Check Mark on Share this folder and change permissions as you want.

5. Click Apply and then ok.


PC 2

1. Open Run , Window + R

2. Browse IP by typing \\192.168.0.2 in Run.


Comments

Popular posts from this blog

Activate windows 10 without software, Using .bat script

Here is a way to activate Windows 10 using Script. # Make sure you're connected with Internet. #  Open notepad,  paste the script save as file abc.bat and run as administrator. @echo off title Windows 10 &cls&echo ************************************ &echo Copyright: Sudhir: 2018  &echo.&echo Supported products:&echo - Windows 10 Home&echo - Windows 10 Professional&echo - Windows 10 Enterprise,&echo - Windows 10 Education&echo.&echo.&echo ************************************ &echo Windows 10 activation... cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul cscript //nologo c:\windows\system32\slmgr.vbs /i...

breaking user name & password of windows

How to break user name password:-      Restart      Boot from DVD or USB drive        Then start installation        Click on repair              Click on CMD #Use the following commands >   C: >   Dir >   Cd windows\system32 >   Ren cmd.exe cmd.old >   Ren magnify.exe magnify.old >   Ren magnify.old cmd.exe >   Ren cmd.old magnify.exe >   Exit - Restart -     Open magnifier then apply If your commands are right then cmd will open otherwise magnifier. > Net user > net user administrator 12345@1 >   Exit Now your password will reset.                                  

How to add or delete user in CMD??

How to add or delete user in CMD?? 1. Run CMD as Administrator . 2. Type following commands to add a use :           >net user test /add                >net user test /enable:yes         >net user test 123@test here test is a user and 123@test is password. 3. To delete :          >net user test /delete