我使用Microsoft AIP本地扫描仪的凭据是什么?



我目前正在尝试为本地文件夹实现AIP本地扫描仪。

以下是我所遵循的文档/教程:

Youtube教程
  • <
  • 扫描仪需求/gh>
  • 微软开始开发扫描仪

我已经满足了扫描仪的所有要求,但是当我试图安装扫描仪时,我的问题出现了。

$pscreds = Get-Credential xxxxx.onmicrosoft.comhlaliberte -Message ScannerAccount
Install-AIPScanner -SqlServerInstance aipscannersqlexpress -Profile TESTCLUSTER -ServiceUserCredentials $pscreds

但是我总是得到这个错误:Install-AIPScanner : Some or all identity references could not be translated.

我还尝试使用:

为扫描仪获取Azure AD令牌
Set-AIPAuthentication -AppId "myAppId" -AppSecret "mySecret" -DelegatedUser "hlaliberte@secureexchanges.onmicrosoft.com" -TenantId "myTenantId" -OnBehalfOf $pscreds

但是它失败了,错误是:Set-AIPAuthentication : Unable to authenticate and setup Microsoft Azure Information Protection

我想我没有向Get-Credential命令提供正确的凭据。当我阅读文档时,它说要像这样注册用户:"<Domain><user name>".主域是域本身吗?所以它看起来像这样:"xxxxx.onmicrosoft.comhlaliberte"我的azure AD密码的那个帐户。还是其他原因?

如果您使用本地管理员登录,则不需要在Install-AIPScanner步骤中包含凭据。您提供的凭据必须是具有在该机器上安装扫描程序的权限的域或本地机器凭据。

您在set - aipauthentication cmdlet中设置的帐户也应该是将用于运行扫描程序的域或本地帐户。

这台机器只有AAD连接吗?

相关内容

  • 没有找到相关文章

最新更新