XrmToolBox设置用户默认时区

183 字
1 分钟
XrmToolBox设置用户默认时区

详细步骤#

详细步骤如下

Step #1 XrmToolBox 安装并打开 User Settings Utility#

Open User Settings Utility
Open User Settings Utility

Step #2 加载用户信息#

Load User Information
Load User Information

Step #3 选择并勾选用户,选择时区,最后点击更新用户设置#

Update User Settings
Update User Settings

通过SQL查询用户目前使用的时区#

另外,还可以通过下面的SQL查询用户目前使用的时区:

SELECT s.fullname AS UserName,
s.businessunitidname AS BusinessUnit,
s.domainname AS Domain,
us.timezonecode AS TimeZoneCode,
tz.standardname AS TimeZoneName
FROM systemuser AS s
INNER JOIN
usersettings AS us
ON s.systemuserid = us.systemuserid
INNER JOIN
timezonedefinition AS tz
ON us.timezonecode = tz.timezonecode
WHERE s.isdisabled = 0;

Query User Time Zone via SQL
Query User Time Zone via SQL

SQL字段说明#

#FieldDescription
1UserNameFull name of the user.
2BusinessUnitThe business unit to which the user belongs.
3DomainThe user’s domain account (e.g., contoso\johndoe).
4TimeZoneCodeThe numeric code that represents the time zone in Dynamics 365.
5TimeZoneNameThe standard name of the time zone (e.g., Pacific Standard Time).

支持与分享

如果这篇文章对你有帮助,欢迎分享给更多人或打赏支持!

打赏
XrmToolBox设置用户默认时区
https://mgrowup.com/posts/dynamics365/set-default-time-zone-for-user/
作者
Donghai
发布于
2025-08-28
许可协议
CC BY-NC-SA 4.0

评论区

Profile Image of the Author
Donghai
Hello, I'm Donghai.
公告
欢迎来到我的博客!这是一则示例公告。
分类
标签
最新动态
站点统计
文章
62
分类
9
标签
37
总字数
76,949
运行时长
0
最后活动
0 天前
站点信息
构建平台
Vercel
博客版本
Firefly v6.16.5
文章许可
CC BY-NC-SA 4.0