Recently I’ve updated my system to Windows 8.1 and next to 10 (viva NSA \o/). After I shutdown my lap’ and then start it again, it hangs, freezes, etc. There was a cool hing about this. When bought with pre-installed Windows 8 – there was one device that was already disabled… strange. It was storage SD/MCC controller. I’ve tested this and disabled device called “O2 MicroSD/MMC controller” – rebo0ted and… the freeze has gone. I’ve also tried to install older drivers – it also works.
Archive for October, 2015
DELL Latitude laptops start/wake freeze fix
Posted: 22 October 2015 in MicrosoftTags: dell latitude hangs, freeze, o2 microsd/mmc fix, wake problem
0
Advertisements
Remote b00t @ Karolinka – Opole
Posted: 1 October 2015 in HumourTags: boot failure, BSOD, karolinka, opole, remote boot
How to unblock multiple files in multiple folders in Windows Server 2012 R2
Posted: 1 October 2015 in MicrosoftTags: cli, powershell, unblock, unblock multiplefiles, unblock recursevily, unblock-file, windows server 2012
Let’s take this scenario. You’ve uploaded a new version of software to the Server. You didn’t push the “Unblock” putton in file Properties… . The application upgraded itself, and for now you’ve a thousands of files in hundreds of folders which are “Blocked”, but can be readable… how can you repair this? With PowerShell 3!
dir c:\mydir -Recurse | Unblock-File
Debug:
dir c:\mydir -Recurse | Unblock-File -WhatIf
Easy, huh?