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, ∼2427🔥, 0💬
Popular Posts:
Can I disable Windows service "WebClient" to speedup my computer? Windows service "WebClient" - Enab...
This is what I do Charms bar >Settings> Change my PC settings > User > "Trust this PC" When I get my...
Where to find information about what system services are running on Windows Server 2012? I want to k...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...
How to remove msmsgs.exe from the startup application list to gain performance and reduce security r...