Collections:
Other Resources:
Assign Object to Variable in Windows PowerShell Scripts
How to assign an object to a variable in Windows PowerShell scripts?
✍: FYIcenter.com
The output object of a cmdlet can be assigned to a variable using the
assignment operator "=".
Remember, variable names must start with the "$" sign. So here is an example of assign a DateTime object to a variable:
$now = Get-Date $now | format-list -Property TimeOfDay
Running the above script will return something like:
TimeOfDay : 22:06:45.1984174
⇒ Access Object Properties in Windows PowerShell Scripts
⇐ Add Comments in Windows PowerShell Scripts
2016-11-02, ∼2580🔥, 0💬
Popular Posts:
This tutorial shows you how to boost performance by stopping and disabling unnecessary services on W...
How to remove QLBCTRL.exe from startup program list? If you want to remove QLBCTRL.exe from the star...
How to download and install JDK (Java SE Development Kit) 6? If you want to download and install JDK...
How to download PHP engine for Windows systems? If you are interested in downloading a copy of PHP e...
What are wbxtra_*.wbt Temporary Files on my Windows 7 computer? Can I remove them? wbxtra_*.wbt Temp...