ProxyAddress AD 属性中的空行
我制作了 Powershell 脚本来更新 AD 中的 ProxyAdrress 属性,但该脚本保存了额外的空行。如何删除该空行?
I made Powershell script for update de ProxyAdrress attribute in the AD, but the script save a extra blank line. How can a remove that blank line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用 split 来分隔两个代理地址。
如果我使用
-split “,”
,我也会得到相同的空白解决方案: 不要使用
-split “,”
获取预期输出参考:https://activedirectorypro.com/how-to-bulk-update-proxyaddresses-attribute/
Assuming you are using split for separating two proxy addresses.
Same Blank Space I am also getting if I am using
–split “,”
Solution: Do not use
-split “,”
Getting the expected outputReference : https://activedirectorypro.com/how-to-bulk-update-proxyaddresses-attribute/