Skip to main content

How to configure an FTP site on Windows 10

How to configure an FTP site on Windows 10

Create an FTP site using the following instructions:
  1. Use the Windows key + X keyboard shortcut to open the Power User menu and select Control Panel.
  2. Open Administrative Tools.
  3. Double-click Internet Information Services (IIS) Manager.
  4. Expand and right-click Sites on the Connections pane.
  5. Select Add FTP Site.
  6. Name your new FTP site and enter the path to the FTP folder you want to use to send and receive files.
    Note: You can also use the Make New Folder button to create a specific folder to store your FTP files.
  7. Click Next.
  8. On Binding and SSL Settings leave all the default settings, but change the SSL option to No SSL.
    Note: It's worth pointing out that in a business environment or on an FTP server that will host sensitive data, it's best practice to configure the site to require SSL.
  9. Click Next.
  10. On Authentication, check the Basic option.
  11. On Authorization, select Specified users from the drop-down menu.
  12. Type the email address of your Windows 10 account or local account name to allow yourself access to the FTP server.
  13. Check the options Read and Write.
  14. Click Finish.

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