Ошибка There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly. Please contact your System Administrator to solve the problem при установке eToken PKI Client 5.1 SP1

Обновлено 21.09.2023

There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly

There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly

Всем привет сегодня расскажу как решается ошибка There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly. Please contact your System Administrator to solve the problem при установке eToken PKI Client 5.1 SP1.

Вот скриншот ошибки при попытке установить драйвера для Etoken,

There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly2

There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly2

Данная ошибка выскакивает когда вы хотите установить клиента eToken PKI Client 5.1 SP1 через RDP сессия с другим сервером. Установку драйвера необходимо производить локально не используя RDP, так же к компьютеру не должен быть подключён USB ключ. Если у вас это виртуальная машина, то там можно использовать именно консольное подключение. Самое интересное, что и на 21 сентября 2023 года, решение оказалось рабочим.

Как установить eToken PKI Client 5.1 SP1 удалено через PowerShell

Тут можно попробовать выполнить данную задачу через удаленное управление в PowerShell. Нам поможет вот такой скрипт, главное не забудьте поменять имя компьютера или IP-адрес и путь до дистрибутива, где он у вас располагается:

# Подключение к удаленному компьютеру
$computerName = "comp01.pyatilistnik.org"
$session = New-PSSession -ComputerName $computerName

# Путь к дистрибутиву
$msiPath = "C:\Temp\eToken PKI Client 5.1 SP1.msi"

# Установка дистрибутива на удаленном компьютере
Invoke-Command -Session $session -ScriptBlock {
Start-Process msiexec.exe -ArgumentList "/i $using:msiPath /quiet" -Wait
}

# Показать результат выполнения
Invoke-Command -Session $session -ScriptBlock {
$installed = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -like "*eToken PKI Client*"}
if ($installed) {
Write-Output "Дистрибутив успешно установлен."
} else {
Write-Output "Установка дистрибутива не удалась."
}
}

# Закрытие сессии подключения к удаленному компьютеру
Remove-PSSession $session

Как видите и PowerShell может обойти ошибку "There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly2". Материал сайта pyatilistnik.org

Автор - Сёмин Иван

5 Responses to Ошибка There appears to be a problem with the Smart Card Resource Manager configuration on this computer. The installation will be completed, but may not work correctly. Please contact your System Administrator to solve the problem при установке eToken PKI Client 5.1 SP1

  1. Константин:

    Огонь!!!
    Спасибо тебе мил человек!

  2. Иван Семин:

    Спасибо, рад ,что вам удалось помочь, +1 мне к карме.

  3. 123:

    выручил, мужик, спасибо!

  4. Nice:

    8 years later and using google translator to read it, you saved my life, thanks

  5. alicetails:

    Два дня ковырялся, изучал логи, смотрел выхлопы процессов через дебаггер, пока не загуглил твою статью. Спасибо!

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *