auto in C++ is the same as var in C#. Auto keyword is defined in upcoming C++ standard C++0x The news is, that latest Microsoft Visual Studio C++ 2010 have support for this keyword. auto keyword has a new meaning – ‘declares a variable whose type is deduced from the initialization expression in its declaration’. …
Category Archives: Computers
Windows XP menu ‘Add mirror’ greyed out
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 …
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