Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UmeshPandit/168d54dc3148fffb1ffa8304db89954b to your computer and use it in GitHub Desktop.
Save UmeshPandit/168d54dc3148fffb1ffa8304db89954b to your computer and use it in GitHub Desktop.
Disabling multiple users in Dynamics 365 For Finance and Operations
Disabling multiple users in Dynamics 365 For Finance and Operations
select *from USERINFO
update userinfo set [enable] = 0 where ID <> 'Admin'
update userinfo set [enable] = 1 where ID <> 'Admin'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment