Posted On March 31, 2019

Install Microsoft FTP on Windows 2008 R2

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Install Microsoft FTP on Windows 2008 R2
1. Install IIS without FTP
2. Download FTP
a. x64:
b. x86:
3. Create FTP root folder (i.e. G:\Cisco)
ICACLS “G:\Cisco” /Grant IUSR:R /T
4. Create FTP site
a. Create user account (i.e. cisco/Password007)
b. Server Manager >> Roles >> Web Server >> Internet Information Services >> Right-click {Server_Name}, select “Add FTP Website” option >> Follow the prompts (use basic authentication with specified account)

Leave a Reply

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

Related Post

Testing NFS Between Linux Server & Windows Client

On Linux server:1. Turn of selinux/ipchains/iptables during the test. This could be turned on at…

PowerShell: Query Google Account Using GAM

$emailAddress='[email protected]' $field='accounts:last_login_time' function getGamUser{ param( $emailAddress, $field ) $result=try{gam report users user $emailAddress}catch{} if($result){ $headers=$result[0]…

How To Change Default Backup Directory of Microsoft SQL Server

Option 1: Use the GUI Run Ssms.exe > login as sa > Right-click SQL Server…