Skip to main content

PowerShell

export const frontMatter = { title: 'PowerShell', description: 'PowerShell module documentation for Keldor.' }; export const contentTitle = 'PowerShell'; export {default as metadata} from '@site/.docusaurus/docusaurus-plugin-content-docs/powershell/site-docs-powershell-index-md-bad.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": "Modules", "id": "modules", "level": 2 }]; function _createMdxContent(props) { const _components = { a: "a", h1: "h1", h2: "h2", header: "header", li: "li", p: "p", ul: "ul", ..._provideComponents(), ...props.components }; return _jsxs(_Fragment, { children: [_jsx(_components.header, { children: _jsx(_components.h1, { id: "powershell", children: "PowerShell" }) }), "\n", _jsx(_components.p, { children: "Keldor publishes PowerShell module documentation with command reference pages that can be used as online help targets." }), "\n", _jsx(_components.h2, { id: "modules", children: "Modules" }), "\n", _jsxs(_components.ul, { children: ["\n", _jsx(_components.li, { children: _jsx(_components.a, { href: "./keldor/", children: "Keldor" }) }), "\n"] })] }); } export default function MDXContent(props = {}) { const {wrapper: MDXLayout} = { ..._provideComponents(), ...props.components }; return MDXLayout ? _jsx(MDXLayout, { ...props, children: _jsx(_createMdxContent, { ...props }) }) : _createMdxContent(props); }