Windows Vista Need serious help with a KB 941600 hotfix issue.

Joined
Apr 21, 2009
Messages
3
Reaction score
0
I am trying to use Motorola Software Update and when I get to the end of the download notepad pops up with this:

'check whether the specified hotfix exists in the target computer
strComputer = "."
Dim HotfixFound :HotfixFound = ""
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colQuickFixes = objWMIService.ExecQuery _
("Select * from Win32_QuickFixEngineering")

For Each objQuickFix in colQuickFixes
If objQuickFix.HotFixID = "KB941600" Then
HotfixFound = "HOTFIXFOUND=1"
Exit For
End If
Next

'install the msi and set the HOTFIXFOUND property
'the name of the customer Propery must only include upcaseletters.
Set oMSI = CreateObject("WindowsInstaller.Installer")
' set the UI level to full level
oMSI.UILevel = 5
' launch the installer and disable the error display during the vbs script execution
On Error Resume Next
oMSI.InstallProduct Wscript.Arguments(0), HotfixFound
On Error GoTo 0
' clean up used ObjectVars
Set oMSI = Nothing

I am not computer saavy. I have no idea what it means. Can someone help me with this? I'd greatly appreciate it.
 
Joined
Apr 21, 2009
Messages
3
Reaction score
0
Still don't know what to do.

I checked for the update and it says it doesn't apply to my system. Does that mean it is already in it?
 
Joined
Apr 21, 2009
Messages
3
Reaction score
0
The phone is motorola. My wireless provider is Verizon. Which won't let me download free ringtons via text message. I am trying to use Motorola System Update and P2K to put ringtones on my phone but the Motorola System Update isn't working where as I get the message pop up on notepad before I am finished with the update:

check whether the specified hotfix exists in the target computer
strComputer = "."
Dim HotfixFound :HotfixFound = ""
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colQuickFixes = objWMIService.ExecQuery _
("Select * from Win32_QuickFixEngineering")

For Each objQuickFix in colQuickFixes
If objQuickFix.HotFixID = "KB941600" Then
HotfixFound = "HOTFIXFOUND=1"
Exit For
End If
Next

'install the msi and set the HOTFIXFOUND property
'the name of the customer Propery must only include upcaseletters.
Set oMSI = CreateObject("WindowsInstaller.Installer")
' set the UI level to full level
oMSI.UILevel = 5
' launch the installer and disable the error display during the vbs script execution
On Error Resume Next
oMSI.InstallProduct Wscript.Arguments(0), HotfixFound
On Error GoTo 0
' clean up used ObjectVars
Set oMSI = Nothing

IF I can figure out how to fix this I feel I can accomplish the other tasks. But without Motorola System Update I can't go any further.
 
Joined
Jul 31, 2009
Messages
1
Reaction score
0
Resolved

This is most likely a problem with your .vbs file association. Notepad must be the program that is associated with .vbs file types.


Try unzipping the attached file to and opening the REG file for your operating system (XP or Vista) to fix it.



***Make sure to backup your registry before running the REG file in case it doesn't fix your problem***



If the attachment doesn't work follow this link:


 

Attachments

  • Fix VBS File Association.zip
    1.5 KB · Views: 264

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top