Windows Updates Fail

There are many reasons why windows updates may fail to install, either when using automatic updates or the Microsoft web tool. Below are listed some of the more common fixes. FIX 1 1. Stop the automatic updates service(if running) using net stop wuauserv 2. Delete the contents of the DataStore folder in %windir%\SoftwareDistribution. 3. Start […]

Read More

Force Files To Download Instead Of Open In Web Browser

You can change the file directivies for a folder by adding a .htaccess file in the folder and including the following code: <IfModule mod_headers.c> <FilesMatch “\.(?i:mp3|ogg)$”> ForceType application/octet-stream Header set Content-Disposition attachment </FilesMatch> </IfModule> This will force .mp3 and .ogg files to prompt for action rather than open with the default browser setting. The IfModule […]

Read More