通过 Win11 微软输入法的「用户自定义短语」,实现用简单拼音快速输入标准时间戳(yyyy-mm-dd hh:mm:ss),适合日常办公、Excel 填写与问题记录。
Archives
All the articles I've archived.
2025 26
十二月 6
八月 1
五月 2
四月 3
三月 8
D365 | 邮箱密码过期后的排查与修复
解决 Dynamics 365 邮箱密码过期导致的邮件发送故障,详细说明从问题发现到修复的完整流程,包括邮件日志查看与密码重置操作。适用于系统管理员快速排查邮件中断问题。
强身健体小贴士 | 修复 Garmin Connect 导出 CSV 在 Excel 中乱码的问题
通过修改 CSV 文件编码,解决 Garmin Connect 导出跑步数据在 Excel 中显示中文乱码的问题,简单三步即可完成。
D365 | XrmToolBox 导出实体数据字典
使用 XrmToolBox 导出实体数据字典,介绍了两个强大的工具:Metadata Document Generator 和 Attributes Factory,这两款工具能够帮助用户快速导出所需的实体字段信息和选项集
二月 6
D365 | 常用的SQL
A guide on commonly used SQL queries in Dynamics 365 for querying views, reports, file sizes, security roles, and user assignments. ...
D365 | Plugin Registration Tool 安装指南
学习 Dynamics 365 Plugin Registration Tool 的两种安装方法,包括直接下载安装与 PowerShell 自动化脚本安装,并提供扩展工具安装选项,适用于插件开发与管理工作。
2024 13
十二月 5
十一月 1
十月 4
D365 | 使用API测试工具访问CRM(Postman / Apifox)
本文详细介绍如何使用 API 测试工具(如 Postman、Apifox)访问 Dynamics 365,包括注册 Azure 应用、获取 ClientId 和 ClientSecret、配置身份验证和 API 权限,以及在 Postman 中设置环境变量和获取访问令牌,帮助开发者快速调试 D365 Web API 接口。
D365 | 使用FetchXML创建自定义报表
学习在Dynamics 365中使用FetchXML开发SSRS自定义报表的完整流程。从Visual Studio环境配置、FetchXML查询编写,到报表设计、数据绑定和发布部署,包含详细的步骤说明和实战案例。
八月 2
一月 1
2022 3
二月 3
2019 2
三月 2
Markdown Syntax Guide
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...
Code Syntax Guide
Inline Code This is Inline Code Only pre This is pre text Code block with backticks <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with backticks and language specified <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with backticks and language specified with line numbers 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with line numbers and highlighted lines PaperMod supports linenos=true or linenos=table 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> With linenos=inline line might not get highlighted properly. This issue is fixed with 045c084 1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Example HTML5 Document</title> 6 <meta 7 name="description" 8 content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." 9 /> 10 </head> 11 <body> 12 <p>Test</p> 13 </body> 14</html> Code block indented with four spaces <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example HTML5 Document</title> </head> <body> <p>Test</p> </body> </html> Code block with Hugo’s internal highlight shortcode <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example HTML5 Document</title> </head> <body> <p>Test</p> </body> </html>