Disable Passive FTPThis script will disable PASV FTP functionality in Internet Explorer.
Added 283 days ago by Emnico
| Download | |
| Review | ||
| Back | ||
| 62 | Views |
Source code
Const HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set objRegistry=GetObject("winmgmts:\\" & _
strComputer & "\root\default:StdRegProv")
strKeyPath = "Software\Microsoft\Ftp"
strValueName = "Use PASV"
strValue = "no"
objRegistry.SetStringValue HKEY_CURRENT_USER,strKeyPath, _
strValueName,strValue

