Skip to content

Commit 3d8b827

Browse files
authored
Merge pull request #15 from Badgerati/develop
v2.0.0
2 parents 16b978e + 89d5392 commit 3d8b827

File tree

10 files changed

+1767
-236
lines changed

10 files changed

+1767
-236
lines changed

README.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Import-Module -Name IISManager
5252
* New-IISMDirectory
5353
* Remove-IISMDirectory
5454
* Remove-IISMDirectoryShare
55+
* Set-IISMDirectoryCredentials
5556
* Test-IISMDirectory
5657
* Test-IISMDirectoryShare
5758
* Update-IISMDirectory
@@ -84,7 +85,7 @@ Import-Module -Name IISManager
8485
* Test-IISMSiteBindingCertificate
8586
* Test-IISMSiteRunning
8687

87-
#### Logging
88+
### Logging
8889

8990
* Add-IISMSiteCustomLogField
9091
* Add-IISMSiteLogField
@@ -104,9 +105,35 @@ Import-Module -Name IISManager
104105
* Test-IISMSiteCustomLogField
105106
* Test-IISMSiteLogField
106107

108+
109+
### FTP
110+
111+
* Add-IISMFtpDirectoryIPSecurity
112+
* Add-IISMFtpDirectoryAuthorization
113+
* Add-IISMFtpServerCustomAuthentication
114+
* Add-IISMFtpSiteCustomAuthentication
115+
* Disable-IISMFtpSiteAuthentication
116+
* Enable-IISMFtpSiteAuthentication
117+
* Get-IISMFtpDirectoryAuthorization
118+
* Get-IISMFtpDirectoryIPSecurity
119+
* Get-IISMFtpServerCustomAuthentication
120+
* Get-IISMFtpServerCustomAuthenticationProvider
121+
* Register-IISMFtpServerCustomAuthenticationProvider
122+
* Remove-IISMFtpDirectoryAuthorization
123+
* Remove-IISMFtpDirectoryIPSecurity
124+
* Remove-IISMFtpServerCustomAuthentication
125+
* Remove-IISMFtpSiteCustomAuthentication
126+
* Set-IISMFtpDirectoryIPSecurityUnlisted
127+
* Set-IISMFtpSiteSslPolicy
128+
* Set-IISMFtpSiteUserIsolation
129+
* Test-IISMSiteIsFtp
130+
* Unregister-IISMFtpServerCustomAuthenticationProvider
131+
107132
### Misc
108133

109134
* Get-IISMCertificateThumbprint
135+
* Invoke-IISMAppCommand
136+
* New-IISMCredentials
110137
* Reset-IISMServer
111138

112139
## ToDo

src/IISManager.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'IISManager.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.2.8'
14+
ModuleVersion = '2.0.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'a3ba417c-dc1d-446b-95a5-a306ab26c1af'
@@ -34,7 +34,7 @@
3434

3535
# Tags applied to this module. These help with module discovery in online galleries.
3636
Tags = @('powershell', 'web', 'server', 'websites', 'powershell-core', 'windows', 'PSEdition_Core',
37-
'iis', 'management', 'administration', 'certificates', 'netsh', 'net', 'appcmd')
37+
'iis', 'management', 'administration', 'certificates', 'netsh', 'net', 'appcmd', 'ftp')
3838

3939
# A URL to the license for this module.
4040
LicenseUri = 'https://raw.githubusercontent.com/Badgerati/IISManager/master/LICENSE.txt'

0 commit comments

Comments
 (0)