我应该在我的 BoxStarter 脚本中包含重启命令吗?

Should I ever include a reboot command in my BoxStarter script?

问题

当声明 $Boxstarter.RebootOk=$true 时,是否有理由在 BoxStarter 脚本中包含 if (Test-PendingReboot) { Invoke-Reboot }

背景

我最近发现了 BoxStarter,并注意到许多脚本都包含以下代码:if (Test-PendingReboot) { Invoke-Reboot }。 这包括那些具有以下选项的脚本:$Boxstarter.RebootOk=$true$Boxstarter.AutoLogin=$true;即允许重新启动并根据需要继续的那些。

BoxStarter site 上作出以下声明:

Boxstarter intercepts all Chocolatey install commands and checks for pending reboots. If a pending reboot is detected, Boxstarter will reboot the machine and automatically log the user back on and resume the installation.

注意:我知道在进行不会更新 PendingReboot 标志的更改后有时可能需要 Invoke-Reboot;例如使某些注册表更改生效;我的问题纯粹与包含在 if (Test-PendingReboot) 语句中的此命令的使用有关。

更新:也在 Google 组中询问:https://groups.google.com/forum/#!topic/boxstarter/D0kiRqJyiCY

就我个人而言,我绝不会这样做,不会。我依靠 Boxstarter 帮我处理这件事,因为它在内部做同样的检查,所以在我的脚本中另外做这件事是重复工作。

正如您提到的,有时您知道由于某些外部原因需要重新启动,所以我会直接调用 Invoke-Reboot,但这总是会被一些保护条款包围以防止它每次都发生时间,因为我一直希望我的脚本是可重复的。

我只发现了一个实际需要这样做的情况,就像 Gary 提到的那样,我将其包装在一些逻辑中以避免滚动连续重启。

我们 运行 遇到 "freshly minted" 服务器有一些挂起的文件重命名的情况,即使多次重启也从未真正消失,所以如果我们 运行 Boxstarter 我们最终不得不如果我们可以在无限次重启之间登录,请尽快终止 cmd window。

生成的脚本可以是 运行 来自 Install-BoxstarterPackage -DisableReboots <gistUrl> 的要点,以清理您放入 $badFile 中的任何文件(您可以列出一个列表)。

此脚本需要注意的一点是它需要交互式提示登录凭据。如果您信任您的系统和网络,您可以使用纯文本密码和 assemble 凭据,我假设最坏的情况。

抱歉,这似乎破坏了语法荧光笔。

Import-Module $env:appdata\Boxstarter\Boxstarter.Common

$badSpoolReg = '\??\C:\Windows\system32\spool\PRTPROCS\x64_hpcpp130.dll'
$badSpoolFile = 'C:\Windows\system32\spool\PRTPROCS\x64_hpcpp130.dll'

# Next bits taken from the 'Get-PendingReboot' module on the Script Gallery.
$Computer = $env:COMPUTERNAME
$HKLM = [UInt32] "0x80000002"
$WMI_Reg = [WMIClass] "\$Computer\root\default:StdRegProv" 

## Query PendingFileRenameOperations from the registry 
$RegSubKeySM = $WMI_Reg.GetMultiStringValue($HKLM,"SYSTEM\CurrentControlSet\Control\Session Manager\","PendingFileRenameOperations") 
#$RegSubKeySM # Debug print of the list if you want to run by hand

$RegValuePFRO = $RegSubKeySM.sValue | where { $_ } # Ignore empty values
#$RegValuePFRO # Debug print of the list if you want to run by hand

# Credential is required for Create-BoxstarterTask
# Create-BoxstarterTask required to call Invoke-FromTask
# see https://github.com/mwrock/boxstarter/issues/121  
$cred = Get-Credential
Create-BoxstarterTask $cred

# Perhaps could be improved using set membership comparison?
# like (if $badSpoolReg in $RegValuePFRO.Values?)
foreach ($path in $RegValuePFRO) {
    if ($path -contains $badSpoolReg) {
        write-output "Bogey on my six!"
        Get-Service spooler | stop-service
        Invoke-FromTask "rm -fo $badSpoolFile" # Files in "protected" paths require extra work to remove
        $Boxstarter.RebootOk = $true # Need to enable this to allow Invoke-Reboot to work
        Write-output "Took out the bogey, resetting system state"
        Invoke-Reboot # Manually called but within a fairly good gate
    } else {
        write-output "No bogeys sighted Captain!"
    }
}
Remove-BoxstarterTask