Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

whats $_.FullName in powershell

Get-ChildItem -Path C:Windows | ForEach-Object {
    $_  # this references the entire object returned.

    $_.FullName  # this refers specifically to the FullName property
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #whats #powershell
ADD COMMENT
Topic
Name
7+2 =