Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

2013/12/26

Windows XP Update Agent Takes Over The Machine

Microsoft has known issue in Auto Update Agent when wuauclt.exe takes 100% of CPU. It can cause that notification icon will not be shown. Here is solutiuon which works for me. Open Console and enter these commmands one by one:
net stop bits 
net stop wuauserv 
regsvr32 /u wuaueng.dll /s
del /f /s /q %windir%\SoftwareDistribution\*.*
del /f /s /q %windir%\windowsupdate.log
regsvr32 wuaueng.dll /s
net start bits
net start wuauserv
wuauclt.exe /resetauthorization /detectnow
After these steps leave computer running for one hour. Notification icon should appear. ;)
▼ Click here to say thanks ▼

2013/08/14

Cannot Start Android Studio - No JVM installation found

Do you have problem to start Android Studio on Windows 7 (8) 64 and error message is something like:

   No JVM installation found. Please install a 64-bit JDK.

If yes, reason can be in Java.

In my case:
  • Windows 7 64
  • Java 1.7.0_17-b02 (32 bit)
If I try to start Android studio, following alert occure: 


Reason?

Start icon of Android Studio has link to studio64.exe file. But my Java is not 64 bit.

Solution?

Replace studio64.exe in link by studio.exe. Thats all. ;)
▼ Click here to say thanks ▼