Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Important PowerShell Features

Important PowerShell Features

Scheduled Pinned Locked Moved The Lounge
windows-adminquestion
6 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    Brady Kelly
    wrote on last edited by
    #1

    I'm presenting an introduction to PowerShell on Thursday, and would like some input from any PowerShell users on what you think are important features that I should highlight. I currently have the cmdlet paradigm and object pipeline, as well as iteration and filtering of object collections. I plan to also include some background on creating cmdlets, as well as PowerShell scripts and functions. Anything else I should highlight?

    I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

    R M 2 Replies Last reply
    0
    • B Brady Kelly

      I'm presenting an introduction to PowerShell on Thursday, and would like some input from any PowerShell users on what you think are important features that I should highlight. I currently have the cmdlet paradigm and object pipeline, as well as iteration and filtering of object collections. I plan to also include some background on creating cmdlets, as well as PowerShell scripts and functions. Anything else I should highlight?

      I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

      R Offline
      R Offline
      Robert Rohde
      wrote on last edited by
      #2

      Hi, Arethmetic expressions, condiditional statements, variables and method calls come to my mind. Other than that it should be more important to show how powerful the whole concept is. I was overwhelmed after some testing. Make a good example: In our desktop client application we have a class which imports some specialized data and another one which generates a report out of it. Embedding those into PowerShell was really easy. Now I have a shortcut on my desktop where I can drag a data file onto and it then spits out a report file. All without having to start any application or creating an extra console application. Really cool if you ask me. Robert

      B 1 Reply Last reply
      0
      • R Robert Rohde

        Hi, Arethmetic expressions, condiditional statements, variables and method calls come to my mind. Other than that it should be more important to show how powerful the whole concept is. I was overwhelmed after some testing. Make a good example: In our desktop client application we have a class which imports some specialized data and another one which generates a report out of it. Embedding those into PowerShell was really easy. Now I have a shortcut on my desktop where I can drag a data file onto and it then spits out a report file. All without having to start any application or creating an extra console application. Really cool if you ask me. Robert

        B Offline
        B Offline
        Brady Kelly
        wrote on last edited by
        #3

        Thanks.  I keep getting overwhelmed by the examples I find while researching this beast.  :omg:  I'm trying to focus my presentation on showing people how to get themselves overwhelmed, rather than try and show everything.  Today I focus on overview and slides, and tomorrow I'll be focusing on refining some demos.  The demos are the easy part.

        I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

        P 1 Reply Last reply
        0
        • B Brady Kelly

          Thanks.  I keep getting overwhelmed by the examples I find while researching this beast.  :omg:  I'm trying to focus my presentation on showing people how to get themselves overwhelmed, rather than try and show everything.  Today I focus on overview and slides, and tomorrow I'll be focusing on refining some demos.  The demos are the easy part.

          I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

          P Offline
          P Offline
          peterchen
          wrote on last edited by
          #4

          Brady Kelly wrote:

          I keep getting overwhelmed by the examples I find while researching this beast.

          100%. It would be nice if you could publish your material somehow. *hint hint*


          We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
          My first real C# project | Linkify!|FoldWithUs! | sighist

          B 1 Reply Last reply
          0
          • P peterchen

            Brady Kelly wrote:

            I keep getting overwhelmed by the examples I find while researching this beast.

            100%. It would be nice if you could publish your material somehow. *hint hint*


            We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
            My first real C# project | Linkify!|FoldWithUs! | sighist

            B Offline
            B Offline
            Brady Kelly
            wrote on last edited by
            #5

            I foresee a small series of articles arising out of this.

            I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

            1 Reply Last reply
            0
            • B Brady Kelly

              I'm presenting an introduction to PowerShell on Thursday, and would like some input from any PowerShell users on what you think are important features that I should highlight. I currently have the cmdlet paradigm and object pipeline, as well as iteration and filtering of object collections. I plan to also include some background on creating cmdlets, as well as PowerShell scripts and functions. Anything else I should highlight?

              I do not believe they are right who say that the defects of famous men should be ignored. I think it is better that we should know them. Then, though we are conscious of having faults as glaring as theirs, we can believe that that is no hindrance to our achieving also something of their virtues. - W. Somerset Maugham My New Blog

              M Offline
              M Offline
              mfhobbs
              wrote on last edited by
              #6

              Talking about embedding (hosting) PowerShell for testing or other purposes could be useful. Also general use for testing. PowerShell for extending objects (adding properties and methods) is interesting too...

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups