我想知道是否有人已经完成了我想做的事情,我有 GPO 在激活 bitlocker 时自动将密钥存储在 AD 中,但似乎我必须手动执行此操作,所以我用这个放了一个登录脚本
脚本
Powershell.exe -ExecutionPolicy Bypass \\192.168.3.150\shares\publica\sistemas\enablebitlocker.ps1
但是由于某些奇怪的原因,我收到这个弹出窗口,我希望它静默运行,或者有没有办法自动说是?
Safety warningRun only the trusted scripts. Scripts from the Internet can be useful, but this script coulddamage your equipment. If you trust this script, use the Unblock-File cmdlet to allow it to run without this messagewarning. Do you want to run
这是 powershell 脚本
$CdriveStatus = Get-BitLockerVolume -MountPoint 'c:'
if ($CdriveStatus.volumeStatus -eq 'FullyDecrypted') {
C:\Windows\System32\manage-bde.exe -on c: -recoverypassword -skiphardwaretest
}
谢谢
当前正在运行的服务器 2012 不允许 GPO powershell
答案1
似乎通过按名称添加脚本而不是按 IP 来修复它
\\apolo\shares\publica\sistemas\enablebitlocker.ps1