mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-08-28 11:16:49 +00:00
Update
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
GpoSettings = $GPOEntry.GpoSettings #: SecurityOptions
|
GpoSettings = $GPOEntry.GpoSettings #: SecurityOptions
|
||||||
Changed = [DateTime] $User.Changed
|
Changed = [DateTime] $User.Changed
|
||||||
GPOSettingOrder = $User.GPOSettingOrder
|
GPOSettingOrder = $User.GPOSettingOrder
|
||||||
UserAction = $User.Properties.action #: U
|
UserAction = $Script:Actions["$($User.Properties.action)"] #: U
|
||||||
UserNewName = $User.Properties.newName #:
|
UserNewName = $User.Properties.newName #:
|
||||||
UserFullName = $User.Properties.fullName #:
|
UserFullName = $User.Properties.fullName #:
|
||||||
UserDescription = $User.Properties.description #:
|
UserDescription = $User.Properties.description #:
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
#Properties = $Group.Properties #: Properties: Properties
|
#Properties = $Group.Properties #: Properties: Properties
|
||||||
Filters = $Group.Filters #::
|
Filters = $Group.Filters #::
|
||||||
|
|
||||||
GroupAction = $Group.Properties.action #: U
|
GroupAction = $Script:Actions["$($Group.Properties.action)"] #: U
|
||||||
GroupNewName = $Group.Properties.newName #:
|
GroupNewName = $Group.Properties.newName #:
|
||||||
GroupDescription = $Group.Properties.description #:
|
GroupDescription = $Group.Properties.description #:
|
||||||
GroupDeleteAllUsers = $Group.Properties.deleteAllUsers #: 0
|
GroupDeleteAllUsers = $Group.Properties.deleteAllUsers #: 0
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
$Script:Actions = @{
|
||||||
|
C = 'Create'
|
||||||
|
D = 'Delete'
|
||||||
|
U = 'Update'
|
||||||
|
R = 'Replace'
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user