Video Tutorial


In order to write less code or to write better one-liners in Powershell, I often find one of these PowerShell Variable assignment techniques useful, and let me know if you feel the same.

  1. Using -OutVariable parameter

    Get-Process a* -OutVariable process

    PowerShell Variable assignment and display

  2. PowerShell Variable squeezing

    Its a shame many of us ( including myself 😉 ) were not aware of this for quite long.
    Windows PowerShell supports a simplified syntax for showing the contents of variables during the variable assignment. To do this, wrap the variable assignment statement in parentheses.

    ($process = Get-Process a*)

    PowerShell Variable squeezing

  3. Using Tee-Object Cmdlet

    Tee-Object Cmdlet T’s results to o/p stream and Variable $process at the same time, you can use it like in the image below

    PowerShell Variable using Tee-Object cmdlet

    Or, something like

    Get-Process a* | Tee-Object -Variable p

    2

 

You can use one of the above methods to get the work done and at the same time results stored in a variable with PowerShell one-liner, like in the example below

3

If you like this article read similar articles under ‘N – Ways to’ category

Please do follow me on twitter and thanks for reading. Cheers! 😉


My New Book :  PowerShell Scripting Guide to Python

This PowerShell Scripting guide to Python is designed to make readers familiar with syntax, semantics and core concepts of Python language, in an approach that readers can totally relate with the concepts of PowerShell already in their arsenal, to learn Python fast and effectively, such that it sticks with readers for longer time.

“Use what you know to learn what you don’t. ” also known as Associative learning.

Book follows a comparative method to jump start readers journey in Python, but who is the target audience? and who should read this book –

  • Any System Administrator who want to step into Development or Programming roles, and even if you don’t want to be a developer, knowledge of another scripting language will make your skill set more robust.
  • Python Developers who want to learn PowerShell scripting and understand its ease of user and importance to manage any platform.

Python is one of the top programming languages and in fast changing IT scenarios to DevOps and Cloudto the future – Data ScienceArtificial Intelligence (AI) and Machine Learning Python is a must know.

But this PowerShell Scripting guide to Python would be very helpful for you if you already have some knowledge of PowerShell

NOTE! This is a Leanpub “Agile-published” book. That means the book is currently unfinished and in-progress. As I continue to complete the chapters, we will re-publish the book with the new and updated content. Readers will receive an email once a new version is published!

While the book is in progress, please review it and send any feedback or error corrections at prateek@ridicurious.com

Optical Character Recognition

Subscribe to our mailing list

* indicates required