Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7946881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:16:30+00:00 2026-06-04T01:16:30+00:00

help format-list outputs the help for format-list. format-list | help outputs the help for

  • 0

help format-list outputs the help for format-list.

format-list | help outputs the help for help (get-help).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T01:16:32+00:00Added an answer on June 4, 2026 at 1:16 am

    Help is a function that essentially redirects to:

    Get-Help command | more
    

    If you look at this function’s definition, you will see that it accepts a positional argument tagged with ValueFromPipelineByPropertyName with an argument of Name.

    PS ~\> Get-Content function:help
    
    <#
    .FORWARDHELPTARGETNAME Get-Help
    .FORWARDHELPCATEGORY Cmdlet
    #>
    [CmdletBinding(DefaultParameterSetName='AllUsersView')]
    param(
        [Parameter(Position=0, ValueFromPipelineByPropertyName=$true)]
        [System.String]
        ${Name},
    
        # Other arguments deleted for brevity
    
        [Switch]
        ${Online})
    $outputEncoding=[System.Console]::OutputEncoding
    
          Get-Help @PSBoundParameters | more
    

    This basically means, if it sees an argument with a property called Name, it binds that as an input parameter. So, when you do:

    format-list | help
    

    the format-list command is run (and nothing is returned), so the help function thinks it received no arguments.

    When you do:

    "format-list" | help
    

    You are passing a string argument. The string type does not have a Name prooperty, so you’ll get an error message saying that it can’t bind the arguments. However, if you tried:

    PS ~\> get-command format-list
    
    CommandType     Name                Definition
    -----------     ----                ----------
    Cmdlet          Format-List         Format-List [[-Property] <Object[]>] [-GroupBy <...
    

    you can see the the command format-list does have a Name property, so if you tried

    get-command format-list | help
    

    You get the help for format-list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody help me get this date format like Fri, 01 Oct 22:26:23 +0200
how string.format() can help to avoid using + in such statement: string statement =
Custom string format to xml help needed. Java and C#. [Node(X)][CHILD0(Y)][OBJECT1(A)][Key1(1)][Key2(2)] [Node(X)][CHILD0(Y)][OBJECT1(B)][Key1(1)][Key2(2)][Key3(3)] [Node(X)][CHILD0(Y)][OBJECT1(C)][Key1(4)] [Node(X)][CHILD0(Y)][OBJECT2(A)][Key1(1)][Key2(2)][Key3(3)]
Could you please help me how to format a struct timeval instance to human
I have created a list of dictionary in a format as below: [{u'PLAN_A': True,
How to write below data in below table output format ? list of dict
I have a text file with several lines in the following format: gatename #outputs
I want to convert the given data to JSON format ... please help me
I am trying to format a list of links with some css, I am
Help! I'm using the ASP.Net Login control on a Login page, but the Login

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.