Categories
Business Central Docker Dynamics NAV Microsoft Windows Server 2016

hcsshim::ImportLayer – failed failed in Win32: The system cannot find the path specified. (0x3)

While creating a new Docker Container the script stopped with the following error message:

re-exec error: exit status 1: output: hcsshim::ImportLayer – failed failed in Win32: The system cannot find the path specified. (0x3)

Solution:

  1. Open PowerShell ISE as Administrator
  2. Execute the following command to clear the images:
    docker images prune
  3. Execute the following command to clean everything (Images, Containers, Cache and Networks):
    docker system prune

Did my solution solve your problem? Leave a reply.

Categories
DevOps Microsoft

AAD user appearing twice on DevOps

Of course before to continue verify that in the Organization the user has only one account.

Opened this issue with Microsoft
https://developercommunity2.visualstudio.com/t/AAD-user-appears-twice-on-DevOps/1385302
and sharing solution:

  1. Navigate to Organization Settings -> Users
  2. Remove the user.
  3. Re-add the account by typing in the entire email address without using the suggested identity in the dropdown.
  4. Ask the user to clear all cookies/cache and navigate directly to aex.dev.azure.com from an inPrivate/incognito browser.
  5. Make a new query in the projects the use was assigned filtering for “Assigned To contains” and the first letters of the name so that you can verify if there are still items assigned to the wrong account that can be re-assigned.

Did my solution solve your problem? Leave a reply.