Hi All,
We have run in to an issue when a we create a user account, OneIM is setting the two attributes to deny by default... how can i either disable this or make it enable by default?
Thank you for your help.
Hi All,
We have run in to an issue when a we create a user account, OneIM is setting the two attributes to deny by default... how can i either disable this or make it enable by default?
Thank you for your help.
Version?
Person.IsTerminalServerAllowed is empty OOTB, so that is the original. ADSAccount.TSAllowLoginTerminalServer should have a template in it that copies from Person.IsTerminalServerAllowed. So you can either…
A word of caution ...... "Person.IsTerminalServerAllowed is empty OOTB" ..... true ..... which means that the value is NULL in the database. The default template on ADSAccount.TSAllowLoginTerminalServer…
OOTB, the template for Login hours is set to all 1s, or allow login at any time. Take a look at the template for ADSAccount.LogonHours to see if that has been customized.
The template for TSAllowLoginTerminalServer comes from the value on the person object (Assuming the account definition is fully managed, which on a create it should be.) So check the property Person.IsTerminalServerAllowed on the associated person. This will be false unless you are setting it somewhere.
but how do i revert back Person.IsTerminalServerAllowed to original? There is nothing in the template.... i'd post the image but it doesn't allow me to post the pic in here. Usually there is an icon i click and it puts the original code back in. Thanks in Advance!
Person.IsTerminalServerAllowed is empty OOTB, so that is the original. ADSAccount.TSAllowLoginTerminalServer should have a template in it that copies from Person.IsTerminalServerAllowed. So you can either write a template for Person.IsTerminalServerAllowed, or set it as part of your Person import process.
A word of caution ...... "Person.IsTerminalServerAllowed is empty OOTB" ..... true ..... which means that the value is NULL in the database. The default template on ADSAccount.TSAllowLoginTerminalServer takes its value from Person.IsTerminalServerAllowed. As such it will always return FALSE. I know this because in my early days I switched off RDP access for all users due to this 'feature'! If you want it to be TRUE in all cases simply modify the template to set Value=True.