每当我尝试运行 Windows 2008 R2 的任务调度程序时,我都会遇到错误。每次我尝试运行它时,任务调度程序都会崩溃并报告以下内容:
问题签名:
Problem Event Name: CLR20r3
Problem Signature 01: mmc.exe
Problem Signature 02: 6.1.7600.16385
Problem Signature 03: 4a5bc808
Problem Signature 04: System.Windows.Forms
Problem Signature 05: 2.0.0.0
Problem Signature 06: 50c29e85
Problem Signature 07: 151f
Problem Signature 08: 18
Problem Signature 09: Exception
OS Version: 6.1.7601.2.1.0.16.7
Locale ID: 1033
Run Code Online (Sandbox Code Playgroud)
我一直在网上寻找,但到目前为止,我一直在寻找解决此问题的不同结果,并且想知道这里是否有人以前遇到过这个问题。我读到这个问题可能是由于 Microsoft Windows 的安全更新 (KB2449742) 而通过卸载它我将能够解决这个问题,但是我无法在服务器的任何地方找到它。
补丁明智,一切都是最新的。此外,我尝试运行修补程序 KB2688730 以查看在进行了一些在线研究后是否可行,但是该修补程序不适用于计算机。
如果有人可以提供一些有关如何解决此问题并使任务调度程序再次运行的信息,那将非常有帮助!
我正在尝试验证我正在处理的每台服务器中的文件系统分区是否正确对齐。我有以下脚本,当我尝试运行时,将根据我使用的 if 语句(其中一个被注释掉)声明所有虚拟服务器已对齐或未对齐:
$myArr = @()
$vms = get-vm | where {$_.PowerState -eq "PoweredOn" -and $_.Guest.OSFullName -match "Microsoft Windows*" } | sort name
foreach($vm in $vms){
$wmi = get-wmiobject -class "win32_DiskPartition" -namespace "root\CIMV2" -ComputerName $vm
foreach ($partition in $wmi){
$Details = "" | Select-Object VMName, Partition, Status
#if (($partition.startingoffset % 65536) -isnot [decimal]){
if ($partition.startingoffSet -eq "65536"){
$Details.VMName = $partition.SystemName
$Details.Partition = $partition.Name
$Details.Status = "Partition aligned"
}
else{
$Details.VMName = $partition.SystemName
$Details.Partition = $partition.Name
$Details.Status = "Partition not aligned" …Run Code Online (Sandbox Code Playgroud) 我正在尝试创建 Dell PowerEdge T320 服务器的映像,如果该服务器出现任何问题,该映像可用于将来的备份。最初我尝试创建一个 bartPE 并使用 ghost32.exe 来执行此操作,但是由于驱动程序问题和 bartPE 太旧,我无法完成此操作。
是否有任何已知的方法可以为 Windows 2008R2 服务器创建映像,而无需解决如何制作 bartPE 或 winPE 的麻烦?
提前致谢!