如何理解“internal to the kernel”这句话

How to understand this sentence “internal to the kernel”

当我在 Windows7 的 powershell 上使用“vssadmin”时,我捕获到一个错误“以 \?\GlobalRoot 开头的路径是内核内部的,不应由托管应用程序打开” .

“内核内部”和“托管应用程序”的含义是什么?

“内核内部”意味着手头的路径只能由操作系统的 kernel, and not by applications running in the user space a.k.a userland(内核外部 运行 的常规应用程序)访问。

Managed applications are one kind of user-space applications, in particular those using a .NET运行时间.