1. Failed to Install AzureSphere SDK

    It’s a long story until last AzureSphere SDK update. Recently I want to use AzureSphere to control my IoT device. However when I update the SDK, I got an Error “Failed to install FTDI with error:0x80070643”.

    2021/03/02 AzureSphere

  2. Localization issues when using Azure Devops

    Issues For Deutsch

    2021/03/01 Devops

  3. How to use APPCMD change configurations for site which name contains blank

    When we want to change configurations for site, we usualy use appcmd.exe to handle it. However when website name contains blank, it will throw an error like below.

    2021/01/19 IIS

  4. 如何通过 C# 给 Set-AdServiceAccount 传入 ServicePrincipalNames 参数

    最近遇到了一个有意思的问题,在 C# 代码传参数给 Powershell 指令时按照文档中指定的对象类型传参,指令却抛出了异常。为了解决该问题,我们尝试了各种方法,最终通过 TTD 并结合反编译的代码找到了解决方案。

    2021/01/12 dotnet

  5. Microsoft Edge TLS Related Issue

    Recently we got several TLS related issues on Microsoft Edge. Those issues also can be reproduced on Chrome and IE11 works well.

    2021/01/04 Browsers

  6. None live update output for build pipelines in Devops

    Sometimes we will get a pop up banner saying “Build live updates have stopped. We’re working to restore them. Refresh the page to see any updates” with build pipelines in azure devops. Usualy we can quickly solve the issue by restarting TFSAgentJob Service on Azure Devops Server side.

    2020/10/19 Devops

  7. Error occur when install application which packaged with CefSharp.Wpf.dll using MSIX Packaging Tool.

    Error occur when install application which packaged with CefSharp.Wpf.dll using MSIX Packaging Tool.Below is the errors: 1>C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64\MakePri.exe New -ProjectRoot obj\x64\Release\PackageLayout\ -ConfigXml obj\x64\Release\filemap.priconfig.xml -OutputFile obj\x64\Release\filemap.pri -IndexName 1be397bb-8ae9-4452-9549-7bcbbde828d9 -MappingFile AppX -Verbose -Overwrite 1>PRI175: 0x8007000b - Processing Resources failed with error: An attempt was made to load a program with an incorrect format. 1> 1> 1>PRI222: 0xdef00001 - Unspecified error occurred. Troubleshotting

    2020/10/19 VisualStudio

  8. 如何扩展 Active Directory Users and Computers 的功能

    如何扩展 Active Directory Users and Computers 的功能

    2020/09/07 AD

  9. Powershell get stuck when querying an application pool in suspend mode in IIS 8.5

    Powershell get stuck when querying an application pool in suspend mode in IIS 8.5

    2020/07/30 IIS

  10. 为什么使用 Random 和递归生成随机验证码时会产生栈溢出

    我们经常会收到应用在产生验证码时崩溃的问题,查看应用程序日志会发现都是栈溢出的问题导致的崩溃。总结下来,这些不同的应用都使用了类似的代码逻辑,即使用 Random 生成随机数,然后使用递归来生成多位随机验证码。猜测这些应用的开发都参考了同一篇文章。以下是两个简单的例子,一个生成 N 位非连续重复的数字型验证码,一个生成 N 个非连续重复的字符型验证码,可以通过代码看到两个函数功能类似,逻辑也基本一致。粗略一看这个函数定义是没有问题的,但为什么会在实际使用时产生栈溢出的问题呢?

    2020/05/27 dotnet