Getting errors in XP mode even after removal of the problem KB????

I removed the KB??? which was mentioned as a problem with the integration features, but I'm still getting errors in XP mode. One issue is that the icons are sometimes missing which I click on startup. Trying to logoff usually shows that CB monitor and explorer
are stuck and have to be ended. Then it just sometimes fails with errors like this:
Problem Event Name: BEX64
  Application Name: VMWindow.exe
  Application Version: 6.1.7601.17514
  Application Timestamp: 4ce7b2e6
  Fault Module Name: StackHash_1dc2
  Fault Module Version: 0.0.0.0
  Fault Module Timestamp: 00000000
  Exception Offset: 0000000000000000
  Exception Code: c0000005
  Exception Data: 0000000000000008
  OS Version: 6.1.7601.2.1.0.256.48
  Locale ID: 1033
  Additional Information 1: 1dc2
  Additional Information 2: 1dc22fb1de37d348f27e54dbb5278e7d
  Additional Information 3: eae3
  Additional Information 4: eae36a4b5ffb27c9d33117f4125a75c2

Hi,
Could you please have a share about what KB you moved?
From the posted message, it seems to be this VMWindow.exe is not working well.
VMWindow.exe is the executable that is used for the standard “work with the virtual machine desktop” experience.  If you just start this executable by itself it will open the “Virtual Machines” folder. See: Windows
Virtual PC Executables
To have it a quick fix, please take a try to reinstall Windows Virtual PC(uninstall via View installed updates Windows Virtual PC (KB958559), restart and then download/install from
here), then mount the Windows XP VHD file,
Virtual Hard Disks (VHDs) in Windows Virtual PC.
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • My iphone 4 wont get out of recovery mode even after getting restored over and over again?

    .

    http://support.apple.com/kb/TS3694#error9
    This error means that the iPhone lost its connection to your computer during the update.
    If you are using a USB hub, don't. Connect directly to a USB port on your computer. If it's not a laptop use a port on the back rather than the front.
    Disconnect any high data rate USB devices (e.g., DVD drive, external hard drive).
    Turn off your antivirus and firewall.
    Can also be caused by a bad cable.

  • HT4550 My safari is permanently on safe mode even after turning it of the pages refresh it goes back into safe mode how do i remove it

    My safari is permanently on safe mode even after turning it of the pages refresh it goes back into safe mode how do I remove it.

    Hold the shift key down and launch Safari.
    If not, try  suggestions made in this article.
    http://reviews.cnet.com/8301-13727_7-57393558-263/tackling-macs-that-always-boot -to-safe-mode/
    Best.

  • My phone 4s won't come off of headset mode even after I remove them. Help !!

    My phone 4s won't come off of headset mode even after I remove them. Help !!

    Hello, Rwproulx. 
    Thank you for visiting Apple Support Communities.
    Here are some helpful troubleshooting articles that I would recommend going through when experiencing this issue.
    iOS: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    Cheers,
    Jason H.

  • Can't delete a file displayed in ListView ("File in use") even after removing it from window.

    I have a ListView displaying a collection of icons. The user can then select different icons (checkboxes) to do things like Copy or Delete.
    Problem is, when I try to delete the actual file from the disk, I get an error telling me the file is "in use" ("vshost.exe", the VS runtime during testing).
    I thought maybe it was because it still appeared in the window and was still in the ImageList, but even after removing it from both locations, I still get the error. My code:
    Dim intCnt As Integer = 0
    Do
    ImageList2.Images.RemoveAt(intIconsChecked(intCnt)) ' Remove from collection.
    lsvCollection.Items.RemoveAt(intIconsChecked(intCnt)) ' Remove from ListView window.
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".rsc") ' "+1" b/c Icons start with "01".
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".png") ' "In use" Error here.
    ".rsc" deletes just fine, so I know I'm deleting the correct file. Why does VS still think the file is still "in use"?
    Thx

    Mugsy,
    Consider this as food for thought, even if you don't use it.
    If you set it up right then you can control how it works. A reference is a reference and any left behind will cause you grief down the road when you try to delete things.
    As an example, a simple class follows. It does *not* implement IDispose, although it does have a private shared Dispose method in it:
    Public Class MyImages
    Private _bmp As Bitmap
    Private _name As String
    Private _sourceFilePath As String
    Private Sub New(ByVal bmp As Bitmap, _
    ByVal name As String, _
    ByVal filePath As String)
    _bmp = bmp
    _sourceFilePath = filePath.Trim
    _name = name.Trim
    End Sub
    Public ReadOnly Property Bmp As Bitmap
    Get
    Return _bmp
    End Get
    End Property
    Public ReadOnly Property Name As String
    Get
    Return _name
    End Get
    End Property
    Public ReadOnly Property SourceFilePath As String
    Get
    Return _sourceFilePath
    End Get
    End Property
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, GetFileNameWithoutExtension(imageFilePath), imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    ByVal imageName As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    ElseIf String.IsNullOrEmpty(imageName) OrElse imageName.Trim = "" Then
    Throw New ArgumentException("The name of this image cannot be null or empty.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, imageName, imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub Remove(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    Optional ByVal removeFilePathAlso As Boolean = False)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    Dim findInstance As System.Collections.Generic.IEnumerable(Of MyImages) = _
    From mi As MyImages In miList _
    Where mi.SourceFilePath = imageFilePath
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("The instance of MyImages specified by the" & vbCrLf & _
    "image file path is not in the collection.")
    Else
    Dispose(findInstance.First)
    If removeFilePathAlso Then
    My.Computer.FileSystem.DeleteFile(findInstance.First.SourceFilePath)
    End If
    miList.Remove(findInstance.First)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Private Shared Sub Dispose(ByVal instance As MyImages)
    If instance IsNot Nothing AndAlso instance._bmp IsNot Nothing Then
    instance._bmp.Dispose()
    instance._bmp = Nothing
    End If
    End Sub
    End Class
    When you look through that, look specifically at the "Remove" method and in particular, look at the order in which things are done. That's the critical part in this.
    I tested it with a simple form:
    Two buttons, a checkbox, and a picturebox. I also copied a small folder full of image files to my desktop since I'll be deleting a file from it. Following is the code for Form1:
    Option Strict On
    Option Explicit On
    Option Infer Off
    Imports System.IO.Path
    Public Class Form1
    Private miList As New List(Of MyImages)
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim desktop As String = _
    My.Computer.FileSystem.SpecialDirectories.Desktop
    Dim imgFolder As String = _
    Combine(desktop, "Images")
    PictureBox1.BorderStyle = BorderStyle.FixedSingle
    For Each imgFilePath As String In My.Computer.FileSystem.GetFiles(imgFolder)
    MyImages.AddNew(miList, imgFilePath)
    Next
    btn_RemoveFirstImage.Enabled = False
    CheckBox_RemoveSourcePath.Enabled = False
    End Sub
    Private Sub btn_ShowFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_ShowFirstImage.Click
    Try
    If miList.Count >= 1 Then
    With PictureBox1
    .SizeMode = PictureBoxSizeMode.Zoom
    .Image = miList(0).Bmp
    End With
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    End If
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    Private Sub btn_RemoveFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_RemoveFirstImage.Click
    Try
    If miList.Count >= 1 Then
    MyImages.Remove(miList, miList(0).SourceFilePath, CheckBox_RemoveSourcePath.Checked)
    End If
    PictureBox1.Image = Nothing
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    End Class
    Running it is straightforward:
    Now when I click to show the first one:
    A different image is shown because that first one no longer exists - either in the collection or in the folder.
    Closing/disposing all references is the key and the order matters.
    Something to consider the next time around. :)
    Still lost in code, just at a little higher level.

  • I'm installing windows 7 64-bit on my imac which I've done before but I get a message that the partition is GPT even after I format the bootcamp partition.  I just upgraded my hard drive to a 3tb and I'm allocating 1tb for windows. How can I fix this?

    I'm installing windows 7 64-bit on my imac which I've done before but I get a message that the partition is GPT even after I format the bootcamp partition.  I just upgraded my hard drive to a 3tb and I'm allocating 1tb for windows. How can I fix this?

    No easy fix for a few reasons:
    1) Bootcamp requires a hybrid MBR for the partition table. That is: both an MBR and a GPT partition table at the same time with the GPT one having all partitions and the MBR one having only the ones that are relevant, but at most 4 of them (including the protective partition and the Macintosh HD one). Which leads us to:
    2) The MBR part of the hybrid partition table cannot work with 3TB hard drives. MBR is limited to 2TB.
    I am working on a small EFI app that can boot Windows in EFI mode on a Mac and that would mean that you can go GPT only on your system. The progress of the app is slow due to the nature of EFI and for now requires that you do an unattended Windows install with slipstreamed graphics drivers, but we are adding VGA loading on top of EFI quite soon after the rest of the app stabilises. The status of the app is documented at:
    Win7 x64 booting natively via EFI (no bios emulation)
    Windows does actually successfully boot in EFI mode on most Macs (anything with a 64bit EFI should work), but does not have graphics support even if you load the driver due to the VGA pci registers not being set by the firmware. Furthermore, in Setup and Safe Mode, Windows uses VGA instead of GOP which is a failure by design since VGA is a BIOS standard and not really compatible without hacks with EFI. Other EFI implementations also add VGA compatibility at a high cost to the firmware complexity for the VGA cards available on the market that don't actually contain anything in their ROM except the VGA BIOS.
    My recomendations:
    1) Install on a second smaller hard-drive; or
    2) Wait for the EFI app to come out officially and use that to boot Windows Vista SP1 x64 and Windows 7 x64 (RTM and SP1) in the native EFI mode.
    3) Wait for Windows 8 which supports VGA-less booting acording to the AMD presentation at UEFI Plugfest.

  • My ipod was in recovery mode and fixed it. i can use it. but the problem is whenever am i connect it with itunes it says IPOD is in recovery mode even after recover is done. i cant sync ipod rite now. it showing same msg again. nyone knows wat to do plz??

    my ipod was in recovery mode and fixed it. i can use it. but the problem is whenever am i connect it with itunes it says IPOD is in recovery mode even after recover is done. i cant sync ipod rite now. it showing same msg again. nyone knows wat to do plz??

    I did the restore and it cleared and reset the iPod but after it finished the same error came up. I tried this 3 times. Also it no longer shows up as a drine in My Computer.
    if it's relentlessly doing that to you, it's plausible that the message is being caused by a Windows drive letter confusion. (that's consistent with the disappearance for My Computer, too.)
    see the following article for troubleshooting information on that possibility:
    "iTunes has detected an iPod in recovery mode - Use iTunes to restore"

  • Getting error in sdp94 " data partly after horizon" any suggetionu2026

    Hi gurus,
    i have changed period in SBP and  in SE38 planning area initialization in variants changed  /SAPAPO/TS_PAREA_INITIALIZ ) , still getting error in sdp94 " data partly after horizon" any suggetionu2026
    babu

    Hi Babu,
    Kindly check till when is the planning area initialized. Goto //msdp_admin, right click on the planning area---> Created time series objects. Check the date till when it is initialized. You can save the data only if it's in this period. In the planning book there may be dates after the planning horizon also in which case you can't save data.
    Thanks and Regards,
    Nithin.

  • Hi, download of the trial product (photoshop ele 13) does nt start even after successfully installing the Adobe download assistant successfully. Only .7z file is shown, .exe is nt available. Whn i try to extract .7z file wd 7-Zip error pops up " cannot ex

    Hi, download of the trial product (photoshop ele 13) does nt start even after successfully installing the Adobe download assistant successfully. Only .7z file is shown, .exe file is nt visible. Whn i try to extract .7z file wd 7-Zip error pops up " cannot extract **.7z as archive" .I've tried fresh download of adobe photoshop ele 13 but same error occurs. 
    OS:Windows 8.1
    Storage loc for adobe down assistant  : C-Program file(x86)-Adobe download assistant-adobe
    Storage loc for adobe down assistant:    C- Adobe photoshop assistant 13-  PhotoshopElements_13_LS25_win64_1. 7z
    After this I try to extract ** .7z file but following error occurs :
        After this I try to extract ** .7z file but following error occurs
    Kindly Help.

    Thanks fr revert !
    After clicking on the provided link , Above error pops up. I clicked "ok" n allowed download to complete after which same previous error shows up!

  • Hi  When i create the downpayment process in the invoice i get amount as value but my requirement is in percentage even after i select the percentage basis milestone billing please help what can be done

    Hi  When i create the downpayment process in the invoice i get amount as value but my requirement is in percentage even after i select the percentage basis milestone billing please help what can be done

    downpayment percentage , so if i want 50 percent of order value to be paid  and when i go to faz type the invoice is created for 0 value that 50 percent of the amount is not getting calculated , where as when i enter in order same as 50 percent in amount it gets calculated in invoice, any help ?

  • I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    The error msg said that the file archive part of Adobe photoshop CS6 is missing and that I need all parts in the same folder.

  • I am using ipod touch 4g 8 gb, with ios6 software. It is getting very very slow even after i reinstalled the software. Apps like temple run 2 and subway surfers are getting stuck and it is very very slow.My ipod has 2.6 gb free space.

    I am using ipod touch 4g 8 gb, with ios6 software. It is getting very very slow even after i reinstalled the software. Apps like temple run 2 and subway surfers are getting stuck and it is very very slow.My ipod has 2.6 gb free space. What is the problem. I am not getting to know. Even after i reinstalled these apps it is still getting stuck and it is very very slow. Is this what i get after paying so much money for ipod. Is this what i get very poor perfomance.

    Periodically double click the home button and close all the apps in the recently used dock. Then power off and then back on the iPod. This frees up memory. The 4G only has 256 MB of memory.
    Next
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             

  • I cannot log in my account but can as a guest even after removing the password

    i cannot log in my account but can as a guest even after removing the password

    Hi Kabiru,
    Thanks for visiting Apple Support Communities.
    You may want to use the steps in this article to reset your user account password:
    OS X: Changing or resetting an account password
    http://support.apple.com/kb/HT1274
    Best,
    Jeremy

  • HT5664 Just bought a new IMAC. Cant get the iPhoto to open even after apparently loading the library upgraded. Ideas?

    Just bought a new IMAC. Cant get the iPhoto to open even after apparently loading the library upgraded. Ideas?

    Did you install and RUN the iPhoto Library Upgrader on your library?
    OT

  • Presentation catalog are listing on subject area even after removal

    Presentation catalog are listing on subject area even after removal of catalog on RPD.
    I have restarted oc4J server too

    Please make sure that you have saved the repository or not.
    And then restart both the services i.e Presentation server & OBI Server
    Regards
    Visweswar
    Edited by: Mopur on May 26, 2011 10:44 PM

Maybe you are looking for

  • What is the best way to set up iTunes to deal with a massive media library?

    I have a really big media library...probably 7k-10k digital photos, close to 1,000 ripped CDs, and over 600 ripped DVDs, all stored on 1.5TB external hard disks in a 4-drive enclosure. Due to a recent technical glitch, I find myself installing a new

  • Loading into Windows 7 (Boot Camp) takes really long.

    Hello, I recently installed Windows 7 Ultimate on my MBP Early '11 and thought everything went well, but after a restart I noticed it's not. When I try to start up a black screen shows up and the _ symbol blinks for about 2 minutes until Windows 7 fi

  • Getting disabled screen on ipod not synced to a computer

    I have an ipod touch that was locked to the disabled screen since the wrong pass code  was entered. The ipod was never synced to a computer. The disabled screen tells me to connect to itunes. When I do that itunes tells me to enter the pass code. How

  • Using tables in Text Edit

    I don't see all those editing choices at top of Tables page in Text Edit. How make them appear??

  • Internet Based Client Communication can not be established

    Hi, I have one Primary Site Server and a Database Server. It was only using HTTP connection before. By reading several articles I created PKI environment and made SCCM communicate with a test client via https. I dont have DMZ, so I want to use the ex