作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
accounts=$(az ad sp list --show-mine --query [].appDisplayName -otsv)
这会给我一个数组
我想将每个项目传递到此命令中的数组
foreach ($myApp in $accounts){
Get-AzureADApplication -Filter "DisplayName eq $myApp"
}
当我尝试这个时,我在位置处出现语法错误这可能吗
我是 powershell 新手
最佳答案
您是否尝试过将变量括在单引号中?
根据文档,过滤器中的值被引用:
foreach ($myApp in $accounts){
Get-AzureADApplication -Filter "DisplayName eq '$myApp'"
}
关于azure - 如何将数组项中的项传递给使用过滤器的powershell命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72661949/
我是一名优秀的程序员,十分优秀!