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

Terminal Service Auditing – Generate Report of RDP Sessions with Certain Login Dates

# getLoginEvents.ps1 function getLoginEvents{ param( $computername=$env:computername, $daysLimit=30 ) $ErrorActionPreference='stop' try{ $logins=Get-WinEvent -ComputerName $ComputerName -LogName "Microsoft-Windows-TerminalServices-LocalSessionManager/Operational"|…

Some WSUS Troubleshooting Notes

Some errors and interpretations: 0x8024401c: networking generic error 0x80244022: downloading generic error     Check…

PowerShell: Get Available RAM Slots

# getRamSlotsAvailable.ps1 $computername=$env:computername function getRamSlotsAvailable{ param($computername=$env:computername) write-host "Computer name: $computerName" $slots = Get-WmiObject -Class "win32_PhysicalMemoryArray"…