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, ∼2739🔥, 0💬
Popular Posts:
What is "BitLocker Drive Encryption Service" in my Windows XP service list? And how is "BitLocker Dr...
What is YTBSDK.exe - Symantec YTB Status Server - Norton Internet Security? YTBSDK.exe is installed ...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...
How to uninstall ActivePerl 5.8.8.820? If for some reason you want to uninstall ActivePerl from your...
A collection of 7 tutorials on Internet connections with wireless routers covering: What are require...