Surface Pro – Availability Date and Price announced for Switzerland

Microsoft Surface Pro

Finally Microsoft just announced the Surface Pro prices and dates for the European countries such as Switzerland.

Surface Pro will be available in Switzerland on May 30th, priced as follows:

  • 64 GB Surface Pro:   CHF 959.-
  • 128 GB Surface Pro:   CHF 1‘059.-

The following accessories will be available at launch:

  • Touch Cover at CHF 130.- (recommended retail price)
  • Type Cover at CHF 140.- (recommended retail price)
  • Wedge Touch Mouse Surface Edition at CHF 79.90 (recommended retail price)

You should definitely checkout my review on the Surface Pro and the review on the Surface RT which is already available in Switzerland.

Windows 8 or Windows Server 2012 cannot access NetApp SMB/CIFS share

Windows 8 Logo

This is a updated post from a older post which I have done with the Windows 8 Consumer Preview: Windows 8 Consumer Preview: Cannot acces NetApp CIFS share

If you try to connect to a NetApp SMB or CIFS share via Windows 8 or Windows Server 2012 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 3.0 for Windows Server 2012 and for Windows 8, 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 workarounds for this problem:

  • Enable signing on the third-party file server.
  • Disable “Secure Negotiate” on the client.

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

Enable SMB signing on the NetApp:

ONTAP CLI:

options cifs.smb2.signing.required on

PowerShell:

ipmo DataONTAP Connect-NaController controller Set-NaOption cifs.smb2.signing.required on

“Company Portal” Windows Intune Client for Windows 8 and RT now in the store

Windows intune Company Portal

Microsoft just released the Company Portal Windows App which is basically a Windows Intune Client, which allows you to deploy Apps on your Windows Intune managed devices.

App Description:

The Company Portal app helps you search, browse and install apps made available to you by your company, through the Microsoft Windows Intune online service. Apps can be installed without requiring a connection to your corporate network. You can also enroll your personal computers and devices in the service and locate contact information for your IT team.
Note: This app requires your company to have an active Windows Intune subscription and to have provided you with an organizational ID to sign in.
You can get it in the Windows Store.

Windows Server 2012 and Windows 8 RTM Calendar

Windows Server 2012 RC Logo

Today Microsoft announced the availability of the Windows Server 2012 and Windows 8 RTM (Release to Manufacture). Now when will the RTM be available for customers, developers and IT professionals?

  • August 15th: Developers will be able to download the final version of Windows 8 via your MSDN subscriptions.
  • August 15th: IT professionals testing Windows 8 in organizations will be able to access the final version of Windows 8 through your TechNet subscriptions.
  • August 16th: Customers with existing Microsoft Software Assurance for Windows will be able to download Windows 8 Enterprise edition through the Volume License Service Center (VLSC).
  • August 16th: Microsoft Partner Network members will have access to Windows 8.
  • August 20th: Microsoft Action Pack Providers (MAPS) receive access to Windows 8.
  • September 1st: Volume License customers without Software Assurance will be able to purchase Windows 8 through Microsoft Volume License Resellers.
  • September 4th: Windows Server 2012 will be GA (generally available)
  • October 26th: Windows 8 will be GA (generally available)

On the Windows Server Blog Microsoft mentioned that Windows Server 2012 will be available to our volume licensing customers in the next couple of weeks. Maybe this means the same dates as Windows 8.

Updating offline VHDs via Virtual Machine Servicing Tool

VHDX

Some weeks ago Microsoft announced the beta of a solution accelerator called Virtual Machine Servicing Tool 2012. The VMST 2012 allows you to update Virtual Machines in a System Center Virtual Machine Library, update stopped and saved state virtual machine on a Hyper-V host, update SCVMM Virtual Machine templates and to injecting update packages in offline virtual hard disks (VHD) disks stored in a System Center Virtual Machine Manager Library.

This guide should give show a quick insight into the Virtual Machine Servicing Tool.

After you have installed the Virtual Machine Servicing Tool and added the psexec to the bin folder of the tool you have to do a quick configuration of your environment.

First you have to add the servers in your environment. You have to add the SCVMM and the SCCM or WSUS server.

The second configuration step is to choose the Hyper-V hosts which will be used for the maintenance and servicing jobs. You need this if you update an offline virtual machine which is stored in your library. The virtual machine will be deployed on these hosts and will be patched before they will be saved in the SCVMM library again.

The Maintenance host for servicing offline virtual hard disk will be the place where VHD will be attached and the update packages will be injected.

 

After you have done these simple setup steps you can now start patching your offline Virtual Hard Disks (VHDs). In the VMST Console you can create a new Servicing Job.

First you have to choose a name for the servicing job and a update source, this could be a WSUS server or update packages stored in a folder.

Now you have to select the VHD you want to update.

You have to select one of your maintenance hosts

And after the servicing job has been started you can watch the process in your VMST console.

 

This is how simple it is to patch offline virtual machines, you can even schedule servicing tasks, so they run after every patch day.

Steve Ballmer: And One More Thing (Perceptive Pixel, WPC 2012)

Microsoft not only announced the release date of Windows 8 and Windows Server 2012 at WPC 2012 they had also an “one more thing”. Steve Ballmer announces the acquisition of Perceptive Pixel at WPC 2012 as Jefferson Han takes the stage. If someone has so money left, he could by me one of these for Christmas. ;-)

How to Install VPN on Windows Server 2012

Windows Server 2012 RC Logo

This post should show you how to install a VPN Server on Windows Server 2012. This post covers a VPN server for a small environment or for a hosted server scenario. This post is note made for enterprise deployments. If you want to run a VPN solution in your enterprise you should definitely look at Direct Access which is much easier to deploy in Windows Server 2012 than in Windows Server 2008 R2.

For a VPN server on Windows Server 2008 R2 check this post: How to Install VPN on Windows Server 2008 R2

  1. Install the role “Remote Access” via Server Manager or PowerShell
  2. Continue reading