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

How to Use QRadar to Search for a Windows Account Activities

Log into https://qradar/console/qradar/jsp/QRadar.jsp Log Activity > Add Filter > Parameter=Username[Indexed] | Operator=Equals any of |…

PowerShell: Enable TLS 1.2 on Windows

function enableTls12{ try{ $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Force $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Force $null=New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server'…

Enabling Unix Newline ‘LF’ Support for Windows 10 Version 1706 or Higher

Please note that the following PoSH commands won't work on earlier versions of Windows (e.g.…