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, ∼2822🔥, 0💬
Popular Posts:
What is the scheduled task "\Microsoft\Windows\Soft wareProtectionPlatform\S vcRestartTask"on my Wind...
What is "Portable Device Enumerator Service" in my Windows XP service list? And how is "Portable Dev...
How to remove DVDLauncher.exe from the startup application list to gain performance and reduce secur...
How to remove WZQKPICK.exe from the startup application list to gain performance and reduce security...
A collection of 12 tutorials on creating, deleting and managing Windows services: What is a Windows ...