问题标签 [bitlocker]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
508 浏览

compatibility - 如何通过 C++ 检查操作系统是否支持 BitLocker?

我想知道如何确定操作系统是否支持 BitLocker,我可能需要检查一些特定的注册表或设置吗?

0 投票
2 回答
409 浏览

delphi - 使用delphi检测bitlocker分区状态

我之前用 bitlocker 加密了我的一个分区,它运行良好。现在我如何检测这个分区是否打开?我的意思是分区是否被锁定?

0 投票
1 回答
6780 浏览

c# - 在没有管理员的情况下从 c# 以编程方式检测 BitLocker

从各种线程中,我拼凑出如何以编程方式检查 BitLocker,如下所示:

但它只有在进程具有管理员权限时才有效。

任何老 Windows 用户都可以转到资源管理器,右键单击驱动器,然后查看它是否已打开 BitLocker,这似乎很奇怪,但程序似乎无法完成此操作。有谁知道这样做的方法?

0 投票
0 回答
120 浏览

linux - Vagrant 需要很长时间才能挂载默认共享文件夹

流浪者 1.9

虚拟机 5.1.12

基础框: https ://github.com/CommanderK5/packer-centos-template/releases/download/0.7.2/vagrant-centos-7.2.box

当前笔记本电脑:戴尔 Latitude E7270 上的 Windows7,bitlocker 上有 250gb ssd。

因此,除此之外,我之前在另一台计算机上使用具有相同版本的 vagrant、virtualbox 和 base box 的 vagrant,该计算机具有没有 bitlocker 的机械硬盘。一切都很好,直到我升级了我的笔记本电脑。

在 vagrant 中,如果我们vagrant init在文件夹中执行并启动 vagrant,它会将带有 VagrantFile 的文件夹挂载到客户机上的 /vagrant。在当前的笔记本电脑上,vagrant 需要很长时间才能挂载这个共享文件夹。

你认为它的 bitlocket 可能会导致这个问题吗?

谢谢

0 投票
0 回答
531 浏览

vb.net - Process.Start() 与“manage-bde.exe”在 VB.NET 中崩溃

我正在尝试将 manage-bde.exe 作为 VB.net 中的新进程启动,但是当它尝试启动 proc 时,Bitlocker 崩溃。谁能告诉我我在这里做错了什么?这段代码是从 C# 转换而来的,它整天都在工作......

代码:

0 投票
2 回答
1036 浏览

c# - Using ManagementObjectSearcher to get an exact BitLocker WMI value

Good Day All, I am having an issue with ManagementObjectSearcher. I am trying to query the exact value that i want but cannot find any reference to the precise syntax requirements and I continually receive an error when trying to finish out the code to be what I need it to be.

the specific portion of code that is presenting the issue is when I check for the drives Encryption state(I know for a fact that my disk is not encrypted on this machine, which is why that is the only value i have if'd currently). Any assistance in getting this code to pull the correct value would be greatly appreciated.

I've tried both the "=" method and the "LIKE" method with no change in output.

0 投票
2 回答
619 浏览

active-directory - AD 默认情况下是否以明文形式存储 Bitlocker 密钥?

我正在没有 TPM 的 Windows 10 笔记本电脑上实施 Bitlocker。有人说 Bitlocker 默认以明文形式在 AD 中存储密钥 - 这是真的吗?

0 投票
1 回答
15056 浏览

linux - 如何在 Ubuntu 16.04 中访问 BitLocker 加密的驱动器?

我正在使用 Ubuntu 16.04 和 Windows 10。我使用 BitLocker 加密了我的驱动器。现在我的加密驱动器在 ubuntu 16.04 中不可见。但我想使用 Windows 之类的 BitLocker 密码访问我的加密驱动器。我怎样才能做到这一点?

0 投票
1 回答
665 浏览

vb.net - VB.net 从 Active Directory 获取 bitlocker 密码 ID

我有一个 VB.net 程序,我正在尝试添加一个 bitlocker 查找工具,该工具将在活动目录中搜索机器名称,并显示“密码 ID”以及“恢复密码”

到目前为止,我的脚本/代码完美地用于查找和显示恢复密码,但我无法让它显示密码 ID。

我试过了:

返回错误“System.InvalidCastException:从类型 'Byte()' 到类型 'String' 的转换无效。”

返回“System.Byte []”

返回“System.DirectoryServices.ResultPropertyValueCollection”

到目前为止,在我的搜索中,我只看到了 C# 示例,并且无法翻译。

但是,恢复密码也是如此:

这是我对上下文的较大片段:

0 投票
2 回答
179 浏览

c# - 此 WMI 方法中的“精度级别”是什么意思?

我有一个应用程序需要在 WMI 中运行Win32_EncryptableVolume类的GetConversionStatus方法来检测有关当前机器上 Bitlocker 状态的各种信息。

此方法的MSDN 页面定义了一个名为“PrecisionFactor”的参数。他们将其描述为:

一个从 0 到 4 的值,用于指定精度级别

这个是来做什么的?有谁知道这实际上会影响什么或这对输出有什么影响?是否有关于此参数实际作用的英文描述?