Monday 14 December 2015

How to Delete LavasoftTcpService.dll

To do this go to your control panel and search for any
Lavasoft application and uninstall them.
then go to the C:/Windows/System32 and find LavasoftTcpServices32.dll and another file under it named with Lavasoft you can't delete them if you try , so to do this run your command prompt with admin permissions and type following command

netsh winsock reset

It will ask you to resatart your computer and if not just restart your computer, now you can easily delete those files.
just go to the C:/windows/system32 and delete LavasoftTcpServices.dll and another lavasoft file under it.
Sometimes these Lavasoft dll files are also found in SysWOW64 , so it will be good to cross check C:/windows/sysWOW64 for any lavasoft dll and if you find any delete them and you are done here.

One more thing to do is clear the registry so to do this press WINDOWS+R and type regedit and hit enter. Now there go to edit => find ,  in find type lavasoft and search for lavasoft registry files and if you find any delete them,

Now your pc is free of any lavasoft dll which causes the network issues with games and unity engine.

UNITY STARTUP CRASH FIX

Unity Startup Crash problem fix-

Check your graphic card is up-to date , may be its the problem of graphic card.
If your graphic card is not up-to date update it.

If iT doesn't solve your problem.

Check if there is any problem with your directx.

to check the directx
Press WINDOWS+R and type dxdiag and hit enter.
if there is no pop up about error and you can see your directx version there then your directx is god to go but if you get an error regarding DIRECTSHOW the it is the problems of codec and if you cant see any version of directx there then you need to install directx in your pc.

to solve the problem of DIRECTSHOW download the Codectweak tool to fix codec causing this problem.
and to install directx just download the directx from the official microsoft website and install.

if your unity still crashes at startup then it is the problem of some conflicting applications you have installed on your pc. Basically it is by the adblocker and malwares from LAVASOFT which are hard to detect by any anti-malware programs so you have to delete them manually.

To do this go to your control panel and search for any
Lavasoft application and uninstall them.
then go to the C:/Windows/System32 and find LavasoftTcpServices32.dll and another file under it named with Lavasoft you cant delete them if you try , so to do this run your command prompt with admin permissions and type following command

netsh winsock reset

It will ask you to resatart your computer and if not just restart your computer, now you can easily delete those files.
jus go to the C:/windows/system32 and delete LavasoftTcpServices.dll and another lavasoft file under it.
Sometimes these Lavasoft dll files are also found in SysWOW64 , so it will be good to cross check C:/windows/sysWOW64 for any lavasoft dll and if you find any delete them and you are done here.

Try to open your unity now , hope it will not crash this time.


If your unity is still Crashing just go to the crash report file and send it to us we will help you.

You will find your unity crash file at

C:\Users\HEWLETT PACKARD\AppData\Local\CrashDumps

Saturday 24 October 2015

To find Windows product key for update Windows 10 using Belarc Advisor

How To Find Your Windows Product Key


I will show you two methods to find your Windows product key

First Method :By Belarc Advisor Tool

The video show how you check your Windows product key using Belarc Advisor tool
Watch this video





It so easy to check your Windows product key Either Windows 7/8.

Just simple download the Belarc advisor tool install it and run it.

It shows you everything about your computer system just like your username ,log in name,your system memory,processor etc.Sows every single detail of your computer .It also shows if you have any system upgrade issue it simply highlight the missing updates.


Alternative Method :By VBscript File


The product key is stored in Registry Of system but it is not readable,because its a binary format.But we easily make readable if we convert this file into Vbscript.
So you need to perform Following steps for find your Windows product key


Step 1:Just copy below statement in your notepad



Set WshShell = CreateObject("WScript.Shell")

MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))

Function ConvertToKey(Key)

Const KeyOffset = 52

i = 28

Chars = "BCDFGHJKMPQRTVWXY2346789"

Do

Cur = 0

x = 14

Do

Cur = Cur * 256

Cur = Key(x + KeyOffset) + Cur

Key(x + KeyOffset) = (Cur \ 24) And 255

Cur = Cur Mod 24

x = x -1

Loop While x >= 0

i = i -1

KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput

If (((29 - i) Mod 6) = 0) And (i <> -1) Then

i = i -1

KeyOutput = "-" & KeyOutput

End If

Loop While i >= 0

ConvertToKey = KeyOutput

End Function


Step 2:Save the File in .vbs format>



Just simple save your file in .vbs format and save it by any name like i do "productkeys.vbs"




Step 3



Now double click on this file and it shows your Windows product key.



Now Enjoy and use this product key to upgrade Windows 10.