sharazmohd Posted August 24, 2006 Posted August 24, 2006 anyone has any idea how often ms updates LegitCheckControl.dll, WGAtray.exe and WGAlogon.dll (genuine valadition tool & notifications)
Zxian Posted August 24, 2006 Posted August 24, 2006 Whenever Microsoft figures out how people are patching the previous versions and they can make new ones...
MagicAndre1981 Posted August 24, 2006 Posted August 24, 2006 why do you want to know this?are you not genuine?
LLXX Posted August 24, 2006 Posted August 24, 2006 http://support.microsoft.com/kb/921914Remove it and be done with it.
Andromeda43 Posted August 25, 2006 Posted August 25, 2006 (edited) Sign up for M$'s notification eMail and they will let you know when updates are ready for download.OR, just set up your PC for AutoUpdates and then don't worry about it any more.Their update notification letter looks like this:******************************************Microsoft Download NotificationsAugust 18, 2006Microsoft Download Notifications is a weekly mailing that points you to the latest free downloads and download-related services from Microsoft. The following offerings are now available in your preferred categories. Register now <http://go.microsoft.com/?linkid=5338313> if you are not already receiving this free mailing. To find more downloads, visit the Microsoft Download Center. <http://go.microsoft.com/?linkid=5338314> For support with downloads, visit the Help and Support site. <http://go.microsoft.com/?linkid=2028325>Add Maps to Outlook <http://go.microsoft.com/?linkid=5338266>Download the free add-in for Windows Live Local to include maps and directions in your meeting invitations.----------------------------------------------------------------------WindowsMicrosoft Update <http://go.microsoft.com/?linkid=5338270>Visit Microsoft Update for the latest updates to Windows, Office, and other Microsoft applications. Also, learn how to have automatic security updates <http://go.microsoft.com/?linkid=5338316> delivered to your computer.Windows Live Messenger 8.0 <http://go.microsoft.com/?linkid=5338271>Windows Live Messenger is the next-generation MSN Messenger. It has everything you already love about Messenger, and much more!All recently published Windows downloads <http://go.microsoft.com/?linkid=5338272>----------------------------------------------------------------------JOIN THE MICROSOFT.COM ONLINE RESEARCH PANEL <http://go.microsoft.com/?linkid=5338306>Make an impact on Microsoft Web sites, products, and services by participating in this research panel, open to U.S. and Canadian residents.----------------------------------------------------------------------Personalize Your NotificationsPersonalize your Microsoft Download Notifications by modifying your category preferences <http://go.microsoft.com/?linkid=5338317>.----------------------------------------------------------------------Related Links · Most popular downloads <http://go.microsoft.com/?linkid=5338307> · Most recent downloads <http://go.microsoft.com/?linkid=5338308> · Microsoft Update <http://go.microsoft.com/?linkid=5338309> · Office Update <http://go.microsoft.com/?linkid=5338310> · Automatic Updates <http://go.microsoft.com/?linkid=5338311>----------------------------------------------------------------------Microsoft Event and Webcast Notifications======================================================================If you would prefer to receive the HTML version of this newsletter, reply to this message, type "HTML" in the Subject line, and send.To cancel your subscription to this newsletter, reply to this message, type "Unsubscribe" in the Subject line, and send. You can also unsubscribe through the Subscription Center <http://go.microsoft.com/?linkid=5338315>, where you can manage all of your Microsoft.com communication preferences.Legal Information <http://www.microsoft.com/info/legalinfo/default.mspx>This newsletter was sent by:Microsoft CorporationOne Microsoft WayRedmond, WA98052United States© 2005 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, DirectX, Internet Explorer, MapPoint, MSN Messenger, .NET, the Office logo, Outlook, SharePoint, Visual Basic, Windows Live, Windows Server, Windows XP, Windows, and Zoo Tycoon are either registered trademarks or trademarks of the Microsoft Corporation in the United States and/or other countries. The names of actual companies and products mentioned herein may be the trademarks of their respective owners.******************************************They make it pretty easy to keep up with what's going on.Now as for the WGA thing.....well, the false positives have created more hate and discontent than anything Microshaft has ever done since releasing Windows ME. I've had two customers so far, that have called me in a panic because WGA is popping up on boot, telling them they have an illegal copy of windows XP. In both cases, XP is legal.I wrote a little batch file to remove WGA and stop the popups. Then I had to disable the WGA downloads in the Windows Update program.I placed the WGA Killer batch file on my (rented) download site.Here's the text of that batch file. Just copy and paste the text into a Wordpad document and save it to your desktop with the name "WGAKill.bat"Run it once, to get rid of the active WGATray, etc.*************************************@Echo offClsrd "c:\Documents and Settings\All Users\Windows Genuine Advantage\" /S /Qrd "C:\Documents and Settings\All Users\Application Data\Windows Genuine Advantage\" /S /Qdel "%windir%\System32\WgaTray.exe" /S /Frem The above lines remove Genuine Advantage from the HD.Echo: Now, reboot your system to finish the job.pause*************************************That won't legitimize a bogus version of XP, but it will stop the totally obnoxious popups.Good Luck,Andromeda43 B) Edited August 25, 2006 by Andromeda43
gunsmokingman Posted August 25, 2006 Posted August 25, 2006 (edited) Here a VBS script that does the same as the batch file above excepts it ask the user if they want to reboot the computer.Save As RemoveWga_V2.vbsDim Act : Set Act = CreateObject("Wscript.Shell") Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") Dim Wga1 : Wga1 = Act.ExpandEnvironmentStrings("%AllUsersProfile%\Windows Genuine Advantage") Dim Wga2 : Wga2 = Act.ExpandEnvironmentStrings("%AllUsersProfile%\Application Data\Windows Genuine Advantage") Dim Wga3 : Wga3 = Act.ExpandEnvironmentStrings("%Systemroot%\System32\WgaTray.exe") Dim Cmd1 : Cmd1 = ("shutdown.exe -r -f -t 00")'/-> Check If Exists Then Delete If They Exists If Fso.FolderExists(Wga1) Then Fso.DeleteFolder(Wga1) End If If Fso.FolderExists(Wga2) Then Fso.DeleteFolder(Wga2) End If If Fso.FileExists(Wga3) Then Fso.DeleteFile(Wga3) End If '/-> Ask If You Want To Restart The Computer Dim Rpt : Rpt = MsgBox( "To complete the process a reboot of the computer is required." & vbCrLf & _ "Would you like to Reboot the computer now?", 4 + 48 + 4096, "Finished") If Rpt = 6 Then Act.Run(Cmd1),1,True End IfThis is the same as the above except it reports what been deleted.Save As RemoveWga_V1.vbsDim Act : Set Act = CreateObject("Wscript.Shell") Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") Dim Wga1 : Wga1 = Act.ExpandEnvironmentStrings("%AllUsersProfile%\Windows Genuine Advantage") Dim Wga2 : Wga2 = Act.ExpandEnvironmentStrings("%AllUsersProfile%\Application Data\Windows Genuine Advantage") Dim Wga3 : Wga3 = Act.ExpandEnvironmentStrings("%Systemroot%\System32\WgaTray.exe") Dim Cmd1 : Cmd1 = ("shutdown.exe -r -f -t 00") Dim WgaR'/-> Check If Exists Then Delete If They Exists If Fso.FolderExists(Wga1) Then : Fso.DeleteFolder(Wga1) : WgaR = WgaR & vbCrLf & "Deleted " & Wga1 : End If If Fso.FolderExists(Wga2) Then : Fso.DeleteFolder(Wga2) : WgaR = WgaR & vbCrLf & "Deleted " & Wga2 : End If If Fso.FileExists(Wga3) Then : Fso.DeleteFile(Wga3) : WgaR = WgaR & vbCrLf & "Deleted " & Wga3 : End If Dim Rpt : Rpt = MsgBox(WgaR & Vbcrlf &_ "To complete the process a reboot of the computer is required." & vbCrLf & _ "Would you like to Reboot the computer now?", 4 + 48 + 4096, "Finished") If Rpt = 6 Then Act.Run(Cmd1),1,True End If Edited August 25, 2006 by gunsmokingman
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now