It is retarded. Why do people insist on writing:
boolean overwrite = check();
if (overwrite == true) {
doSomething();
}
when this does the same, requires less typing and is more natural to read:
When Charles Darwin came up with his incredible theory of evolution, he managed to explain a lot about where we came from and how we became the species we are now. So he answered the WHERE and HOW pretty darn well.
However there is one thing that he did not answer, and to the best of my knowledge has never been answered before. That is the WHY. In specific:
Why do cells want to survive and reproduce? What drives this need?
I have just spend the better part of a day trying to do something seemingly very simple - to restore a System Image I made of my Windows 8.1 system. In the end I finally managed to get the system restored, but it was not without more pain than I can bare at this advanced stage of my life.
A couple of things complicate the restore, so let me give a brief history of what led up to this.
Execute this in EMS (Adapted from here):
$(Foreach ($mailbox in Get-Recipient -ResultSize Unlimited -RecipientType UserMailbox){
$Stat = $mailbox | Get-MailboxStatistics | Select TotalItemSize,ItemCount
New-Object PSObject -Property @{
FirstName = $mailbox.FirstName
LastName = $mailbox.LastName
DisplayName = $mailbox.DisplayName
TotalItemSize = $Stat.TotalItemSize.value.ToBytes()
ItemCount = $Stat.ItemCount
PrimarySmtpAddress = $mailbox.PrimarySmtpAddress
Alias = $mailbox.Alias
}
}) | Select FirstName,LastName,DisplayName,TotalItemSize,ItemCount,PrimarySmtpAddress,Alias |
Export-CSV C:MailboxReport.csv -NTI