Category Archives: Windows 8

Getting Hyper-V to work

water_02

 

Yesterday I was setting up Hyper-V on my new Windows 8 laptop I’ve got from work.

On my own laptop it all worked perfectly and I wanted to have an exact same config. So that’s what I’ve done. Only somehow I just not got it to work. Both laptops had the same configuration settings all identical but one worked and the other one not.

After a lot of auch and oofffs, and removing and creating new virtual switches in the Hyper-V Manager I founding the solution.

Just by disabling the Hyper-V adapter and enabling it everything started to work magically and running very smooth. I don’t have a clue why I had to do this for the first time ever but the disable/enable trick fixed the problem.

 


How to get rid off the “Suggested Sites” button from the IE Favorite Bar

Some people hate it and some love it. I use the Favorite Bar in IE a lot and enable it by default on my browser. Just right-click an empty area near the address bar in IE and tick the Favorite Bar.

Only their will be a moment you have to many shortcuts on your bar and than you get an anoying little pulldown arrow on the rightside of the bar. If that’s the case just use favorites what they are for initially.

So I always keep the ammount till the little arrow appears and stop. But just to make some room I delete the default Suggested Sites thingy as I never ever ever used it. And now the anoying thing the little bugger always returns and pushes my über favorites from my Favorite Bar. I think it’s a conspericy with the little arrow.

Unfortunately we cannot delete it but we can disable it 🙂 anyways I just don’t want him to come back.

Here’s how to do it,

  1. Open a Run command Windows flag +R and type gpedit.msc
  2. Go to User Configuration >> Administrative templates >> Windows Components >> Internet Explorer
  3. Look for the “Turn on Suggested Sites” policy, double click and you see it never been configured. Just choos disable and your set to go.

Now it should not return anymore.


Event ID 10 – Windows Management Instrumentation

Whenever I scroll true the Windows Event Logs I have the tendency to try to get rid of all the nice red error en yellow warning messages. They appear for a reason and if it’s possible I always like to fix it. 

Sometimes I notice a WMI error with event ID 10 in the Application Log section. It seems to appear every time the system reboots.

 Event filter with query “SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA “Win32_Processor” AND TargetInstance.LoadPercentage > 99″ could not be reactivated in namespace “//./root/CIMV2” because of error 0x80041003. Events cannot be delivered through this filter until the problem is corrected.

 

What is WMI?
WMI stands for Windows Management Instrumentation and let you control certain tasks or read information of a local or remote system. Here you find more information about WMI. ttp://technet.microsoft.com/en-us/library/ee692772.aspx

 

How to fix it?
There are two ways of fixing this,

  1. Boot in Safe mode
  2. Stop the “Windows Management Instrumentation Service”
  3. And take ownership of the folder or the contents of the folder “C:\Windows\System32\wbem\Repository”
  4. Restart the system and notice it will not come back. The old messages stay until you delete them.

The method Microsoft gives us is by a VB script. This will script will fix the error but will not stop WMI functionality it continue to work as long as the Windows Service is started. http://support.microsoft.com/kb/950375 

  1. Copy and paste the script below in a text file and rename the extention *.txt to *.vbs
  2. Run it and a few popups with interesting reading flash by, just click ok a few times.
  3. Restart the system and you notice the message is not appearing any more.
 

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\subscription")

Set obj1 = objWMIService.Get("__EventFilter.Name='BVTFilter'")

set obj2set = obj1.Associators_("__FilterToConsumerBinding")

set obj3set = obj1.References_("__FilterToConsumerBinding")

For each obj2 in obj2set
                WScript.echo "Deleting the object"
                WScript.echo obj2.GetObjectText_
                obj2.Delete_
next

For each obj3 in obj3set
                WScript.echo "Deleting the object"
                WScript.echo obj3.GetObjectText_
                obj3.Delete_
next

WScript.echo "Deleting the object"
WScript.echo obj1.GetObjectText_
obj1.Delete_