operator overloading in C#

Operator Overloading in C# One of the greatest things you can find in c# is operator overloading capability. This is very awesome and applicable especially in a calculation related solution. We all know what is the easiest way to add two numbers, or two strings, simply by using + operator. Short example: int a = […]

debugging breakpoints (part 2)

debugging breakpoints This is the second part of the Break points tutorial. Before you continue reading this article, you might want to check out part 1, if you haven’t already done that. With that being said we can return our focus on this article. The main goal in this article is to explain the debugging breakpoints […]

debugging breakpoints (part 1)

debugging breakpoints One of the daily routines for every developer is debugging. As many developers already know it can be a very difficult, and some times even more annoying of a process. It often require code changes just to find the bug, adding debug/trace lines, assertions and God knows what else. At the end when […]

Get list of software installed from a remote computer WMI and PowerShell

Get list of software installed from a remote computer WMI and PowerShell Ever wanted to Get list of software installed from a remote computer via WMI and PowerShell  Open PowerShell and run the following command: Get-WmiObject -Class “Win32_Product” -ComputerName RemoteHost -Credential localhost\LocalUser | Export-CSV (Join-Path $home “SoftwareList.csv”) Now to understand how this all ties together. Get-WmiObject  -Class […]