0

极端的powershell新手在这里。我感谢任何和所有的帮助。我正在尝试编写一个简单的防洪脚本来与 Sharepoint/Powershell 一起使用。需要它查看字段中的日期时间并将其与当前日期时间进行比较,然后在最后一次提交的 5 秒内停止执行。我现在使用的方法似乎总是评估为真。

#get system datetime (output format - 06/12/2014 07:57:25)
$a = (Get-Date)


# Get current List Item
$ListItem = $List.GetItemById($ItemID)
$DateToCompare = $ListItem["baseline"].AddMilliseconds(5000)

if ($DateToCompare -gt $a)
     {Break}


#set variable to field
$ListItem["baseline"] = $a


#write new item
$ListItem.Update()
Break
4

2 回答 2

0

我没有 Sharepoint 访问权限,因此无法进行全面测试。

你能验证“基线”属性的数据类型吗?

($ListItem["baseline"]).getType().Name

您确定确实添加了 5000 毫秒吗?

Write-Output "NOW: $($curDate) BASELINE: $($DateToCompare) DIFF: $( ($curDate - $DateToCompare).TotalMilliseconds )"

为什么要使用 break 而不是让评估自然结束?以下是您可以重组代码的另一种方法。

#The difference in Milliseconds acceptable
$threshold = 5000

#Get current date, the formatting depends on what you have defined for output. 
$curDate = Get-Date

#Get current list item from SP
$listItem = $List.GetItemById($ItemID)

# Get current List Item's baseline
$DateToCompare = $listItem["baseline"]

Write-Output "NOW: $($curDate) BASELINE: $($DateToCompare) DIFF: $( ($curDate - $DateToCompare).TotalMilliseconds )"

if ( ($curDate - $DateToCompare).TotalMilliseconds -le $threshold ){

    #set variable to field
    $ListItem["baseline"] = $curDate

    #write new item
    $ListItem.Update()
} else {
    #Outside of threshold
}
于 2014-06-12T13:26:56.647 回答
0

所以事实证明我上面给出的脚本是有效的。问题是我在(Get-Date)函数下的时间是服务器时间(中央),而不是本地时间(东部)。

#bring server time up to eastern time
$a = (Get-Date).AddMilliseconds(7200000)


# Get current List Item
$ListItem = $List.GetItemById($ItemID)

#take baseline time and add 5 seconds
$DateToCompare = $ListItem["baseline"].AddMilliseconds(5000)

#stop if script has run in the last 5 sec (loop prevention)
if ($DateToCompare -gt $a)
    {Break}

#stop if the status hasnt changed
if ($ListItem["baselinestatus"] -eq $ListItem["Status"])
    {Break}

#get current activity status
$currentstatus = $ListItem["Status"]

#get current contents of log
$log = $ListItem["Log"]

#append new entry to existing and write it to the log
$newentry = $log + "<br>" + $a + " - " + $currentstatus

#set variable to field
$ListItem["Log"] = $newentry
$ListItem["baseline"] = $a
$ListItem["baselinestatus"] = $currentstatus


#write new item
$ListItem.Update()
于 2014-06-17T19:43:56.277 回答