Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/collections/_commands/Set-PASUser.md
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ Accept wildcard characters: False
### -loginToHour
The end of the timeframe the user account is permitted to authenticate.

Provide an hour of the day in 24-hour format (0-23)
Provide an hour of the day in 24-hour format (0-24)

Minimum required version 13.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function New-PASDirectoryMapping {
ValueFromPipelinebyPropertyName = $true
)]
[AllowEmptyCollection()]
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
[string[]]$allowedAuthenticationMethods

)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function Set-PASDirectoryMapping {
ValueFromPipelinebyPropertyName = $true
)]
[AllowEmptyCollection()]
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
[string[]]$allowedAuthenticationMethods

)
Expand Down
2 changes: 1 addition & 1 deletion psPAS/Functions/User/New-PASUser.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ function New-PASUser {
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'Gen2'
)]
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
[AllowEmptyCollection()]
[string[]]$allowedAuthenticationMethods
)
Expand Down
6 changes: 3 additions & 3 deletions psPAS/Functions/User/Set-PASUser.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Set-PASUser {
)]
[AllowEmptyCollection()]
[ValidateSet('PIMSU', 'PSM', 'PSMP', 'PVWA', 'WINCLIENT', 'PTA', 'PACLI', 'NAPI', 'XAPI', 'HTTPGW',
'EVD', 'CPM', 'PVWAApp', 'PSMApp', 'AppPrv', 'AIMApp', 'PSMPApp', 'GUI')]
'EVD', 'CPM', 'PVWAApp', 'PSMApp', 'AppPrv', 'AIMApp', 'PSMPApp', 'GUI', 'IBVSDK')]
[string[]]$unAuthorizedInterfaces,

[parameter(
Expand Down Expand Up @@ -177,7 +177,7 @@ function Set-PASUser {
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'Gen2'
)]
[ValidateRange(0, 23)]
[ValidateRange(0, 24)]
[int]$loginToHour,

[parameter(
Expand Down Expand Up @@ -420,7 +420,7 @@ function Set-PASUser {
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'Gen2'
)]
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
[AllowEmptyCollection()]
[string[]]$allowedAuthenticationMethods
)
Expand Down