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, ∼2834🔥, 0💬
Popular Posts:
How to configure IIS to support PHP scripts on your Windows system? If you want to support PHP scrip...
How to download and install Alexa Toolbar for Internet Explorer (IE) 7 browser? Alexa Toolbar offers...
Downloading and Installing vStrip "vStrip" is one the most powerful DVD ripper and VOB file processi...
What is "Wired AutoConfig" in my Windows XP service list? And how is "Wired AutoConfig" service rela...
What is "WWAN AutoConfig" in my Windows 7 service list? And how is "WWAN AutoConfig" service related...