Some days ago Nokia launched the Lumia 900 together with AT&T.
And here some ads about the smart phone beta test
|
Some days ago Nokia launched the Lumia 900 together with AT&T.
And here some ads about the smart phone beta test

Just a quick link to a Private Cloud Case Study done by Microsoft about one of our partners.
Microsoft Case Study: HCI Solutions
This week I could present some of the new features in Windows Server 8 Hyper-V on an event organized by Microsoft Switzerland in a very cool location. I am talking about D-ON-D (Datacenter on demand) which is run by Kybernetika.
D-ON-D offers you to rent servers and rooms for events, workshops, test project or demos.
If you want to know more about what D-ON-D offers check out the websites:

If you try to connect to a NetApp CIFS share via Windows 8 beta you may cannot access the share because of the following error:
SMB connections fail with error “Invalid Signature”
Cause:
This behavior may be due to the “Secure Negotiate” feature added to SMB 2.24 for the Windows “8″ beta release, which relies on the correct signing of error responses by all SMB 2 servers (including those supporting only protocol versions 2.0 and 2.1). Some third-party file servers do not respond with a signed error response causing the connection to fail.
Microsoft has two workrounds for this problem:
You can disable “Secure Negotiate” with the following PowerShell command:
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" RequireSecureNegotiate -Value 0 -Force
Checkout the Microsoft KB2686098
Only some minutes after I released this blog post I got an anwser from Glenn Sizemore (NetApp) how you can enable SMB 2 signing on the NetApp.
ONTAP CLI:
options cifs.smb2.signing.required on
PowerShell:
ipmo DataONTAP Connect-NaController controller Set-NaOption cifs.smb2.signing.required off
Thanks for that.
Since last weekend System Center 2012 RTM downloads are ready for Volume License Customer and Monday night the SC2012 downloads are also available for MSDN and TechNet subscription owners.

In Windows Server 8 beta, Microsoft released a lot of new features for Cluster Shared Volumes (CSV). One of them is CSV Cache. CSV Cache gives you the possibility to allocate system memory (RAM) of the cluster nodes as cache. This can improve the performance of read requests in workloads like Hyper-V.
Now to enable the CSV Cache on a cluster you have to do this with Windows PowerShell.
(Get-Cluster). SharedVolumeBlockCacheSizeInMB = 512
Get-ClusterSharedVolume “Cluster Disk 1” | Set-ClusterParameter CsvEnableBlockCache 1
If you want to know more about CSV Cache, you can read this blog post from Elden Christensen on the Failover Clustering and Network Load Balancing Team Blog.