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 […]
Prevent Silverlight from showing up under Windows Updates FOR GOOD!
Prevent Silverlight from showing up under Windows Updates One thing that’s annoying is that Windows 7 with SP1 and Windows 8 and 8.1 all have Silverlight baked into the OS for minimum functionality. The truth is though that most people never use it unless they are running Netflix which is also in the process of […]
Cisco AnyConnect wont connect after installing on Windows 8 or 8.1
Cisco AnyConnect wont connect after installing on Windows 8 or 8.1 If you receive any of the following error: Cisco AnyConnect wont connect after installing on Windows 8 or 8.1 will not able to establish a connection to the specified secure gateway Please try connecting again. The VPN Client driver has encountered an error Cannot initiate […]
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 […]