Skip to main content

Microsoft Announces Surface


Today at an event in Hollywood, Microsoft unveiled Surface: PCs built to be the ultimate stage for Windows. Company executives showed two Windows tablets and accessories that feature significant advances in industrial design and attention to detail. Surface is designed to seamlessly transition between consumption and creation, without compromise. It delivers the power of amazing software with Windows and the feel of premium hardware in one exciting experience. 
Conceived, designed and engineered entirely by Microsoft employees, and building on the company’s 30-year history manufacturing hardware, Surface is designed to seamlessly transition between consumption and creation, without compromise.
Surface: A New Family of PCs for Windows
June 19, 2012
Conceived, designed and engineered entirely by Microsoft employees, and building on the company’s 30-year history manufacturing hardware, Surface is designed to seamlessly transition between consumption and creation, without compromise.
Additional Product Information
Surface for Windows RT
  • OS: Windows RT
  • Light(1): 676 g
  • Thin(2): 9.3 mm
  • Clear: 10.6” ClearType HD Display
  • Energized: 31.5 W-h
  • Connected: microSD, USB 2.0, Micro HD Video, 2x2 MIMO antennae
  • Productive: Office ‘15’ Apps, Touch Cover, Type Cover
  • Practical: VaporMg Case & Stand
  • Configurable: 32 GB, 64 GB
Surface for Windows 8 Pro
  • OS: Windows 8 Pro
  • Light(1): 903 g
  • Thin(2): 13.5 mm
  • Clear: 10.6” ClearType Full HD Display
  • Energized: 42 W-h
  • Connected: microSDXC, USB 3.0, Mini DisplayPort Video, 2x2 MIMO antennae
  • Productive: Touch Cover, Type Cover, Pen with Palm Block
  • Practical: VaporMg Case & Stand
  • Configurable: 64 GB, 128 GB
(1), (2). Actual size and weight of the device may vary due to configuration and manufacturing process.
Suggested retail pricing will be announced closer to availability and is expected to be competitive with a comparable ARM tablet or Intel Ultrabook-class PC. OEMs will have cost and feature parity on Windows 8 and Windows RT. 
For more information about Surface, visit http://www.surface.com.
Founded in 1975, Microsoft (Nasdaq “MSFT”) is the worldwide leader in software, services and solutions that help people and businesses realize their full potential.
Some information relates to a prerelease product, which may be substantially modified before it is commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
For broadcast download:
Visit http://www.microsoft.com/news for broll clips
For more information, press only:
Rapid Response Team, Waggener Edstrom Worldwide, (503) 443-7070,rrt@waggeneredstrom.com
Note to editors: For more information, news and perspectives from Microsoft, please visit the Microsoft News Center at http://www.microsoft.com/news. Web links, telephone numbers and titles were correct at time of publication, but may have changed. For additional assistance, journalists and analysts may contact Microsoft’s Rapid Response Team or other appropriate contacts listed at http://www.microsoft.com/news/contactpr.mspx.

Comments

Popular posts from this blog

Static Keyword in C#, unleashing Static keyword in C#

What is Static keyword in C# “Static” keyword can be used for declaring a static member . The keyword Static can be applied to the Classes, field, method, properties, operator, event and constructors. Methods and variable  which we use as static doesn't need an instance to be created of a class. Example of static keyword class testclass {     public static int statint;     public static void squareroot(); } we can call the above static method and variable without creating the instance of the class How to call a static method  testclass.squareroot(); apart from this the static method can use only the static variables of same class.

LMS

There are many opensource LMS packages built in java and other languages. Check the list below Docebo eFront Dokeos Claroline ATutor ILIAS OLAT Sakai .LRN openelms Ganesha Choose the best

delete service in windows server 2008/server 2003/xp/ vista

How to delete a service in windows server 2008/server 2003/xp/ vista. Note: There are some services which are system specific and cannot be stopped, Be careful while deleting a service The command to delete the service is "sc delete " The above command executes in DOS prompt.  An error will will come when you execute this command: "[SC] OpenService FAILED 5:" To remove this error and to execute the command in good manner.  When you open the command prompt , run it as administrator and then type : "sc delete " This is how to delete the service Start/Stop the service  You  can also start the service by Control panel-->administrative tools--> Services Right Click on the selected service and start/stop it Ps Note: Before deleting a service in windows server 2008/server 2003/xp/ vista you should confirm the name of service and research in google the effect after you  delete a service. It is difficult to recall the service back...