Running Internet Explorer in compatibility mode for an older version of Internet Explorer You gotta love Internet Exploder. In Microsoft’s infinite wisdom they usually break previous features with updates, however Microsoft does have a compatibility mode that you can take advantage of if a particular website isn’t working. Open the site that you need to […]
Author Archives: Bradley
Manual Installation of a Dell Driver Pack on a local machine
Manual Installation of a Dell Driver Pack on a local machine If you’ve ever had to re-load a laptop from scratch, you know that it can be a pain to have to re-install all of the systems drivers one by one and can take hours to do so. After digging into different ways to create […]
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 […]