Admin & Automation Tips


  • You can unlock all the locked columns/fields on a form by opening the developer console (CTRL + SHIFT + I) and pasting this in the console and running it: Xrm.Page.data.entity.attributes.forEach(function (attribute, index) {    let control = Xrm.Page.getControl(attribute.getName());    if (control) {      control.setDisabled(false)    }  });

  • Here are a couple of ways to automate new users setup tasks via Power Automate Flows rather than e.g. XRMToolbox Set the timezone The key is to select the table as usersettingsconfig, via update a row – which will resolve to User Settings. You want to set timezone to e.g. 85 for London. Details here:…