Posted On March 31, 2019

How To Set Up an FTP Server in Windows Server 2003

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How To Set Up an FTP Server in Windows Server 2003
Turn on FTP service:
 
Setup Home folders and security features:
 
Remember to allow “write” access to the service account onto those home folders

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Quick and Dirty Script to Watch and Start / Restart Windows Service

// powershell.exe// -ExecutionPolicy Bypass c:\scripts\serviceCheck.ps1$serviceName = '[input-service-name-here]'$arrService = Get-Service -Name $serviceNamewhile ($arrService.Status -ne 'Running'){ Start-Service…

Windows Server 2019 Remote Desktop Black Screen Problem

While there's no definite solution to this issue, here are some options to work around…

How to Implement Local Administrator Password Solution (LAPS) on Windows

Overview LAPS or Local Administrator Password Management is a good solution for local administrator account…