Windows Server 2003r2 + PowerShell2.0 = 帐户过期?

发布于 2024-12-26 01:38:49 字数 335 浏览 1 评论 0 原文

很简单的问题。我如何获得这个字符串:

$endDate = "01/14/2088"

这里的一些代码将当前形式的日期转换为 AD 可以接受的数字。

可以通过以下方式插入到 $accountExpire 中:

格式如下“129955896000000000” 一个大数字。

$newUser.put(“accountExpire”, $accountExpire)

请记住!我们正在谈论的是Windows 2003r2。

Very simple question. How do i get this string:

$endDate = "01/14/2088"

Some code here to tranform the current form of date into numbers which AD can accept.

Into $accountExpire which can be inserted via:

The Format is like this "129955896000000000" A big ass number.

$newUser.put(“accountExpire”, $accountExpire)

REMEMBER! It's Windows 2003r2 we are talking about.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2025-01-02 01:38:49

以下是在 PowerShell 中解决该问题的方法:

$endDate = "01/14/2088"
$dtEndDate = [datetime]::parse($endDate)
$ldtEndDate = $dtEndDate.ToFileTimeUtc()
$ldtEndDate
153693504000000000

您可以下载一个名为 SlxWinDFI(对不起,法语)允许您验证并计算日历和持续时间的长日期。

Here is a way to solve it in PowerShell :

$endDate = "01/14/2088"
$dtEndDate = [datetime]::parse($endDate)
$ldtEndDate = $dtEndDate.ToFileTimeUtc()
$ldtEndDate
153693504000000000

You can download a tool called SlxWinDFI (sorry in french) that allow you to verify and to compute long date from calendar dans duration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文