Keldor
export const frontMatter = { title: 'Keldor', description: 'PowerShell help and command reference for the Keldor module.' }; export const contentTitle = 'Keldor'; export {default as metadata} from '@site/.docusaurus/docusaurus-plugin-content-docs/powershell/site-docs-powershell-keldor-index-md-930.json' export const assets = {
};
import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from "react/jsx-runtime"; import {useMDXComponents as _provideComponents} from "@mdx-js/react"; export const toc = [{ "value": "Online help", "id": "online-help", "level": 2 }, { "value": "Updateable help", "id": "updateable-help", "level": 2 }]; function _createMdxContent(props) { const _components = { a: "a", code: "code", h1: "h1", h2: "h2", header: "header", p: "p", pre: "pre", ..._provideComponents(), ...props.components }; return _jsxs(_Fragment, { children: [_jsx(_components.header, { children: _jsx(_components.h1, { id: "keldor", children: "Keldor" }) }), "\n", _jsx(_components.p, { children: "The Keldor PowerShell module documentation includes online command help and placeholders for updateable help packages." }), "\n", _jsx(_components.h2, { id: "online-help", children: "Online help" }), "\n", _jsxs(_components.p, { children: ["PowerShell uses each command's ", _jsx(_components.code, { children: "HelpUri" }), " to open web-based help with ", _jsx(_components.code, { children: "Get-Help -Online" }), "."] }), "\n", _jsx(_components.p, { children: "For example:" }), "\n", _jsx(_components.pre, { children: _jsx(_components.code, { className: "language-powershell", children: "Get-Help Get-ComputerModel -Online\n" }) }), "\n", _jsxs(_components.p, { children: ["Command pages are hosted under ", _jsx(_components.code, { children: "/powershell/keldor/" }), ", such as ", _jsx(_components.a, { href: "/powershell/keldor/Get-ComputerModel", children: "/powershell/keldor/Get-ComputerModel" }), "."] }), "\n", _jsx(_components.h2, { id: "updateable-help", children: "Updateable help" }), "\n", _jsxs(_components.p, { children: ["PowerShell uses a module's ", _jsx(_components.code, { children: "HelpInfoURI" }), " to discover updateable help metadata for ", _jsx(_components.code, { children: "Update-Help" }), "."] }), "\n", _jsx(_components.p, { children: "Keldor updateable help packages are hosted as static files under:" }), "\n", _jsx(_components.pre, { children: _jsx(_components.code, { className: "language-text", children: "/powershell-help/keldor/\n" }) }), "\n", _jsxs(_components.p, { children: ["Place the module ", _jsx(_components.code, { children: "HelpInfo.xml" }), " file and generated locale CAB packages in ", _jsx(_components.code, { children: "static/powershell-help/keldor/" }), " so Docusaurus and Cloudflare Pages serve them directly."] })] }); } export default function MDXContent(props = {}) { const {wrapper: MDXLayout} = { ..._provideComponents(), ...props.components }; return MDXLayout ? _jsx(MDXLayout, { ...props, children: _jsx(_createMdxContent, { ...props }) }) : _createMdxContent(props); }