Our Newsletter


Subscribe to our Newsletter and we'll keep you notified of new products, giveaways and discounts.

We respect your email privacy and will never sell or share your details with anyone.


Knowledgebase Home > Windows PowerShell | Glossary | Favorites | Contact | Login Knowledgebase Home | Glossary | Favorites | Contact | Login
Search the Knowledgebase Browse by Category
View Articles by Category
There are no sub categories
Windows PowerShell rss button
There were 2 articles found in this category:
  1. questionPing using Windows Powershell
    You can ping hosts from the Windows PowerShell by using the Win32_PingStatus WMI Object. Get-WmiObject -Class Win32_PingStatus -Filter "Address='127.0.0.1'" This will produce a lot of mostly unnecessary output, so to format it better, try this option: Get-WmiObject -Class Win32_PingStatus -Filt ...

  2. questionWindows PowerShell Operators
    The following Operators are available in the Windows PowerShell: Assignment Operators Operator Description = Sets a value of a variable to the specified value += Increases the value of a variable by the specified value or appends to the existing value -= Decreases the value of a variable ...