Today I was trying to make a software RAID 1 in Windows XP Professional. I thought I have done that a couple times, but today somehow menu Add mirror stayed inactive. I did a google search and to my surprise two KB articles from Microsoft support came out. How to create a mirrored volume on …
Category Archives: Computers
How to remove hibernation file on Windows 7
Open elevated command prompt (start – type “cmd” – right click – Run as administrator). In command prompt: powercfg -h off Now you can delete hiberfil.sys file, if it is not deleted automatically. To enable hibernation back, use: powercfg -h on
Encrypt Windows swap file
Beginning from Windows Vista and Windows Server 2008 it is possible to encrypt Windows paging file. Paging file can contain your credentials, passwords, session data, temporary data from database, etc. To check if encryption is enabled use the following command in cmd window: fsutil behavior query encryptpagingfile To enable encryption: fsutil behavior set encryptpagingfile 1 …