Collections:
Other Resources:
Invoke Object Methods in Windows PowerShell Scripts
How to invoke methods of an object in Windows PowerShell scripts? I know the method name in Windows PowerShell scripts.
✍: FYIcenter.com
If you know the method name of an object, you can invoke and run the method
using the "." operator.
For example, if you run the following script:
$today = Get-Date $tomorrow = $today.AddDays(1) "Today is "+$today.DayOfWeek "Tomorrow is "+$tomorrow.DayOfWeek
You will get something like:
Today is Saturday Tomorrow is Sunday
⇒ Comparison Operations in Windows PowerShell Scripts
⇐ Access Object Properties in Windows PowerShell Scripts
2016-11-02, ∼2819🔥, 0💬
Popular Posts:
How To Download and Install Media Player Classic? If you are looking for a simple open source DVD pl...
What is "Windows Driver Foundation - User-mode Driver Framework" in my Windows XP service list? And ...
How much memory can I free up by disabling unnecessary Windows services? If you are buying a new com...
How to setup a HP laptop computer? I want to buy the new HP laptop computer on sale at Best Buy for ...
How to remove VSAdd-in.dll and VSAdd-in toolbar? If you want to remove VSAdd-in toolbar from your IE...