File already exists ошибка

Search code, repositories, users, issues, pull requests…

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

This method will move content of a folder recursively and overwrite existing files.
You should add some exception handling.
Edit:
This method is implemented with a while loop and a stack instead of recursion.

public static void MoveDirectory(string source, string target)
{
    var stack = new Stack<Folders>();
    stack.Push(new Folders(source, target));

    while (stack.Count > 0)
    {
        var folders = stack.Pop();
        Directory.CreateDirectory(folders.Target);
        foreach (var file in Directory.GetFiles(folders.Source, "*.*"))
        {
             string targetFile = Path.Combine(folders.Target, Path.GetFileName(file));
             if (File.Exists(targetFile)) File.Delete(targetFile);
             File.Move(file, targetFile);
        }

        foreach (var folder in Directory.GetDirectories(folders.Source))
        {
            stack.Push(new Folders(folder, Path.Combine(folders.Target, Path.GetFileName(folder))));
        }
    }
    Directory.Delete(source, true);
}
public class Folders
{
    public string Source { get; private set; }
    public string Target { get; private set; }

    public Folders(string source, string target)
    {
        Source = source;
        Target = target;
    }
}

Update:
This is a simpler version with the use of Directory.EnumerateFiles recursively instead of using a stack.
This will only work with .net 4 or later, to us it with an earlier version of .net change Directory.EnumerateFiles to Directory.GetFiles.

public static void MoveDirectory(string source, string target)
{
    var sourcePath = source.TrimEnd('\\', ' ');
    var targetPath = target.TrimEnd('\\', ' ');
    var files = Directory.EnumerateFiles(sourcePath, "*", SearchOption.AllDirectories)
                         .GroupBy(s=> Path.GetDirectoryName(s));
    foreach (var folder in files)
    {
        var targetFolder = folder.Key.Replace(sourcePath, targetPath);
        Directory.CreateDirectory(targetFolder);
        foreach (var file in folder)
        {
            var targetFile = Path.Combine(targetFolder, Path.GetFileName(file));
            if (File.Exists(targetFile)) File.Delete(targetFile);
            File.Move(file, targetFile);
        }
    }
    Directory.Delete(source, true);
}

The «EEXIST: file already exists, mkdir ‘c:\users\user\appdata\Roaming\npm'» error is a common issue faced by Node.js developers while using the npm (Node Package Manager) tool. This error occurs when the npm tool tries to create a new directory, but the directory already exists in the specified location. This can be a problem when the existing directory is not accessible or has incorrect permissions, which can cause various npm commands to fail.

Method 1: Remove and Reinstall Node.js

If you are facing the «EEXIST: file already exists, mkdir ‘c:\users\user\appdata\Roaming\npm'» error on every npm command in Node.js, then you can try fixing it by removing and reinstalling Node.js. Here are the steps to do it:

  1. Uninstall Node.js from your system using the control panel or any other suitable method.

  2. Delete the npm cache folder by running the following command in the command prompt:

rd /s %APPDATA%\npm-cache
  1. Delete the npm and npm-cache folders from the following directories:
C:\Users\{your-username}\AppData\Roaming
C:\Program Files\nodejs
  1. Download the latest version of Node.js from the official website and install it.

  2. Open the command prompt and run the following command to verify that Node.js and npm are installed correctly:

  1. If the versions are displayed correctly, then you can start using npm commands without any errors.

That’s it! By following these steps, you have successfully removed and reinstalled Node.js to fix the «EEXIST: file already exists, mkdir ‘c:\users\user\appdata\Roaming\npm'» error.

Method 2: Delete the npm Cache

To fix the npm error EEXIST: file already exists, mkdir 'c:\users\user\appdata\Roaming\npm', you can try deleting the npm cache. Follow the steps below:

  1. Open the command prompt as an administrator.
  2. Run the command npm cache clean --force. This will delete the npm cache.
  3. Run the command npm cache verify. This will verify the npm cache.

Here’s an example code:

C:\Users\User> npm cache clean --force
npm WARN using --force I sure hope you know what you are doing.
npm WARN cache Cleaning everything up
npm WARN cache This might take a while
npm info cache ...etc...

C:\Users\User> npm cache verify
Cache verified and compressed (~\AppData\Roaming\npm-cache\_cacache):
Content verified: 0 (0 bytes)
Index entries: 0
Finished in 0.169s

Explanation:

  • npm cache clean --force: This command will delete the npm cache forcefully.
  • npm cache verify: This command will verify the npm cache.

By deleting the npm cache, you are removing any corrupted or outdated files that may be causing the EEXIST error.

Method 3: Change the npm Directory

To change the npm directory, follow these steps:

  1. Create a new directory for npm by running the following command:
  1. Configure npm to use the new directory by running the following command:
npm config set prefix 'C:\npm-global'
  1. Add the new directory to your system’s PATH environment variable by running the following command:
setx PATH "%PATH%;C:\npm-global"
  1. Close and reopen your terminal or command prompt for the changes to take effect.

Now, when you run npm commands, they should use the new directory instead of the default directory.

Here’s an example of how to install a package using the new directory:

This will install the Express package globally in the new directory.

If you want to check the location of the npm directory, you can run the following command:

This will output the path to the npm directory, which should now be the new directory you created.

That’s it! By changing the npm directory, you should no longer see the EEXIST error when running npm commands.

Method 4: Reset the User Account Settings

To fix the EEXIST: file already exists, mkdir 'c:\users\user\appdata\Roaming\npm' error in Node.js, you can try resetting the user account settings. Here are the steps to do it:

  1. Open the Command Prompt as an administrator.

  2. Run the following command to reset the user account settings:

    npm config set cache "C:\Users\<your_username>\AppData\Roaming\npm-cache" --global

    This command sets the cache directory to a new location, which should resolve the issue.

  3. Run the following command to clear the npm cache:

  4. Finally, run the following command to update npm:

    npm install npm@latest -g

    This command updates npm to the latest version.

After completing these steps, you should be able to use npm without encountering the EEXIST: file already exists, mkdir 'c:\users\user\appdata\Roaming\npm' error.

Note: If resetting the user account settings does not work, you can also try deleting the npm directory and reinstalling Node.js.

I’m running as an administrator on an XP machine, so I don’t think file permissions would be an issue. I’d check for you, but I’ve since deleted the VM and started over. I do still have the log file, however. Here’s what happened.

I was shutting down a powered on VM. Windows went through its shutdown procedure and the VM screen went black as usual. The power never finally turned off, though. I killed the VMWare process and tried again. I tried restoring a snapshot from both a powered on state and a powered off state. I also tried restoring to a powered on state and a powered off state. Neither worked. Here is the log file:

Aug 10 13:54:18.829: vmui| Log for VMware Workstation pid=3584 version=6.0.0 build=build-45731 option=Release

Aug 10 13:54:18.829: vmui| Hostname=tshepher-wks-xp.kofax.com

Aug 10 13:54:19.178: vmui| HOSTINFO: Seeing Intel CPU, numCoresPerCPU 2 numThreadsPerCore 1.

Aug 10 13:54:19.178: vmui| HOSTINFO: This machine has 1 physical CPUS, 2 total cores, and 2 logical CPUs.

Aug 10 13:54:20.224: vmui| Foundry Init: setting up global state (0 threads)

Aug 10 13:54:20.224: vmui| Foundry Init: version 2, hostType 1, hostName (null), hostPort 0, options 0x203

Aug 10 13:54:23.677: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:24.922: vmui| CVMUIApp::OpenTabInt: opened /vm/#8335740dc6b191ef/

Aug 10 13:54:25.121: vmui| CVMUIApp::OnCtxCurrentObj: /vm/#8335740dc6b191ef/

Aug 10 13:54:27.860: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 10 13:54:27.860: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 10 13:54:29.786: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOn with option default

Aug 10 13:54:38.866: vmui| Mounting virtual machine paths on connection: /db/connection/#88/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:38.883: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:38.883: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 13:54:43.066: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:43.066: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:43.066: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:49.125: vmui| CVMUIApp::MenuButtonClicked: 40060 /vm/#8335740dc6b191ef/

Aug 10 13:54:49.325: vmui| SnapshotLayout::DumpList

Aug 10 13:54:49.325: vmui| Node[0][2]: 3

Aug 10 13:54:49.325: vmui| Node[0][4]: 6

Aug 10 13:54:49.325: vmui| Node[1][4]: 9

Aug 10 13:54:49.325: vmui| Node[2][4]: 0

Aug 10 13:54:49.325: vmui| SnapshotLayout::DumpMatrix

Aug 10 13:54:49.325: vmui| 01234

Aug 10 13:54:49.325: vmui| Row 0: \[#-0-0]

Aug 10 13:54:49.325: vmui| Row 1: \[ +-0]

Aug 10 13:54:49.325: vmui| Row 2: \[ L-*]

Aug 10 13:54:51.997: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:54:51.997: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 13:54:52.628: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:52.794: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 13:54:53.309: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOff with option hard

Aug 10 13:54:53.325: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.438: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.438: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.454: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.454: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.454: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:54:54.554: vmui| SnapshotLayout::DumpList

Aug 10 13:54:54.554: vmui| Node[0][2]: 3

Aug 10 13:54:54.554: vmui| Node[0][4]: 6

Aug 10 13:54:54.554: vmui| Node[1][4]: 9

Aug 10 13:54:54.554: vmui| Node[2][4]: 0

Aug 10 13:54:54.554: vmui| SnapshotLayout::DumpMatrix

Aug 10 13:54:54.554: vmui| 01234

Aug 10 13:54:54.554: vmui| Row 0: \[#-0-0]

Aug 10 13:54:54.554: vmui| Row 1: \[ +-0]

Aug 10 13:54:54.554: vmui| Row 2: \[ L-*]

Aug 10 13:54:54.637: vmui| SnapshotLayout::DumpList

Aug 10 13:54:54.637: vmui| Node[0][2]: 3

Aug 10 13:54:54.637: vmui| Node[0][4]: 6

Aug 10 13:54:54.637: vmui| Node[1][4]: 9

Aug 10 13:54:54.637: vmui| Node[2][4]: 0

Aug 10 13:54:54.637: vmui| SnapshotLayout::DumpMatrix

Aug 10 13:54:54.637: vmui| 01234

Aug 10 13:54:54.637: vmui| Row 0: \[#-0-0]

Aug 10 13:54:54.637: vmui| Row 1: \[ +-0]

Aug 10 13:54:54.637: vmui| Row 2: \[ L-*]

Aug 10 13:54:54.670: vmui| SnapshotLayout::DumpList

Aug 10 13:54:54.670: vmui| Node[0][2]: 3

Aug 10 13:54:54.670: vmui| Node[0][4]: 6

Aug 10 13:54:54.670: vmui| Node[1][4]: 9

Aug 10 13:54:54.670: vmui| Node[2][4]: 0

Aug 10 13:54:54.670: vmui| SnapshotLayout::DumpMatrix

Aug 10 13:54:54.670: vmui| 01234

Aug 10 13:54:54.670: vmui| Row 0: \[#-0-0]

Aug 10 13:54:54.670: vmui| Row 1: \[ +-0]

Aug 10 13:54:54.670: vmui| Row 2: \[ L-*]

Aug 10 13:54:54.687: vmui| SnapshotLayout::DumpList

Aug 10 13:54:54.687: vmui| Node[0][2]: 3

Aug 10 13:54:54.687: vmui| Node[0][4]: 6

Aug 10 13:54:54.687: vmui| Node[1][4]: 9

Aug 10 13:54:54.687: vmui| Node[2][4]: 0

Aug 10 13:54:54.687: vmui| SnapshotLayout::DumpMatrix

Aug 10 13:54:54.687: vmui| 01234

Aug 10 13:54:54.687: vmui| Row 0: \[#-0-0]

Aug 10 13:54:54.687: vmui| Row 1: \[ +-0]

Aug 10 13:54:54.687: vmui| Row 2: \[ L-*]

Aug 10 13:54:55.052: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:55.251: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:54:55.251: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:54:55.284: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:54:55.284: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:54:55.334: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:54:55.334: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:54:55.367: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:54:55.367: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:54:55.400: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:54:55.400: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:54:55.400: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:54:55.400: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:54:55.417: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:54:55.417: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:54:55.417: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##9a/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:54:55.434: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:54:55.434: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:54:55.517: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:55.749: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:55.965: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:56.197: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:54:56.546: vmui| SOCKET 1 recv error 10054: An existing connection was forcibly closed by the remote host

Aug 10 13:55:01.078: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:55:01.078: vmui| Do you want to restore «8.00.280 Pre Install»?

Aug 10 13:55:01.775: vmui| SnapshotTree: Restoring snapshot 6

Aug 10 13:55:01.974: vmui| DUMPER: restoring checkpoint version 7

Aug 10 13:55:02.041: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:02.041: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:02.074: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:02.074: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:02.124: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:02.124: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:02.157: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:02.157: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:02.190: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:02.190: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:02.190: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:55:02.190: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:55:02.190: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:55:02.190: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:55:02.207: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b2/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:02.207: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:02.207: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:55:04.248: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:55:05.261: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:55:05.261: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 13:55:05.958: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 13:55:06.008: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:55:06.074: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:06.074: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:06.108: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:06.108: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:06.157: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:06.157: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:06.191: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:06.191: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:06.224: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:06.224: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:06.224: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:55:06.224: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:55:06.224: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:55:06.224: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:55:06.224: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b4/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:06.224: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:06.224: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:55:08.913: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:55:08.913: vmui| Do you want to restore «Vista Home»?

Aug 10 13:55:09.594: vmui| SnapshotTree: Restoring snapshot 3

Aug 10 13:55:09.710: vmui| DUMPER: restoring checkpoint version 7

Aug 10 13:55:09.776: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:09.776: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:09.810: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:09.810: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:09.843: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:09.843: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:09.893: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:09.893: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:09.926: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:09.926: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:09.926: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:55:09.926: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:55:09.926: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:55:09.926: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:55:09.926: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b5/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:09.926: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:09.926: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:55:36.935: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:55:37.566: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:55:37.566: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 13:55:39.624: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 13:55:39.674: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:55:39.740: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:39.740: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:39.774: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:39.774: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:39.823: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:39.823: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:39.857: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:39.857: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:39.890: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:55:39.890: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:55:39.890: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:55:39.890: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:55:39.890: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:55:39.890: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:55:39.890: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b7/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:39.906: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:55:39.906: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:57:41.289: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:57:41.289: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 13:57:42.003: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 13:57:42.053: vmui| DUMPER: restoring checkpoint version 8

Aug 10 13:57:42.119: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:57:42.119: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:57:42.152: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:57:42.152: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:57:42.202: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:57:42.202: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:57:42.235: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:57:42.235: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:57:42.269: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:57:42.269: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:57:42.269: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:57:42.269: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:57:42.269: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:57:42.269: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:57:42.285: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b8/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:57:42.285: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:57:42.285: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:58:13.592: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 13:58:13.592: vmui| Do you want to restore «Vista Home»?

Aug 10 13:58:14.343: vmui| SnapshotTree: Restoring snapshot 3

Aug 10 13:58:14.391: vmui| DUMPER: restoring checkpoint version 7

Aug 10 13:58:14.455: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:58:14.455: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:58:14.486: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:58:14.486: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:58:14.518: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:58:14.518: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:58:14.566: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:58:14.566: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:58:14.598: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 13:58:14.598: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 13:58:14.598: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 13:58:14.598: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 13:58:14.598: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 13:58:14.598: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 13:58:14.598: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##b9/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 13:58:14.598: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 13:58:14.598: vmui| VMDlg::ShowDialog: Error restoring snapshot: The file already exists.

Aug 10 13:59:12.703: vmui| CVMUIFrame::OnCopyData

Aug 10 13:59:12.703: vmui| CVMUIFrame::OnCopyData -G «D:\VMs\Windows Vista\Windows Vista.vmx»

Aug 10 13:59:24.510: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 10 13:59:24.510: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 10 13:59:24.845: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOn with option default

Aug 10 13:59:25.868: vmui| Mounting virtual machine paths on connection: /db/connection/#ca/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:59:25.884: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:59:25.884: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 13:59:27.178: vmui| CreateFile on pipe
.\pipe\D:\VMs\Windows Vista\Windows Vista.vmx failed 231.

Aug 10 13:59:28.616: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:59:28.616: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 13:59:28.616: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:00:41.898: vmui| SOCKET 2 client closed connection in recv callback

Aug 10 14:02:29.369: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:02:29.369: vmui| Do you want to restore «Vista Home»?

Aug 10 14:02:32.437: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:02:32.437: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:02:33.523: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:02:33.555: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOff with option hard

Aug 10 14:02:33.555: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.274: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.274: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.274: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.306: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.322: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:02:34.801: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:02:34.865: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:02:34.865: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:02:34.897: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:02:34.897: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:02:34.929: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:02:34.929: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:02:34.961: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:02:34.961: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:02:34.993: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:02:34.993: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:02:34.993: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:02:34.993: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:02:34.993: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:02:34.993: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:02:35.009: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##df/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:02:35.009: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:02:35.009: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:02:40.696: vmui| CVMUIApp::MenuButtonClicked: 40046 /vm/#8335740dc6b191ef/

Aug 10 14:02:44.738: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s001.vmdk» (0x18)

Aug 10 14:02:44.786: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s002.vmdk» (0x18)

Aug 10 14:02:44.850: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s003.vmdk» (0x18)

Aug 10 14:02:44.866: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s004.vmdk» (0x18)

Aug 10 14:02:44.882: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s005.vmdk» (0x18)

Aug 10 14:02:44.914: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s006.vmdk» (0x18)

Aug 10 14:02:44.994: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s007.vmdk» (0x18)

Aug 10 14:02:45.026: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s008.vmdk» (0x18)

Aug 10 14:02:45.026: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-000003-s009.vmdk» (0x18)

Aug 10 14:02:45.026: vmui| DISKLIB-LINK : Opened ‘D:\VMs\Windows Vista\Windows Vista-000003.vmdk’ (0x18): twoGbMaxExtentSparse, 33554432 sectors /

16384 Mb.

Aug 10 14:02:45.026: vmui| DISKLIB-LIB : Opened «D:\VMs\Windows Vista\Windows Vista-000003.vmdk» (flags 0x18). 2705A44

Aug 10 14:02:45.026: vmui| DISKLIB-SPARSE: FRAGMENTATION=10% ngt=64 ngf=10 nga=96

Aug 10 14:02:45.026: vmui| DISKLIB-SPARSE: FRAGMENTATION=14% ngt=64 ngf=18 nga=124

Aug 10 14:02:45.026: vmui| DISKLIB-SPARSE: FRAGMENTATION=8% ngt=64 ngf=38 nga=428

Aug 10 14:02:45.026: vmui| DISKLIB-SPARSE: FRAGMENTATION=31% ngt=64 ngf=7 nga=22

Aug 10 14:02:45.026: vmui| DISKLIB-SPARSE: FRAGMENTATION=13% ngt=64 ngf=3 nga=23

Aug 10 14:02:45.042: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.042: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.042: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.042: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=1 ngf=0 nga=0

Aug 10 14:02:45.154: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s001.vmdk» (0x18)

Aug 10 14:02:45.249: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s002.vmdk» (0x18)

Aug 10 14:02:45.297: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s003.vmdk» (0x18)

Aug 10 14:02:45.345: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s004.vmdk» (0x18)

Aug 10 14:02:45.409: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s005.vmdk» (0x18)

Aug 10 14:02:45.457: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s006.vmdk» (0x18)

Aug 10 14:02:45.521: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s007.vmdk» (0x18)

Aug 10 14:02:45.569: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s008.vmdk» (0x18)

Aug 10 14:02:45.585: vmui| DISKLIB-DSCPTR: Opened : «Windows Vista-s009.vmdk» (0x18)

Aug 10 14:02:45.585: vmui| DISKLIB-LINK : Opened ‘D:\VMs\Windows Vista\Windows Vista.vmdk’ (0x18): twoGbMaxExtentSparse, 33554432 sectors / 16384 Mb.

Aug 10 14:02:45.585: vmui| DISKLIB-LIB : Opened «D:\VMs\Windows Vista\Windows Vista.vmdk» (flags 0x18). 26FBDE4

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=3% ngt=64 ngf=1009 nga=29824

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=1% ngt=64 ngf=486 nga=29852

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=3% ngt=64 ngf=734 nga=18727

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=15% ngt=64 ngf=94 nga=591

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=3 nga=1135

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=64 ngf=0 nga=0

Aug 10 14:02:45.585: vmui| DISKLIB-SPARSE: FRAGMENTATION=0% ngt=1 ngf=0 nga=1

Aug 10 14:02:45.585: vmui| DISKLIB-LIB : Defragment chain 2705A44.

Aug 10 14:02:52.870: vmui| DISKLIB-LIB : Defragment chain 26FBDE4.

Aug 10 14:09:34.351: vmui| VMDlg::ShowDialog: Disk defragmentation successfully completed.

Aug 10 14:10:22.400: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:10:22.400: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:10:23.291: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:10:24.588: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:10:24.666: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:10:24.666: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:10:24.713: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:10:24.713: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:10:24.744: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:10:24.744: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:10:24.776: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:10:24.776: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:10:24.807: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:10:24.807: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:10:24.807: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:10:24.807: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:10:24.807: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:10:24.807: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:10:24.807: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##fc/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:10:24.807: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:10:24.807: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:11:32.235: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:11:32.235: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:11:33.548: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:11:33.595: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:11:33.657: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:11:33.657: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:11:33.689: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:11:33.689: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:11:33.736: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:11:33.736: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:11:33.767: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:11:33.767: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:11:33.798: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:11:33.798: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:11:33.798: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:11:33.798: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:11:33.798: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:11:33.798: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:11:33.798: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##fd/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:11:33.798: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:11:33.798: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:13:08.595: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:13:08.595: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:13:09.204: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:13:09.235: vmui| SNAPSHOT: SnapshotExtract failed 7

Aug 10 14:13:09.235: vmui| SNAPSHOT: RevertToSnapshot failed 7

Aug 10 14:13:09.235: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##fe/op/revertToSnapshot/ failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:13:09.235: vmui| SnapshotTree: Restore failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:13:09.235: vmui| Error restoring snapshot: A needed file was not found.

Aug 10 14:13:25.647: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:13:25.647: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:13:26.366: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:13:26.429: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:13:26.475: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:13:26.475: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:13:26.522: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:13:26.522: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:13:26.554: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:13:26.554: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:13:26.585: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:13:26.585: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:13:26.616: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:13:26.616: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:13:26.616: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:13:26.616: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:13:26.616: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:13:26.616: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:13:26.616: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##ff/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:13:26.632: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:13:26.632: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:14:04.425: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:14:04.425: vmui| Do you want to restore «8.00.280 Pre Install»?

Aug 10 14:14:05.426: vmui| SnapshotTree: Restoring snapshot 6

Aug 10 14:14:05.535: vmui| DUMPER: restoring checkpoint version 7

Aug 10 14:14:05.598: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:14:05.598: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:14:05.629: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:14:05.629: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:14:05.676: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:14:05.676: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:14:05.707: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:14:05.707: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:14:05.738: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:14:05.738: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:14:05.738: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:14:05.738: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:14:05.738: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:14:05.738: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:14:05.738: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##100/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:14:05.738: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:14:05.738: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:14:19.618: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:14:19.618: vmui| Do you want to restore «8.00.280 Pre Install»?

Aug 10 14:14:20.524: vmui| SnapshotTree: Restoring snapshot 6

Aug 10 14:14:20.571: vmui| SNAPSHOT: SnapshotExtract failed 7

Aug 10 14:14:20.571: vmui| SNAPSHOT: RevertToSnapshot failed 7

Aug 10 14:14:20.571: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##101/op/revertToSnapshot/ failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:14:20.571: vmui| SnapshotTree: Restore failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:14:20.571: vmui| Error restoring snapshot: A needed file was not found.

Aug 10 14:14:23.416: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:14:23.416: vmui| Do you want to restore «8.00.280 Pre Install»?

Aug 10 14:14:24.166: vmui| SnapshotTree: Restoring snapshot 6

Aug 10 14:14:24.197: vmui| SNAPSHOT: SnapshotExtract failed 7

Aug 10 14:14:24.197: vmui| SNAPSHOT: RevertToSnapshot failed 7

Aug 10 14:14:24.213: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##102/op/revertToSnapshot/ failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:14:24.213: vmui| SnapshotTree: Restore failed: Error restoring snapshot: A needed file was not found.

Aug 10 14:14:24.213: vmui| Error restoring snapshot: A needed file was not found.

Aug 10 14:18:23.611: vmui| CVMUIApp::MenuButtonClicked: 40051 /vm/#8335740dc6b191ef/

Aug 10 14:18:23.611: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:18:23.611: vmui| Do you want to restore «Vista Home»?

Aug 10 14:18:24.407: vmui| SnapshotTree: Restoring snapshot 3

Aug 10 14:18:24.501: vmui| DUMPER: restoring checkpoint version 7

Aug 10 14:18:24.563: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:18:24.563: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:18:24.594: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:18:24.594: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:18:24.626: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:18:24.626: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:18:24.657: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:18:24.657: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:18:24.688: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:18:24.688: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:18:24.688: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:18:24.688: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:18:24.688: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:18:24.688: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:18:24.704: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##103/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:18:24.704: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:18:24.704: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:20:11.632: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:20:11.632: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:20:12.397: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:20:12.443: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:20:12.506: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:20:12.506: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:20:12.537: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:20:12.537: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:20:12.568: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:20:12.568: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:20:12.599: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:20:12.599: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:20:12.631: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:20:12.631: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:20:12.631: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:20:12.631: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:20:12.646: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:20:12.646: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:20:12.646: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##104/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:20:12.646: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:20:12.646: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:24:33.857: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:24:33.857: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:24:35.902: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:24:35.949: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:24:36.027: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:24:36.027: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:24:36.074: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:24:36.074: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:24:36.105: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:24:36.105: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:24:36.136: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:24:36.136: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:24:36.168: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 10 14:24:36.168: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 10 14:24:36.168: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 10 14:24:36.168: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 10 14:24:36.168: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 10 14:24:36.168: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 10 14:24:36.183: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##105/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 10 14:24:36.183: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 10 14:24:36.183: vmui| Error restoring snapshot: The file already exists.

Aug 10 14:25:09.243: vmui| CVMUIApp::MenuButtonClicked: 40060 /vm/#8335740dc6b191ef/

Aug 10 14:25:09.305: vmui| SnapshotLayout::DumpList

Aug 10 14:25:09.305: vmui| Node[0][2]: 3

Aug 10 14:25:09.305: vmui| Node[0][4]: 6

Aug 10 14:25:09.305: vmui| Node[1][4]: 9

Aug 10 14:25:09.305: vmui| Node[2][4]: 0

Aug 10 14:25:09.305: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:09.305: vmui| 01234

Aug 10 14:25:09.305: vmui| Row 0: \[#-0-0]

Aug 10 14:25:09.305: vmui| Row 1: \[ +-0]

Aug 10 14:25:09.305: vmui| Row 2: \[ L-*]

Aug 10 14:25:11.506: vmui| VMDlg::ShowDialog: Are you sure you want to delete snapshot «8.00.280 Pre Install»?

Aug 10 14:25:12.130: vmui| SnapshotTree: Deleting snapshots 6

Aug 10 14:25:12.193: vmui| SNAPSHOT: Deleting ‘D:\VMs\Windows Vista\Windows Vista-000001.vmdk’.

Aug 10 14:25:12.396: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.396: vmui| Node[0][2]: 3

Aug 10 14:25:12.396: vmui| Node[0][4]: 9

Aug 10 14:25:12.396: vmui| Node[1][4]: 0

Aug 10 14:25:12.396: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.396: vmui| 01234

Aug 10 14:25:12.396: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.396: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.411: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.411: vmui| Node[0][2]: 3

Aug 10 14:25:12.411: vmui| Node[0][4]: 9

Aug 10 14:25:12.411: vmui| Node[1][4]: 0

Aug 10 14:25:12.411: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.411: vmui| 01234

Aug 10 14:25:12.411: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.411: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.411: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.411: vmui| Node[0][2]: 3

Aug 10 14:25:12.411: vmui| Node[0][4]: 9

Aug 10 14:25:12.411: vmui| Node[1][4]: 0

Aug 10 14:25:12.411: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.411: vmui| 01234

Aug 10 14:25:12.411: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.427: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.443: vmui| SnapshotTree: Consolidating

Aug 10 14:25:12.521: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:12.599: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.599: vmui| Node[0][2]: 3

Aug 10 14:25:12.599: vmui| Node[0][4]: 9

Aug 10 14:25:12.599: vmui| Node[1][4]: 0

Aug 10 14:25:12.599: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.599: vmui| 01234

Aug 10 14:25:12.599: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.599: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.614: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.614: vmui| Node[0][2]: 3

Aug 10 14:25:12.614: vmui| Node[0][4]: 9

Aug 10 14:25:12.614: vmui| Node[1][4]: 0

Aug 10 14:25:12.614: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.614: vmui| 01234

Aug 10 14:25:12.614: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.614: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.614: vmui| SnapshotLayout::DumpList

Aug 10 14:25:12.614: vmui| Node[0][2]: 3

Aug 10 14:25:12.614: vmui| Node[0][4]: 9

Aug 10 14:25:12.614: vmui| Node[1][4]: 0

Aug 10 14:25:12.614: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:12.614: vmui| 01234

Aug 10 14:25:12.614: vmui| Row 0: \[#-0-0]

Aug 10 14:25:12.614: vmui| Row 1: \[ L-*]

Aug 10 14:25:12.677: vmui| SnapshotTree: Consolidation succeeded.

Aug 10 14:25:13.317: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:14.269: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 10 14:25:14.269: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 10 14:25:14.940: vmui| SnapshotTree: Restoring snapshot 9

Aug 10 14:25:14.987: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:15.065: vmui| DISKLIB-LINK : «D:\VMs\Windows Vista\Windows Vista-000001.vmdk» : creation successful.

Aug 10 14:25:15.143: vmui| SNAPSHOT: Deleting ‘D:\VMs\Windows Vista\Windows Vista-000003.vmdk’.

Aug 10 14:25:15.377: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:15.455: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOn with option default

Aug 10 14:25:15.486: vmui| SnapshotLayout::DumpList

Aug 10 14:25:15.486: vmui| Node[0][2]: 3

Aug 10 14:25:15.486: vmui| Node[0][4]: 9

Aug 10 14:25:15.486: vmui| Node[0][6]: 0

Aug 10 14:25:15.486: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:15.486: vmui| 0123456

Aug 10 14:25:15.486: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:15.502: vmui| SnapshotLayout::DumpList

Aug 10 14:25:15.502: vmui| Node[0][2]: 3

Aug 10 14:25:15.502: vmui| Node[0][4]: 9

Aug 10 14:25:15.502: vmui| Node[0][6]: 0

Aug 10 14:25:15.502: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:15.502: vmui| 0123456

Aug 10 14:25:15.502: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:15.533: vmui| SnapshotLayout::DumpList

Aug 10 14:25:15.533: vmui| Node[0][2]: 3

Aug 10 14:25:15.533: vmui| Node[0][4]: 9

Aug 10 14:25:15.533: vmui| Node[0][6]: 0

Aug 10 14:25:15.533: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:15.533: vmui| 0123456

Aug 10 14:25:15.533: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:15.564: vmui| SnapshotLayout::DumpList

Aug 10 14:25:15.564: vmui| Node[0][2]: 3

Aug 10 14:25:15.564: vmui| Node[0][4]: 9

Aug 10 14:25:15.564: vmui| Node[0][6]: 0

Aug 10 14:25:15.564: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:15.564: vmui| 0123456

Aug 10 14:25:15.564: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:17.156: vmui| Mounting virtual machine paths on connection: /db/connection/#12a/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:17.234: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:17.437: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:17.656: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:17.843: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:18.046: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:18.233: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:18.233: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 14:25:20.215: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:38.227: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:38.227: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:38.242: vmui| CreateFile on pipe
.\pipe\D:\VMs\Windows Vista\Windows Vista.vmx failed 121.

Aug 10 14:25:40.864: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:40.864: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:40.927: vmui| SnapshotLayout::DumpList

Aug 10 14:25:40.927: vmui| Node[0][2]: 3

Aug 10 14:25:40.927: vmui| Node[0][4]: 9

Aug 10 14:25:40.927: vmui| Node[0][6]: 0

Aug 10 14:25:40.927: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:40.927: vmui| 0123456

Aug 10 14:25:40.927: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:41.036: vmui| SnapshotTree: Restored snapshot 9 (poweredOn)

Aug 10 14:25:42.878: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:44.095: vmui| SnapshotLayout::DumpList

Aug 10 14:25:44.095: vmui| Node[0][2]: 3

Aug 10 14:25:44.095: vmui| Node[0][4]: 9

Aug 10 14:25:44.095: vmui| Node[0][6]: 0

Aug 10 14:25:44.095: vmui| SnapshotLayout::DumpMatrix

Aug 10 14:25:44.095: vmui| 0123456

Aug 10 14:25:44.095: vmui| Row 0: \[#-0-0-*]

Aug 10 14:25:46.982: vmui| DUMPER: restoring checkpoint version 8

Aug 10 14:25:47.154: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:25:47.154: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:30:32.531: vmui| CMksCtl::OnFocusEvent: ID:1 result:-20 focusEvent:0

Aug 10 14:30:32.531: vmui| CVMUIFrame::OnFocusEvent: ID: 1 result:ffffffec focusEvent:0

Aug 10 14:32:16.735: vmui| CMksCtl::OnFocusEvent: ID:1 result:-20 focusEvent:1

Aug 10 14:32:16.735: vmui| CVMUIFrame::OnFocusEvent: ID: 1 result:ffffffec focusEvent:1

Aug 10 14:43:55.607: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:43:55.622: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:45:20.862: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:45:20.862: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:53:47.351: vmui| CVMUIApp::MenuButtonClicked: 40021 /vm/#8335740dc6b191ef/

Aug 10 14:53:47.351: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to reset with option hard

Aug 10 14:53:47.351: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:53:50.759: vmui| CreateFile on pipe
.\pipe\D:\VMs\Windows Vista\Windows Vista.vmx failed 231.

Aug 10 14:53:50.775: vmui| SOCKET 3 recv error 10054: An existing connection was forcibly closed by the remote host

Aug 10 14:53:50.775: vmui| SOCKET 3 send called but state is not connected!

Aug 10 14:53:50.775: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:53:52.682: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:53:53.229: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:53:53.229: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:55:21.525: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 14:55:21.525: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:01.935: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:06.406: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:06.406: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:06.406: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:06.406: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:06.406: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:04:08.579: vmui| DUMPER: restoring checkpoint version 8

Aug 10 16:28:38.887: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 10 16:28:38.887: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 10 16:28:39.744: vmui| DUMPER: restoring checkpoint version 8

Aug 10 16:28:39.759: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to resume with option default

Aug 10 16:28:41.410: vmui| Mounting virtual machine paths on connection: /db/connection/#206/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:28:41.426: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:28:41.426: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 16:28:43.108: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:28:47.578: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:28:47.594: vmui| VMDlg::ShowDialog: The frame buffer layout of the current display cannot be made to match the frame buffer layout stored in

the snapshot. The dimensions of the frame buffer in the snapshot are: Max width 2880, Max height 1770, Max size 20393984. The dimensions of the

frame buffer on the current display are: Max width 2360, Max height 1770, Max size 16777216.

Aug 10 16:28:47.594: vmui| Error encountered while trying to restore the state of group SVGA from file «D:\VMs\Windows Vista\Windows Vista.vmss».

Aug 10 16:28:47.594: vmui|

Aug 10 16:35:15.913: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:15.913: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:15.928: vmui| VMDlg::ShowDialog: Your virtual machine did not resume because of a correctable error. To preserve the suspended state so

you can correct the error after the virtual machine is powered off, select Preserve.

Aug 10 16:35:15.928: vmui| To discard the suspended state, select Discard.

Aug 10 16:35:15.928: vmui|

Aug 10 16:35:19.092: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:19.621: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:19.621: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:19.621: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:19.637: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:19.637: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:20.541: vmui| DUMPER: restoring checkpoint version 8

Aug 10 16:35:20.977: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 10 16:35:20.977: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 10 16:35:21.304: vmui| DUMPER: restoring checkpoint version 8

Aug 10 16:35:21.336: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to resume with option default

Aug 10 16:35:22.785: vmui| Mounting virtual machine paths on connection: /db/connection/#236/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:22.800: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:22.816: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 16:35:24.468: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:29.626: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:29.641: vmui| VMDlg::ShowDialog: The frame buffer layout of the current display cannot be made to match the frame buffer layout stored in

the snapshot. The dimensions of the frame buffer in the snapshot are: Max width 2880, Max height 1770, Max size 20393984. The dimensions of the

frame buffer on the current display are: Max width 2360, Max height 1770, Max size 16777216.

Aug 10 16:35:29.641: vmui| Error encountered while trying to restore the state of group SVGA from file «D:\VMs\Windows Vista\Windows Vista.vmss».

Aug 10 16:35:29.641: vmui|

Aug 10 16:35:52.829: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:52.829: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:35:52.844: vmui| VMDlg::ShowDialog: Your virtual machine did not resume because of a correctable error. To preserve the suspended state so

you can correct the error after the virtual machine is powered off, select Preserve.

Aug 10 16:35:52.844: vmui| To discard the suspended state, select Discard.

Aug 10 16:35:52.844: vmui|

Aug 10 16:36:02.864: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:03.628: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:03.628: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:03.628: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:04.189: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:04.204: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:05.139: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 10 16:36:05.139: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 10 16:36:05.466: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOn with option default

Aug 10 16:36:06.791: vmui| Mounting virtual machine paths on connection: /db/connection/#264/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:06.806: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:06.806: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 10 16:36:08.598: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:12.993: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:12.993: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:12.993: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:12.993: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:12.993: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:36:13.055: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:41:55.232: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 10 16:41:55.232: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:02.091: vmui| VMDlg::ShowDialog: By restoring this snapshot, the current state will be lost.

Aug 13 06:53:02.091: vmui| Do you want to restore «Vista ABBYY UAC OFF»?

Aug 13 06:53:03.044: vmui| SnapshotTree: Restoring snapshot 9

Aug 13 06:53:03.075: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOff with option hard

Aug 13 06:53:03.075: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.653: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.653: vmui| Unmounting the vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.669: vmui| Unmounting VM complete: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.669: vmui| Mount state values have changed: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.684: vmui| Reloading config state: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:04.919: vmui| DUMPER: restoring checkpoint version 8

Aug 13 06:53:04.934: vmui| SOCKET 4 recv error 10054: An existing connection was forcibly closed by the remote host

Aug 13 06:53:05.012: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 13 06:53:05.012: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 13 06:53:05.059: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 13 06:53:05.059: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 13 06:53:05.091: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 13 06:53:05.091: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 13 06:53:05.122: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 13 06:53:05.122: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 13 06:53:05.169: vmui| DISKLIB-LINK : File ‘D:\VMs\Windows Vista\Windows Vista-000002-s001.vmdk’ already exists.

Aug 13 06:53:05.169: vmui| DISKLIB-LIB : Failed to create link: The file already exists (41)

Aug 13 06:53:05.169: vmui| SNAPSHOT: SnapshotBranchDisk failed: The file already exists (41).

Aug 13 06:53:05.169: vmui| SNAPSHOT: SnapshotBranch failed: The file already exists (5).

Aug 13 06:53:05.169: vmui| SNAPSHOT: SnapshotExtract failed 5

Aug 13 06:53:05.169: vmui| SNAPSHOT: RevertToSnapshot failed 5

Aug 13 06:53:05.169: vmui| Cmd /vm/#8335740dc6b191ef/cmd/##2dd/op/revertToSnapshot/ failed: Error restoring snapshot: The file already exists.

Aug 13 06:53:05.169: vmui| SnapshotTree: Restore failed: Error restoring snapshot: The file already exists.

Aug 13 06:53:05.169: vmui| Error restoring snapshot: The file already exists.

Aug 13 06:53:05.262: vmui| Destroyed VmdbCnx object with 1 pending, async transactions.

Aug 13 06:53:08.622: vmui| CVMUICmdbar::OnButtonClicked: 6

Aug 13 06:53:08.622: vmui| CVMUIApp::MenuButtonClicked: 40062 /vm/#8335740dc6b191ef/

Aug 13 06:53:08.966: vmui| VMHSVMCbPower: Setting state of VM /vm/#8335740dc6b191ef/ to powerOn with option default

Aug 13 06:53:10.294: vmui| Mounting virtual machine paths on connection: /db/connection/#305/, D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:10.309: vmui| Mount VM completion for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:10.309: vmui| Mount VM Complete: D:\VMs\Windows Vista\Windows Vista.vmx, Return code: OK

Aug 13 06:53:12.310: vmui| CreateFile on pipe
.\pipe\D:\VMs\Windows Vista\Windows Vista.vmx failed 121.

Aug 13 06:53:15.528: vmui| CVMUIApp::MenuButtonClicked: 40060 /vm/#8335740dc6b191ef/

Aug 13 06:53:17.435: vmui| VMX status has been set for vm: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:17.435: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:17.435: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:17.435: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:17.482: vmui| Disconnect check in progress: D:\VMs\Windows Vista\Windows Vista.vmx

Aug 13 06:53:19.325: vmui| CVMUIApp::MenuButtonClicked: 40060 /vm/#8335740dc6b191ef/

Aug 13 06:53:19.388: vmui| SnapshotLayout::DumpList

Aug 13 06:53:19.388: vmui| Node[0][2]: 3

Aug 13 06:53:19.388: vmui| Node[0][4]: 9

Aug 13 06:53:19.388: vmui| Node[0][6]: 0

Aug 13 06:53:19.388: vmui| SnapshotLayout::DumpMa

Icon Ex Номер ошибки: Ошибка во время выполнения 58
Название ошибки: File already exists
Описание ошибки: This error occurs at run time when the new file name, for example, one specified in a Name statement, is identical to a file name that already exists.
Разработчик: Microsoft Corporation
Программное обеспечение: Windows Operating System
Относится к: Windows XP, Vista, 7, 8, 10, 11

Обзор «File already exists»

«File already exists» обычно является ошибкой (ошибкой), обнаруженных во время выполнения. Разработчики тратят много времени и усилий на написание кода, чтобы убедиться, что Windows Operating System стабилен до продажи продукта. К сожалению, такие проблемы, как ошибка 58, могут не быть исправлены на этом заключительном этапе.

После установки программного обеспечения может появиться сообщение об ошибке «This error occurs at run time when the new file name, for example, one specified in a Name statement, is identical to a file name that already exists.». Во время возникновения ошибки 58 конечный пользователь может сообщить о проблеме в Microsoft Corporation. Microsoft Corporation может устранить обнаруженные проблемы, а затем загрузить измененный файл исходного кода, позволяя пользователям обновлять свою версию. В результате разработчик может использовать пакеты обновлений для Windows Operating System, доступные с их веб-сайта (или автоматическую загрузку), чтобы устранить эти ошибки 58 проблемы и другие ошибки.

Что вызывает ошибку времени выполнения 58?

У вас будет сбой во время выполнения Windows Operating System, если вы столкнетесь с «File already exists» во время выполнения. Рассмотрим распространенные причины ошибок ошибки 58 во время выполнения:

Ошибка 58 Crash — это очень популярная ошибка выполнения ошибки 58, которая приводит к завершению работы всей программы. Это возникает, когда Windows Operating System не работает должным образом или не знает, какой вывод будет подходящим.

Утечка памяти «File already exists» — ошибка 58 утечка памяти приводит к тому, что Windows Operating System постоянно использует все больше и больше памяти, увяская систему. Потенциальные триггеры могут быть бесконечным циклом, что приводит к тому, что работа программы запускается снова и снова.

Ошибка 58 Logic Error — Вы можете столкнуться с логической ошибкой, когда программа дает неправильные результаты, даже если пользователь указывает правильное значение. Это видно, когда исходный код Microsoft Corporation включает дефект в анализе входных данных.

Как правило, ошибки File already exists вызваны повреждением или отсутствием файла связанного Windows Operating System, а иногда — заражением вредоносным ПО. Возникновение подобных проблем является раздражающим фактором, однако их легко устранить, заменив файл Microsoft Corporation, из-за которого возникает проблема. Если ошибка File already exists возникла в результате его удаления по причине заражения вредоносным ПО, мы рекомендуем запустить сканирование реестра, чтобы очистить все недействительные ссылки на пути к файлам, созданные вредоносной программой.

Ошибки File already exists

Эти проблемы Windows Operating System, связанные с File already exists, включают в себя:

  • «Ошибка программы File already exists. «
  • «Недопустимая программа Win32: File already exists»
  • «Возникла ошибка в приложении File already exists. Приложение будет закрыто. Приносим извинения за неудобства.»
  • «Не удается найти File already exists»
  • «File already exists не может быть найден. «
  • «Проблема при запуске приложения: File already exists. «
  • «File already exists не работает. «
  • «Отказ File already exists.»
  • «Ошибка в пути к программному обеспечению: File already exists. «

Проблемы File already exists с участием Windows Operating Systems возникают во время установки, при запуске или завершении работы программного обеспечения, связанного с File already exists, или во время процесса установки Windows. Документирование проблем File already exists в Windows Operating System является ключевым для определения причины проблем с электронной Windows и сообщения о них в Microsoft Corporation.

Источник ошибок File already exists

Проблемы File already exists вызваны поврежденным или отсутствующим File already exists, недопустимыми ключами реестра, связанными с Windows Operating System, или вредоносным ПО.

Особенно ошибки File already exists проистекают из:

  • Недопустимые разделы реестра File already exists/повреждены.
  • Зазаражение вредоносными программами повредил файл File already exists.
  • Другая программа (не связанная с Windows Operating System) удалила File already exists злонамеренно или по ошибке.
  • Другое программное обеспечение, конфликтующее с Windows Operating System, File already exists или общими ссылками.
  • Неполный или поврежденный Windows Operating System (File already exists) из загрузки или установки.

Продукт Solvusoft

Загрузка
WinThruster 2023 — Проверьте свой компьютер на наличие ошибок.

Совместима с Windows 2000, XP, Vista, 7, 8, 10 и 11

Установить необязательные продукты — WinThruster (Solvusoft) | Лицензия | Политика защиты личных сведений | Условия | Удаление

Понравилась статья? Поделить с друзьями:
  • Fito ошибка запроса номера прошивки
  • Fifa 14 ошибка сохранения освободите место
  • Fifa mobile ошибка загрузки ресурса как исправить
  • Fitness oxygen villa deluxe ошибка
  • Figma ошибка установки