【Powershell Import / Export photo into / from AD】沉舟侧畔千帆进,病树前头万木春。这篇文章主要讲述Powershell Import / Export photo into / from AD相关的知识,希望能为你提供帮助。
- Import photo to AD
$photopath = d:\\photo\\aaa.jpg $photo = [byte[]](Get-Content $photopath -Encoding byte) Set-ADUser $username -Replace @thumbnailPhoto=$photo
- Export photo from AD
$photopath = d:\\photo\\aaa.jpg $user = Get-ADUser $username -Properties thumbnailPhoto $user.thumbnailPhoto | Set-Content $photopath -Encoding byte
推荐阅读
- #yyds干货盘点#Prometheus 之微服务监控概述件
- Dell 电脑的重装系统以及关键散热驱动建议
- 操作系统引论篇总结
- IaaS开源软件之zstack(OSC中国开源项目的TOP30)
- Python OpenCV cv2.erode()方法用法
- Python OpenCV | cv2.imshow()方法介绍
- Python OpenCv(如何在视频上编写文本())
- Python输出格式用法详细指南
- Python Tkinter中的pack()方法介绍