Snippets/Pipeline/Select-Object.snippets.ps1xml

<?xml version='1.0' encoding='utf-8' ?>
    <Snippets xmlns='http://schemas.microsoft.com/PowerShell/Snippets'>
        <Snippet Version='1.0.0'>
            <Header>
                <Title>Select-Object</Title>
                <Description>adds a Select-Object statement to a pipeline. Select-Object creates clones of incoming objects with only a given set of properties.</Description>
                <Shortcut>sel</Shortcut>
                <Keywords>Pipeline,Console</Keywords>
                <Author>Tobias</Author>
                <DifficultyLevel>3</DifficultyLevel>
                <Example>False</Example>
                <SnippetTypes>
                    <SnippetType>Expansion</SnippetType>
                </SnippetTypes>
                <Requirements>
                    <MinimumPowerShellVersion>1</MinimumPowerShellVersion>
                    <RequiredModules></RequiredModules>
                    <AdminPrivileges>False</AdminPrivileges>
                    <ProcessorArchitecture>x86,x64</ProcessorArchitecture>
                </Requirements>
            </Header>
 
            <Code>
                <Script Language='PowerShell' CaretOffset='26'>
                    <![CDATA[| Select-Object -Property ]]>
                </Script>
            </Code>
 
    </Snippet>
</Snippets>