Skip to main content

Simple File Sharing

Simple File Sharing

First disable firewall and make the user as administrator in both system and put a password on it and give IP address for both the system http://ehackingrevealed.blogspot.in/2014/07/how-to-configure-your-pc-to-local-area.html

1). Right Click on the folder which you want to share
2). take properties
3). click on Sharing tab
4). tick on share this folder
5). apply ok

Check : Control Panel\Network and Internet\Network and Sharing Center\Advanced sharing settings
             (check sharing is enabled).

To take shared folder

Win+Run type " \\ipaddress "  (eg :- \\192.168.1.6)

*If asked type the username and password of the system that shared *

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv