Skip to content

Commit

Permalink
install script warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hsu committed Jun 28, 2017
1 parent 7cfcac6 commit 1751307
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions install/install.ps1
Expand Up @@ -3,6 +3,16 @@ param (
[switch] $skipCleanup
)

Write-Host "ACR Credential Helper currently does not support Windows Credential Manager because Windows Credential Manager only support saving tokens with less than 2.5KB blob size."
Write-Host "1. A json file will be used to store all your credentials."
Write-Host "2. You will have to re-login to any existing Docker registry after the installation."
$acceptFileStore = Read-Host "Continue? [Y/n]"

if (!$acceptFileStore.ToLower().StartsWith("y")) {
Write-Error "User aborted."
break
}

$systemStr = (Get-WmiObject -Class Win32_ComputerSystem).SystemType
if ($systemStr -match '(x64)') {
$arch = "amd64"
Expand Down

0 comments on commit 1751307

Please sign in to comment.