Spice-guest-tools-xxx.exe

It is most commonly used with:

You no longer have to "capture" or "release" the mouse using hotkeys (like Ctrl+Alt). The cursor moves freely in and out of the VM window without lag. spice-guest-tools-xxx.exe

void UnmapSpiceDrives() { DWORD drives = GetLogicalDrives(); for (char letter = 'A'; letter <= 'Z'; letter++) { if (drives & (1 << (letter - 'A'))) { char root[4] = {letter, ':', '\', 0}; char fsname[MAX_PATH]; if (GetVolumeInformation(root, NULL, 0, NULL, NULL, NULL, fsname, MAX_PATH)) { if (strstr(fsname, "SPICE") != NULL) { // Unmount using WNetCancelConnection2 WNetCancelConnection2(root, CONNECT_UPDATE_PROFILE, TRUE); } } } } } It is most commonly used with: You no