Turn off the Ad Banner  

To print: Select File and then Print from your browser's menu.

    -----------------------------------------------
This story was printed from CdrInfo.com,
located at http://www.cdrinfo.com.
-----------------------------------------------


Appeared on: Monday, August 29, 2005
Windows Vista Public Beta 1 - Part 2


1. Introduction

A couple of years after the first releases of Windows Longhorn, Microsoft has released Windows Vista public Beta 1 (codename Longhorn). A few months later Microsoft will also deliver beta 2 and finally, the final release of Windows Vista is scheduled in the year 2006. Microsoft promises us that this new operating system will deliver a new, powerful security system, reliability and performance improvements.

More specifically, Amy Stephan, a senior product manager with the Windows client unit has stated that Windows Vista will:

  • launch applications 15% faster than Windows XP does
  • boot PCs 50% faster than they boot currently and will allow PCs to resume from standby in two seconds
  • allow users to patch systems with 50% fewer reboots required (we hope so)
  • reduce the number of system images required by 50%
  • enable companies to migrate users 75% faster than they can with existing versions of Windows.

Stephan also said that "Microsoft's goal is to allow administrators to install Longhorn on new systems in 15 minutes".

We tested the Beta version for you, in order to find out if Microsoft's promises are going to become reality. Let's take a look, starting with the technical improvements. This review will be updated soon, to include screenshots of visual improvements as well as other pertinent information.

 


2. Technical Improvements Page 1

In this first part, I will introduce some technical information as is has been given by Microsoft. For the visual changes (screenshots, etc) please wait for an update of this review soon. (It will be available in the Visual Improvements section). So let's start with the technical information.

According to Microsoft, Windows Vista will provide more visual effects to users in order to satisfy their needs (animation, transitions, fades, all in a glitch-free environment). Windows Vista introduces a series of new visual effects such as AERO, Microsoft Windows Presentation Foundation, formerly code named "Avalon" and Extensible Application Markup Language (XAML) technologies with the help of Windows Graphics Foundation 2.0 (WGF), also known as Direct3D10.

New Graphics Driver Model: Windows Vista introduces a new graphic driver model. This is used to enable constant use of the graphics processor unit (GPU) for the rich graphics used by the operating system and the applications. The GPU memory manager and scheduler in this driver model enables also multiple graphics applications to use the GPU to run simultaneously.

AERO (Authentic, Energetic, Reflective, Open ): AERO is the user experience guidelines for Windows Vista, governing the look and feel of the operating system. These guidelines express not just the way the pixels are drawn, but how the user interacts with the system and the feelings it should evoke.

For 90 percent of all applications, looking like an AERO application means developers need to just do a few things:

  • Do not hard code any colors. All colors should be based on system or theme metrics and use comctl32.dll v6. This will give developers the latest look and feel for their buttons, text boxes, and so on.
  • Use theme painting APIs if they want to owner-draw any elements that look like standard system elements.
  • Use the correct color, layout, and writing styles. This matters when trying to make a positive experience.
  • Use AERO Wizard (the framework on which all new wizards should be built) and Task Dialog (the next generation of error message and prompts).


Vista users are going to love transparency effects

AERO themes and AERO Wizard framework: In addition to the new driver model, Windows Vista developers will also be able to easily apply AERO themes to their applications and common controls. By using the AERO themes, application developers can use the new look of Windows Vista within their application. The design and functionality of applications that use these themes will appear to be an extension of Windows Vista.

Windows Vista will also support the AERO Wizard framework, thereby extending the AERO themes. The AERO Wizard framework gives native application developers the ability to use the AERO style in their dialog boxes. One of the benefits of the Wizard framework is that it is automatically adjusting the font style, font color, font size, and control visual to the appearance dictated by the user's theme. If developers want to use other features of the AERO Wizard framework without the new theme support, the "Classic" or Microsoft Windows 2000 Server look is still available. In addition to adjusting the visual appearance, the AERO Wizard framework enables developers' pages to adjust to the size of the property sheet on a page-by-page basis. While enabling users to resize any page, the automatic adjustment will help optimize the "Size to Content" ratio for the developer. The AERO Wizard framework will also enable developers to rename or hide command buttons in the wizard. For example, if a developer is creating a wizard to enable file sharing, one of the buttons in the wizard might be renamed "Share File" instead of the standard "Next". Lastly, the AERO Wizard framework supports the ability to brand the wizard with a company logo by supplying a background bitmap to be easily positioned on each of the wizard screens.

Task Dialogs : In Windows Vista, task dialogs will replace the message box or most other instances of a single-step prompt or error message. Task dialogs are a dramatic upgrade to the visual appearance and functionality to the error message experience by adding such features as the main instruction and supporting text and links. The API for the Task dialog is primarily a replacement of the existing message box, although it adds support for features such as hyperlinks and customizable button labels and icons.


Copying files on Windows Vista

Windows Presentation Foundation: Windows Presentation Foundation is Microsoft's unified presentation subsystem for Windows and is exposed through WinFX, Windows Vista's managed-code programming model that extends the Microsoft .NET Framework. Windows Presentation Foundation consists of a display engine that takes full advantage of modern graphics hardware and an extensible set of managed classes that developers can use to create rich, visually stunning applications. Windows Presentation Foundation also introduces XAML, which enables developers to use an XML-based model to declaratively manipulate the object model.

In Windows Vista, WinFX supports an API that enables developers to host Windows Forms controls and forms in a Windows Presentation Foundation application, and vice versa. When a developer creates an application in Windows Presentation Foundation, most of the code is written and implemented in XAML. XAML is faster, easier to implement, and easier to localize, making it a better choice than the equivalent procedural code. With XAML, there is no performance penalty because XAML is an XML-based representation of the object model.

Windows Presentation Foundation Architecture

Windows Presentation Foundation itself consists of two main parts: the engine and the programming framework.

  • Windows Presentation Foundation engine. The Windows Presentation Foundation engine unifies the way developers and designers experience documents, media, and UI, providing a single runtime for browser-based experiences, forms-based applications, graphics, video, audio and documents. Windows Presentation Foundation is built on top of Microsoft DirectX(r), which enables it to unleash the full power of the graphics hardware present in modern computers and is engineered to exploit advances in hardware moving forward. For example, Windows Presentation Foundation's vector-based rendering engine enables applications to scale to take advantage of high-dpi monitors without requiring extra work on the part of the developer or user. Similarly, when Windows Presentation Foundation detects a video card that supports hardware acceleration, it takes advantage of it.
  • Windows Presentation Foundation framework. The Windows Presentation Foundation framework delivers solutions for media, UI design, and documents that go well beyond what developers have today. Windows Presentation Foundation is designed for extensibility, enabling developers to create their own controls on top of the Windows Presentation Foundation engine from scratch or by subclassing existing Windows Presentation Foundation controls. Central to the Windows Presentation Foundation framework are controls for shapes, documents, images, video, animation, 3-D and "panels" in which to place controls and content. These "primitives" provide the building blocks for developing next generation user experiences.

XAML Programming : XAML is an XML-based markup language that can be used to declaratively program the Windows Presentation Foundation object model. It is especially useful for implementing your application's UI. Each XAML tag corresponds to an object model class. A tag also usually has a collection of attributes that corresponds to the properties of the tag's associated class. At compile time, the parser converts the XAML into a partial class that contains equivalent procedural code. Each XAML tag becomes an instance of the corresponding object model class, and the tag's attribute values are assigned to the corresponding object properties. Then the partial class that is created from the parsed XAML is combined with the page's code-behind file by the common language runtime compiler to create an object for the page.

Source: Microsoft


3. Technical Improvements Page 2

User Account Protection (UAP) : Windows Vista changes the traditional Windows privilege model to help prevent users from running programs that attempt to perform operations that the user doesn't really intend or authorize. To that end, User Account Protection (formerly called Least-privileged User Account, or LUA) enables users to run at low privilege most of the time, while being able to easily run applications requiring more privilege as necessary. There are two key things to consider when building applications to make use of User Account Protection (UAP): the privilege specification model and the standard UAP execution model.

Privilege Specification Model : UAP extends the access token system already in use for managing Windows logons with a new token mechanism that supplies each administrator logon with two security tokens, a UAP token and a full admin token.

Access tokens contain a logon session's security information, identifying a user and their groups and privileges. The operating system uses the token to control access to securable objects and controls the ability of the user to perform various system-related operations on the local computer. UAP tokens are a special kind of access token that define the minimum privileges needed to run-the default interactive logon privileges of a Windows Vista user on a system with UAP support enabled. The second, full admin token has the maximum privileges authorized for the admin account.

UAP Execution Model : Beyond tokens, the basic execution model for running applications under UAP uses existing process-creation functions (ShellExecute to call CreateProcess) augmented by UAP. There are four parts to the UAP execution model:
  1. The Application Information Service (AIS) is a system service that launches applications requiring elevated privileges by first obtaining user consent (through the Consent User Interface) for privilege elevation, and then creating a new process for the application with the user's full token.
  2. The Consent User Interface is launched by the AIS and runs with system privilege to get consent or credentials from the user in order to launch the application with a full token.
  3. Requested Execution Level is a characteristic of an application that indicates which token (UAP or full) to use when it is launched. The system determines an application's Requested Execution Level by reading requestedExecutionLevel from the application's manifest, querying the Windows Vista AppCompat database entry, or by using the Windows Vista installer detection technology.
  4. The AppCompat database supplied with Windows Vista contains information about the most common legacy applications that require privilege elevation.

Here's an example of the control flow of running an application under UAP:

Building UAP-Compliant Applications : Developers using Visual Studio tools can analyze their code for UAP compliance by using the AppVerifier tool. Both ClickOnce and the Windows Vista version of MSI (Windows Installer) technology are fully UAP compliant, and all application developers should try to make use of these technologies when working with installers.

Keep in mind that UAP compliance is all about least privilege. If your application runs properly under a nonadministrative account in Windows XP or Windows Server 2003, you won't run into any problems on Windows Vista.

To ensure that your application runs properly under Windows Vista, you should test your application as a USER.

For an application that provides different functions depending on whether the user is an Administrator or USER, there will be a way to allow for variable access to the application's administrative features.

The Security Configuration Wizard : Windows Vista enables developers to create roles-based extensions for the Security Configuration Wizard (SCW) so they can ship a Security Configuration Wizard extension with their server software, enabling customers to protect their servers while still allowing the third-party software to function properly. This allows developers to author new roles-based extensions for SCW such that auto-generated security policies can lock down system functionality based on the server role (services, ports, functionality).

Network Access Protection Framework: To ensure the health and security of a network, particularly one supporting roaming computing and the attachment of portable devices, Windows Vista provides the Network Access Protection (NAP) framework. NAP enables system administrators to define and enforce policies that require network clients to establish their trustworthiness and compatibility with the network before being given a specified access. Client systems are either given full access or placed in a restricted subsection of the network, where they have only limited access.

Click to enlarge
Mapping a network drive is easier than before

Developers should use API-level access to NAP and the Windows Filtering Platform (WFP) to reduce user and administrator security workloads by:

Network access client software and network access servers, which participate in the NAP, ensure that only healthy systems log on to the network. Unhealthy systems are put on a restricted VLAN for remediation so they can get on to the network.

Source: Microsoft

4. Technical Improvements Page 3

A reliable application is one that behaves exactly as its user expects it to behave. Windows Vista offers an extensive set of new APIs and developer services on the Web to make your applications predictable and manageable to end users, and to diagnose them when they are not.

A major tenet of the Windows Vista experience is that the system and applications "just work." Users are expecting applications that are stable and easy to install and use. A stable application is one that avoids hangs, crashes, and reboots. Windows Vista provides developers with a set of tools for creating applications that will help optimize system stability and performance.

Developers using Windows Vista can help protect users against losing data or work because of a software problem or system instability. Windows Vista provides a well-defined mechanism for all user-mode applications to register themselves as restart-able and provide document recovery interfaces. Used in conjunction with the Windows Vista Restart Manager technology, Windows Vista application and data recovery mechanisms make application installation and upgrading less invasive: preserving the running state of applications that need to be interrupted for system reconfiguration. Improved I/O cancellation support in Windows Vista increases application responsiveness. In addition to these mechanisms, the Windows Feedback Platform (WFP) supports error handling for application crashes and hangs and provides reporting and customer response management for these errors.

Data Recovery and Application Restart : With Windows Vista, users won't have to restart their computers for most updates and application installations. Windows Vista knows which applications and services are using which files, and if a file needs to be updated, Windows Vista can coordinate saving the application's data, closing the application or stopping the service, updating the file, and automatically reopening the application or restarting the service. This capability is provided by a feature called Restart Manager.

Restart Manager works with Microsoft Update, Windows Update, Microsoft Windows Server Update Services, Microsoft Software Installer, and Microsoft Systems Management Server to detect processes that have files in use and to gracefully stop and restart services without the need to restart the entire machine. Applications that are written to take advantage of the new Restart Manager features can be restarted and restored to the same state and with the same data as before the restart.

I/O Cancellation Support : Windows applications become unresponsive when a function or API is called from a user interface (UI) thread that does not complete within a short period of time and is not cancelable. The UI becomes blocked for a long enough time such that the user of the application decides that it is unlikely to recover. This leads the user to attempt to terminate the application (usually by clicking the X on the window's title bar) or even to reboot the computer. Usability studies conducted by Microsoft show that even periods as short as a few seconds are too long for many users.

Developers sometimes make assumptions about the users' environments that are not correct. Notably, they assume that input or output (I/O) operations to devices will complete quickly. This may not be true for some types of devices, especially for networked devices. Network congestion or latencies can wreak havoc with an application's responsiveness.

Investigations of Windows XP hang reports have resulted in improved I/O cancellation support in Windows Vista, including new Win32 APIs.

One of the most significant improvements is the CancelSynchronousIo API, which enables synchronous file I/O calls to be canceled (OpenFile or GetFileAttributes, for example). Since it must be called from another thread, an application must support multi-threading. (Multi-threading is almost always required for applications to remain responsive.)

Another addition is an enhanced version of an existing API: CancelIoEx. This API requests all pending I/O operations for the specified file handle to be canceled.

These new APIs are supported by corresponding new kernel features. One significant change is that driver-level cancellation for create requests is now supported in Windows Vista.

Obtaining Application Feedback : Windows Vista provides enhanced feedback and diagnostic mechanisms to developers through the mechanisms found in Windows Feedback Platform (which extends the Windows Error Reporting feature found in earlier releases of Microsoft Windows). Specifically, Windows Feedback Platform:

  • Makes it easier to detect and obtain information for common scenarios like crashes and hangs.
  • Enables the specification and collection of additional data during error handling.
  • Adds new diagnostic scenarios for reporting.

Windows Vista provides an extensible reporting environment, online problem tracking, and integration with the development community. With this application, developers can collect the data needed to help debug problems from instances of their applications running in the field. This information is used to generate reports that are archived and studied at a Microsoft developer portal site.

Click to enlarge
Users can found easier solutions to their problems now

The portal allows Microsoft staff to provide feedback for product improvement to developers, provide end users with information about workarounds or updates, and deliver fixes to resolve issues. This portal is also extended to the Developer Community as a free service at https://winqual.microsoft.com. This service enables developers to view crash and hang trends by volume and growth over time, download end-user report files such as Mini Dumps, subscribe to events such as Security related issues with their applications, and register responses to connect to their solutions for their customers. With Windows Vista, it is easier for developers to improve their product quality, infer anonymous application state information, and connect with their customers, whether they are IT pros or end users, through the Developer Portal for Windows Feedback Platform services.

In addition, this technology supports system administrators and other IT professionals by allowing them to:

  • View the history of errors on a machine to aid in troubleshooting.
  • Create policies to control the reporting behavior of desktops in a corporation.

End users benefit not only by improvements to their applications but by having error handling with a consistent look and feel, which appears to be native to Windows Vista. In addition, end users can expect:

  • Streamlined data collection and user interface, reducing wait time when forwarding an error report.
  • A simple mechanism to cancel reporting.
  • A global opt-in mechanism, automating user-response-to-error report requests.
  • Improved customer feedback, by allowing users "search for a solution," including automatic solution checking.

All this is supported, while still helping to:

  • Make data collection and transport more secure and reliable.
  • Protect customer privacy and intellectual property.
  • Make management easier, both for users and administrators.
  • Support offline scenarios.

Source: Microsoft


5. Technical Improvements Page 4

The Windows Communication Foundation (formerly code name "Indigo") Web service APIs make it easy to build and consume secure, reliable, and transacted Web services. New peer-to-peer capabilities enable the discovery and sharing of data between computers and nearby devices. Performance improvements have made communications faster than ever before and improved support for standards like IPv6, WS-*, and RSS makes Windows Visa a great way to write applications that communicate with each other.

Windows Communication Foundation: The vast majority of applications that are developed today need to communicate with other applications. The ability to share data between a wide network of services that can communicate with other platforms and devices is what Web services are all about. Windows Communication Foundation is Microsoft's unified programming model for building Web service applications with managed code. It extends the .NET Framework to enable developers to build secure, reliable, and transacted Web services that interoperate across platforms and integrate with existing investments. Windows Communication Foundation is built from the ground-up to combine and extend the capabilities of existing Microsoft distributed systems technologies, including Enterprise Services, System.Messaging, .NET Remoting, ASMX, and WSE to deliver a unified development experience.

The Windows Communication Foundation takes Web services to the next level. Support for the WS-* protocols means that Web services can easily take advantage of interoperable security, reliability, and transaction support required by businesses today. Developers can now focus on business logic and leave the underlying plumbing to Windows Communication Foundation. Windows Communication Foundation also provides opportunities for new messaging scenarios with support for additional transports like TCP and named pipes and new channels like the Peer Channel. More flexibility is also available around hosting Web services. Windows Forms applications, ASP.NET applications, console applications, Windows services, and COM+ services can all easily host Web service endpoints on any protocol, which includes full HTTP.SYS support. The Windows Communication Foundation also has many options for digitally signing and encrypting messages, including the following token support: Security Assertion Markup Language (SAML), Kerberos, X.509, and Username.

The Windows Communication Foundation Web service platform provides flexibility and extensibility. For developers who want to access underlying messages directly or who want strong control over Web service contracts, the ability to explicitly define messages and how they are exchanged gives developers the easy manageability they need. Indigo also provides extensibility hooks so that developers can write custom channels and extensions that plug directly into the Communication Foundation pipeline.

Peer-to-Peer : Windows Vista provides capabilities for discovering and communicating between applications without the need for centralized servers. The peer-to-peer capabilities of Windows Vista give users and applications the ability to discover and interact with others on the network in a secure fashion.

Central to the capabilities of the peer-to-peer support in Windows Vista is the Peer Name Resolution Protocol (PNRP), which enables dynamic name publication and resolution. Today, names are assigned to computers in a relatively static fashion along with their IP addresses. PNRP provides a much more dynamic ability to register multiple names on a computer, to have multiple computers register a single name, and to even have applications register names. Name records can contain additional metadata describing the associated resource. All of this is done in a secure fashion that prevents spoofing. Developers can use standard name resolution APIs, like getaddrinfo, to resolve their PNRP names.

Peer-to-peer networking enables multiparty interaction by creating meshes of nodes that self-organize into a robust communication group; messages can be sent to all mesh nodes through one or more hops. New nodes can be dynamically added and removed from the mesh without losing the overall connectivity. Secure meshes can be created with restricted membership. Meshes enable the publication of shared data records that are automatically replicated and persisted among all members. Everyone in the group sees updates to the data immediately, as if it were performed locally.

The Windows Communication Foundation Web service API provides a multiparty messaging channel (called the Peer Channel) that developers can use to create large, scalable meshes for sending and receiving Web service messages.

The peer-to-peer capabilities of Windows Vista also provide the ability for applications to find "People Near Me." This enables developers to create applications that enumerate individuals who are physically near them on the network so that data can be easily shared. Using peer-to-peer APIs, individuals can be invited to participate in activities, such as voice chat or games.

Quality of Service : Quality of Service (QoS) technologies manage the transmission of particular types of data-for instance streaming media-to ensure that data is transmitted at the right time with the right speed. Previous releases of the Windows operating system provide support for the industry standard Generic Quality of Service (gQOS), using Diffserv and Intserv and RSVP signaling. Windows Vista extends QoS functionality by adding network awareness and greater user-friendliness through the quality Windows Audio Video Experience (qWAVE) package (available through the .NET Framework) and a new implementation of the Network Location Awareness Service (NLA2).

As the qWAVE technology works with Ethernet, WiFi (both layer-2 and layer-3 packets), and the Digital Living Network Alliance (DLNA) Quality of Service standards, end users can expect improved performance regardless of the underlying technology they use. In addition, qWAVE technology is designed to be extensible to new technologies, such as Microsoft's proposed Universal Plug and Play (UPnP) Quality of Service 2.0 messaging.

Both the qWAVE and NLA2 technologies are designed to be aware of network changes and capabilities to provide adaptive QoS support. Run-time feedback allows applications to dynamically adjust to network bandwidth changes by transcoding (changing between digital video formats) or transrating (adjusting to network speeds by changing the video resolution). In addition, multimedia applications can use Windows Vista Quality of Service technology to proactively query network configurations and identify legacy devices that can drop packets or crash.

Windows Vista network applications can make use of qWAVE distributed administration control to provide consistent management of network resources through priorities.

The Windows Vista Quality of Service tools are designed to inform and empower end users by providing instant and meaningful feedback. For example, an end user typically has no indication that something like heavy network load may be causing a degradation of performance or a connection drop. Under Windows Vista, the system would quickly notify the user of the degradation and its cause, enabling the user to take action.

Source: Microsoft

6. Technical Improvements Page 5

The Windows Vista platform introduces new data storage and search technologies that enable developers to build applications that are searchable and that integrate disparate data formats—applications that find and share the data that users want to see.

New features targeted toward finding, organizing, and sharing data are accessible to developers through both Win32 and WinFX APIs. In particular, Windows Vista introduces a set of technologies based on the new XML Paper Specification (XPS) that is accessible through the Windows Presentation Foundation (formerly Windows code-named "Avalon") presentation technology. It also provides a complete RSS (Really Simple Syndication) subsystem that enables developers to find and consume RSS feeds through system-level APIs instead of through a dedicated RSS reader.

XML Paper Specification (XPS) : Windows Vista introduces the XML Paper Specification (formerly code-named "Metro"), or XPS, that describes the set of conventions for using XML and other widely available technologies to describe a container for application data. The Windows XPS Document technologies enable end users to create, annotate, and view fixed-layout paginated documents, as well as to digitally sign and apply rights management to those documents.

The Windows Vista XPS technologies are based on the XML Paper Specification that details the packaging model for developers to design new self-describing information formats. The WinFX runtime includes the XPS package APIs that enable developers to more easily create and process XPS-based containers or files (called "packages").

Windows Vista supplements the power and generality of the XPS packages with a specific document implementation called the "XPS Document" (also known as "Metro Reach"). XPS Document format enables easy document sharing across platforms, without the need for the authoring application. The XPS Document format supports many of the most common user needs by providing an optimized format for working with paginated documents.

To ensure cross-platform portability and device independence of XPS-based packages and XPS Documents, the XML Paper Specification is open and publicly available.

XPS Packages : XPS packages are programmatically created and accessed through the packaging model (System.IO.Packaging). There are three things developers need to understand in order to work with XPS packages:
  • XPS packaging model. Under the XPS framework, a package is a logical entity serving as a container for file components. These components are called parts, and each part is defined by name and content type. Parts can contain references to other parts in the package, or to external resources. The XPS packaging model provides a higher-level mechanism to describe these references, called relationships, which make the reference directly discoverable without needing to look at the content in a given part. A package is a logical representation of the data to be stored.
  • XPS physical format. The package model may be mapped to an actual entity (referred to as a physical format). A physical format can be almost anything: a file, an archive (such as a ZIP file), as well as various transports (such as network-based protocols). In fact, a single XPS package can have expressions in multiple physical formats. The XPS physical format understood in Windows Vista is a ZIP file.
  • XPS metadata. An XPS package's metadata describes the content and use, and is discoverable (along with its package structure) through the XPS package APIs. In addition, the Windows Vista XPS technologies provide a well-defined means for including a digital signature and applying digital rights management information and metadata. This metadata is fully extensible and can be used to contain such items as information in annotations and thumbnails.
XPS Document : The XPS Document is a specific implementation of an XPS package designed to address the information worker's requirements for distributing, archiving, rendering, and processing documents. It is accessed through Windows Presentation Foundation Document Services (System.Windows.Documents and System.Windows.Reach).

A XPS document is expressed in an application-independent way so that the content can be viewed and printed without requiring the original authoring application.

The XPS Document uses a well-defined and fixed-format layout, including pagination for its content, while still allowing for forward- and backward-compatibility with versioning, or extensions for other value-added scenarios.

Effectively, the XPS Document defines the default electronic paper object for Windows Vista, and is a native spool file format in the Windows Vista print architecture, as well as the native Windows Presentation Foundation print output.

The WinFX SDK documentation includes many references to the XPS Document (aka "Metro"), all of which center on the Metro Serialization Manager class (System.Windows.Reach.Serialization in the ReachFramework assembly).

RSS : RSS is an XML-based format used for syndicating news and Web logs (as well as other information) from Web sites. News sites are a common use for RSS feeds because they can easily send out headlines (or title in RSS format) and short descriptions, along with links to the full story to anyone subscribed to the feed (or channel). Blog authors use feeds by sending out full journals, conversation threads, short descriptions, or notifications of updates in RSS format.

The RSS support in Windows Vista provides three basic platform services.

  • Common RSS Feed List. Provides a read-only copy of the user's feed list in Outline Processor Markup Language (OPML) format, which is stored in the user's Documents folder. The users can use this OPML file to save, e-mail, or import a copy of their feed list into another application.
  • Common RSS Data Store. Aggregates feed content into the Common RSS Data store, which allows concurrent access by multiple applications. The store is designed to allow efficient updating and access of feeds and individual items. Enclosure files are written into folders that a user can navigate to from within the Windows Explorer application. The RSS Common Data Store provides a number of services, including automatic purging of feed data and enclosures.
  • RSS Platform Sync Engine. Automatically downloads feed content and files (enclosures) from RSS feeds. The RSS sync engine handles on-demand and background updates, and the merging of new feed content with existing content. Each feed is synchronized in the background on a user-defined schedule so that the user has fresh information available without having to manually check for new content. Each feed publisher can specify a default update schedule, which the service will respect unless the user indicates otherwise.

These services are accessible through the Windows Vista RSS object model, which mirrors the major components of an RSS feed.

  • Feed. The Feed object contains a collection of items as well as feed and channel properties. It is also possible to access the feed XML for applications that perform operations on the XML instead of using the feed's properties.
  • Item. The Item object contains an enclosure as well as item properties. It is also possible to access the item XML for applications that want to perform operations on the XML instead of using the item's properties. Most properties of an item cannot be changed by a client application, with the exception of the common read/unread property.
  • Enclosure. The Enclosure object contains enclosure (or attached file) properties. One of the properties is the local path, which makes it possible for applications to get access to the enclosure through the file system.

For more information, see the RSS site on the Windows Vista Developer Center.

Source: Microsoft


7. Technical Improvements Page 6
Windows Vista Explorer Property System : The Windows Vista Explorer property system is being enhanced and extended. Some of the new features are:

You can extend the metadata system by writing custom property handlers, protocol handlers, and even enable the system to use non-file system data stores.

Full-Text Search : Let's say that you'd like a user to be able to ask Windows Vista Explorer to find all invoices that contain a purchase of a particular product. Clearly, that information is locked up inside the invoice file somewhere, but Explorer needs some way to access it.

There are basically two types of data stores: file system stores and non-file system stores. The invoice example is a simple file system store. Explorer can search information in the invoice if a developer provides an implementation of the IPropertyStore or IFilter interface for this new file type.

Click to enlarge
Advanced Search now has some very interesting features like filters

If you're working with a non-file system store, you need to write a protocol handler that allows Explorer to navigate through the data store. A protocol handler connects the Explorer with a non-file-system-based proprietary data store. This enables the Windows search system to index data within the store. For example, if you have a mail client that stores its list of received e-mail, you can provide indexing and search capability for each individual e-mail by providing a protocol handler. Often developers who create a new protocol handler for a custom data source will also need to implement an Explorer Namespace Extension to provide UI for the items that are displayed in the Explorer, such as context menu handlers, icons, etc.

Extension Points : To extend Windows Vista Explorer, developers need to do two things:
  1. Provide access to the internal contents of file formats and data stores.
    This enables Explorer to perform a system search across your file formats and data stores as well as file formats and data stores it inherently understands. Note that this enables Explorer to search not only the full-text content of your files but also its metadata. In addition, you enable users to organize their data by easily changing a file's metadata and saving the changes back into the file. The sample.invoice example in Figure 3 was all done by implementing a property handler.
  2. Provide rich thumbnail view of individual files to Windows Vista Explorer.
    This enables Explorer to gain an idea of what is in the file directly from the Explorer view.

Developing Applications : Windows Vista supports a number of new APIs to use when developing new applications. Applications should never hard code file paths to "well-known" locations. Use Known Folder APIs instead. The Known Folder APIs abstract the file system location from the functionality of the folder. This allows features like folder redirection. You should use existing Known Folders when one is semantically equivalent to what you need, for example, PDF documents stored in Documents. Otherwise, your application can create new known folders, for example, 3D Drawings, Shapes, Code Projects, etc.

You can use new Windows Vista APIs to query items in the Windows Search Engine. Your application can use the OLEDB/ADO from managed or unmanaged code to issue queries using a SQL-like syntax. In return, your application receives an OLEDB Recordset where the columns correspond to properties in the Windows Metadata System, for example, System.Photo.FNumber.

You can also use the unified metadata layer to read/write metadata from/to file formats. Your application can enumerate properties stored in a file, discover property descriptions (schema) as described in the system, and read and write values for properties.

The Common File Dialog has been updated. It has a number of new COM APIs. Some of the new features of the Common File Dialog are:

The Common File Dialog is also extensible. You can add new controls and change the layout of the dialog.

Source: Microsoft

8. Technical Improvements Page 7
Back in the MS-DOS era, you could deploy an application by copying a few files to your computer. As applications grew more complex, however, this task rapidly became more difficult. Many parts of the OS need to be touched when installing new software: the directory itself, possibly shared components, and user settings that needed to be created. Microsoft has made advances in application installation, starting with "no touch" deployment in .NET Framework 1.0.

ClickOnce : Microsoft introduces ClickOnce with the .NET Framework 2.0 and Visual Studio 2005 as the successor to "no touch" deployment. The goal of ClickOnce is to make deploying client-side managed-code applications (such as those built with Windows Forms or, on Windows Vista , formerly Windows code name "Longhorn," the Windows Presentation Foundation, formerly code name "Avalon") as easy as deploying a Web application. Using ClickOnce, you can deploy and update applications to your clients through the Web, or a file share. You can deploy new versions of the applications by copying them to the install point. Clients will receive this version when they next start the application. For more information on the .NET Framework 2.0 version of ClickOnce, click here.

When using ClickOnce, users can expect:

Windows Vista extends the .NET Framework 2.0 set of ClickOnce features in several ways, including the capability for installations to perform some of the more traditional actions of an MSI deployment while still using automatic deployment and update. For example, on Windows Vista , ClickOnce can take advantage of the Background Intelligent Transfer Service (BITS) to allow a trickle-feed update of files in a way that is less obtrusive to the user. Additionally, the execution context in Windows Vista is very different and more robust, allowing applications to be hosted in a browser or run externally. On Windows Vista , ClickOnce also enables an application to create file associations (registering itself as the handler for a specific file type) without having to request additional permissions. Windows Vista also adds the concept of privacy information as part of the application manifest, allowing application creators to describe their privacy policy for information storage, reuse, and more.

Creating a ClickOnce Package : Visual Studio 2005 makes it simple to build ClickOnce installation packages. The project properties (see Figure 1) can be set to enable publishing of the application and its dependencies to a file share or Web site.

After the application is published, users can navigate to the file share or Web site, or the location can be e-mailed to them. The user clicks the program.application link. This link is to a manifest file that contains information on the required assemblies, correct version, and additional information for the application. The ClickOnce technologies ensure that all dependencies are present, and that the correct version of the application is available on the client computer. The application is then executed as usual.

Although ClickOnce cannot be used for all types of applications or in all scenarios, it can provide an excellent means of deploying and upgrading an application. The benefits of the ease of updating the application mean that you can get the benefits of the rapid deployment of Web applications without sacrificing the rich interaction of a desktop Windows application.

Security for ClickOnce : ClickOnce includes a number of security safeguards that reduce the likelihood of a malicious application doing harm. For example, applications deployed using ClickOnce technology run in a "sandbox," with a limited set of permissions based on a security zone. This zone affects the capability of the application when accessing resources on the local computer.

Additionally, developers can use Authenticode certificates to sign ClickOnce manifests. This information is then presented to the user, showing that the application is coming from a trusted source. Developers can also associate a specific set of security policies with the application to set appropriate permissions.

Windows Installer : Microsoft also is making advances in Windows Installer (MSI) technology, the standard Microsoft installation solution, f or Windows Vista . In particular, MSI integrates with the Windows Vista User Account Protection (UAP, formerly called Least-Privileged User Account or LUA) and with the Windows Vista Restart Manager.

With previous versions of Windows, users frequently had to have Administrative rights on their computers to install new software releases. This was due, in many cases, to the installation requiring access to the Local Machine hive of the Registry (HKLM), or to the Windows or System32 directories. This meant that many users logged in only using an Administrative account. This led to possible security issues if the user continued to log in as Administrator. Other applications with malicious intent could access those areas.

Integration with the UAP means that users need not be logged in as Administrator to install an application. If an installation requires extra privileges, Windows Vista presents the user with the option to temporarily elevate their permissions for the install. See "An Overview of New Windows Vista Security Features for Developers."

Integration with the Restart Manager : A properly configured installer application should never force users to restart their computer-required services and applications will be restarted as needed. The Restart Manager handles interactions with other resource managers, running programs, and open files to dynamically free and reaccess services or applications as needed. See "Overview of Application Reliability Features for Developers in Windows Vista .

Source: Microsoft


9. Technical Improvements Page 8

Mobile computers are a large and growing segment of the overall personal computer market, currently making up about 40 percent of the worldwide personal computer market and growing fast. In some countries such as Japan, laptop sales are outpacing desktop sales. But laptops, notebooks, and Tablet PCs present unique challenges to application developers. Some challenges include power management, network awareness, providing offline access to important data, taking advantage of multiple displays, grab-and-go docking, and readability. At the same time, the mobile form factor allows for key scenarios not available on a desktop computer. Microsoft Windows Vista , formerly Windows code name "Longhorn," makes advances against all these challenges and is simple for application developers to target.

Auxiliary Display : Mobile computer users do not always want to gain access to the main display of their personal computer, yet the computer contains a lot of important information that users often want to get to quickly. To address this, Windows Vista introduces the auxiliary display. Auxiliary displays give the user quick access to useful information such as calendar appointments and the latest e-mail message even when the computer is in standby or hibernating, media playback control when the computer is off, and other application notifications.

Creating new applications or extending existing applications to auxiliary displays is straightforward; applications simply register themselves with the auxiliary display subsystem during installation. The auxiliary display subsystem takes care of device management. An application might even cache data on devices that support it to allow offline access or might provide its content as the user requests it.

Here are some key points to understand the auxiliary display subsystem:

 

Power Management : As more and more computers become mobile, users will expect to treat their computers much more like they do personal digital assistant (PDAs) and cell phones today—on battery power for longer and without having to go through lengthy startup and shutdown procedures between sessions. To meet these expectations, the hardware, operating system, and applications must each do their part to help realize extended battery life and fast, reliable system standby and resume transitions.

Windows Vista introduces several new features for improved power management, including a redesigned and enhanced kernel power policy manager. The enhanced power policy manager provides a common framework for applications and devices to receive notifications of important system power events. For instance, including the user's current power preferences and notifications of when the remaining battery capacity crosses specific thresholds is such an event. The application can also use the power policy manager to handle the storage and retrieval of its application-specific power settings with the current user system power policy. When a power transition occurs that affects a power setting that the application has registered for, the power manager will notify the application with an updated value for the power setting. The power manager can handle all the overhead of storing, managing, and retrieving power settings for an application. This can significantly reduce the work required by developers to support intelligent and efficient power-aware behavior.

Most importantly, developers should focus on their applications' proper use of the system power broadcast (WM_POWERBROADCAST) messages. When the system is about to go to sleep, Windows broadcasts a sleep query message along with a flag indicating whether applications are allowed to display UI. Regardless of the state of the "UI allowed" flag, applications should make every effort to prepare for sleep without querying or notifying the user.

Network Location Awareness : In today's world of wireless access and mobile devices, application developers can no longer assume that the network is always present or that there is only a single path to a resource. Even though TCP has complex algorithms to ensure guaranteed delivery, it cannot overcome the transient nature of the mobile user's network environment. Both wireless networking and grab-and-go docking mean network connections and external hard disks can become disconnected without warning.

In Windows Vista, applications can now do a better job tailoring the user experience to the connected status of the system by having a better understanding of the connected state made through querying the new Network Location API 2 (NLA2). NLA2 provides a single place where an application can get all the network parameters for a computer and can inform the application of changes to the parameters and network context information.

Synchronization Manager : The Synchronization Manager provides a centralized, standard technology for synchronizing files for offline use on a mobile computer or a computer connected to a local area network (LAN). Together with the connectivity functions, notifications (System Event Notification Service), and client-side caching, the Synchronization Manager provides an infrastructure to support mobile computing. Instead of each application implementing its own technology to cache and synchronize network resources for local use, the operating system provides an integrated model that all applications can use. Files are synchronized independent of the protocol. For example, an e-mail program can transfer its messages using Simple Mail Transfer Protocol (SMTP), Network News Transfer Protocol (NNTP), or Post Office Protocol 3 (POP3), while a browser can use HTTP and a database can use Remote Procedure Call (RPC). Developers can use the common interface to the Synchronization Manager in their applications to synchronize files between the user's local computer and network storage.

SyncMgr also includes a programming interface so that applications can register to use synchronization features, can process errors, and can receive progress information and notifications during the synchronization process.

In Windows Vista, a new common and consistent user interface (UI) manages synchronization with other devices and data sources. Developers can plug-in to this UI (instead of creating unique custom solutions) to provide a consistent user experience for synchronizing with their devices. There are additional APIs that extend the context menus in the Synchronization Manager.

Tablet PC : Windows Vista includes many advances for Tablet PC developers. Chief among these are Ink Analysis and integration with the Windows Presentation Foundation, formerly code name "Avalon". Probably the biggest advance, however, is the ubiquity of Tablet PC features. To date, developers have had a difficult time with the Tablet PC technology redistribution problem. With Windows Vista, however, Tablet PC technologies are ubiquitous across all Windows Vista editions.

Ink Analysis: the Unified Recognition API : To date, programmatically interpreting ink using the Tablet Platform Software Development Kit (SDK) was accomplished using two separate APIs:

To simplify the developer experience, Windows Vista fuses the APIs into a single new API called Ink Analysis.

The true power of Ink Analysis comes through when its capabilities are used together. For example, by combining shape recognition, outline interpretation, and analysis hints, it is possible to convert handwritten slide decks to professional presentations.

Windows Presentation Foundation Integration : Digital ink collection and rendering, features traditionally available only on the Tablet PC, have been incorporated into Windows Presentation Foundation as first-class members of the framework. No separate runtime is required to support basic ink functionality in your applications.

Source: Microsoft


10. Visual Improvements & New features Page 1
Untitled Document

We will now take a better look at the new Windows using some screenshots. This is an easy first approach in understanding Windows Vista. We will explore all the changes from installation, exploring windows, right up to all the new features.

Let's start with the installation.

Click to enlarge Click to enlarge
Installation procedure. Pretty simple

Installation of Windows Vista is pretty simple, you just have to enter your serial number, the partition you want to install Windows on and the computer's name. Nothing more is required, you just wait for the installation to complete. We don't know if the final release will have such a simple installation procedure but we hope it does.

I have also noticed that when the Windows Vista DVD boots from the hard disk, there is a new option available, Automatic Recovery. With this option, you can select a directory on your hard drive that has a Windows Vista installation. Windows starts checking the drive and detects boot or other kinds of problems. If it finds any, a message informs the user and then starts fixing any problems automatically. Very simple and useful.

After the installation is complete, this is the first screen you will see:

Click to enlarge

In my opinion, the combination of colours in the new aero theme is much better than the previous one in Windows XP.

Let's take a look at all the Windows components. After installing the drivers with the help of a Windows Vista beta wizard (ATI has already released display drivers for Windows Vista), I noticed that even without installing any other programs except for the basics, Windows Vista is 200MB more RAM demanding than Windows XP. Despite this, Windows Vista manages to boot faster than Windows XP.

Click to enlarge Click to enlarge
This wizard helps you to install drivers for your system
The System Properties profile for our lab's system


First, the TaskBar. The TaskBar hasn't changed a lot. If you install Windows Vista on a notebook computer, you will notice a new power management icon. Another new tray icon is the Windows Search Engine. Here you can rebuild the Windows search engine index. We will explain later what this is for.

Click to enlarge
Windows Search Engine


11. Visual Improvements & New features Page 2
Let's move on to the Start Menu.

The first thing that we notice is that the start menu now has a search entry field for searches as well as a separate icon for games. Also, the "Log Off" button has been replaced with a "Lock" button. From now on, when you click on the "All Programs" button, the left pane of the Start menu is overlayed by the Programs menu.

Click to enlarge Click to enlarge
The new way to explore All Programs in Start Menu

Now let's examine the right pane of the start menu. Shortcuts such as "Documents", "Pictures" and "Music" are no longer shortcuts to folders but are Virtual folders. The real "Documents", "Pictures" and "Music" folders are under the \Users folder (alla unix) and not under "\Documents and Settings\" as it was on Windows XP.

Click to enlarge
The new "Users" folder has replaced the "Documents and Settings" folder from Windows XP

What Is A Virtual Folder: Windows Vista introduces Virtual Folders. Virtual folders are not actually folders. They are XML-based containers for links to other files and folders from the Windows database query and are stored in the following path \Users\username\VirtualFolders. In simple words, when you click on a virtual folder, Windows Vista performs a search in the Windows database query with some specific keywords.

It is obvious that virtual folders are dynamic. That means their contents are not always the same. For example, the "All Documents" virtual folder (which is actually the following xml file: D:\Users\CDRInfo\VirtualFolders\All Documents.vfolder) does what its names says. It "contains" all the documents that a user works with (and as a result have been indexed by the windows search engine) no matter where they are. Apart from that, if a user edits a new document and saves it on the desktop for example, the next time that he opens the "All Documents" virtual folder, he will see this latest documents also.

Click to enlarge
The "All Documents" virtual folder. Nothing more than a simple xml file

Let's take another example to help understand how a virtual folder works. If a user wants to copy some photos into the photos folder, he can find a link to that folder by clicking on the photos "shortcut" on the start menu (which is a virtual folder) and then select the link "Photos" from the navigation bar. You can't copy files into a virtual folder because it isn't an actual folder. If you have some files that you want to appear in the virtual folder, then you MUST edit or view those files in order for the Windows search engine to index them. You can also create your own virtual folders. We will look into virtual folders later on along with the new search page for Windows Vista and how you can create them.


12. Visual Improvements & New features Page 3

The Games Explorer : By clicking on the Games link from the Start Menu, Windows Vista's games explorer appears. From now on, all the games that are installed on your computer, will appear in this window. It was about time, since I never liked that "Program files" was the default option when installing a game in any of the previous Windows releases.

Click to enlarge
All the games are stored in the same folder now

Next, we take a look at the most interesting part of Windows Vista, the new Explorer. Below is what you see when you click on the "Computer" shortcut.

Click to enlarge Click to enlarge
Click to enlarge
Click to enlarge
The user now has more options to configure Windows to look the way he wants

From the screenshots, we can see the changes from the previous Windows releases. The new style is tidier with the back and front icons are smaller, while the toolbar can be hidden. Microsoft has gone to great lengths to make Windows so configurable, that any user can create the appearance they want. Also look for the impressive, new transparency effect.

The Preview Panel can now be positioned either at the bottom or on the right half of the screen and you can adjust its size or hide it. You can also see the free and used space on your hard drive without having to select it. If you select a document, you will see the keywords, author etc. If you select an audio file, you will see the album title, year, rating, duration, genre, and track number.

Click to enlarge
The Preview Panel

We will now continue and take a look at the way that Explorer shows folders with files and other sub-folders. Windows Vista uses some new, more attractive images. These new images as well as the old ones, have been re-rendered as higher resolution versions

 

Click to enlarge
Click to enlarge
Click to enlarge
The new higher resolution images for folders of Windows Vista

13. Visual Improvements & New features Page 4

On the left hand side, we can see the Navigation Panel that helps explore and view your files quicker. Navigation Bar options changes according to the type of the files that the folder you browse contains.

Click to enlarge
Exploring Audio Files

The standard edit menu to copy, paste, etc files and shortcuts that Windows XP has, has been replaced with a new toolbar that is situated under the address bar. In this new toolbar, we have a button called "Organize", which drops down a menu that includes choices like Rename,

Move, Copy, E-mail, and Delete, a View button to help configure the size and style of the icons, and a show/hide button lets lets you set the preview panel, Classic Menu, status bar and Navigation panel to be visible or hidden. It also has a "Share" button, and some shortcuts to other locations.

The new menu options

The new way of viewing files: Windows Vista has a new way for setting the style and the size of your file icons by using a slider bar. This reminds me of the way that Photoshop CS2 dose it. There are 5 styles to choose from and for each style, the user can set the size of the icons by sliding the bar up or down. Very convenient

From very small ...
... to very huge icons
A lot of users will find very useful, the new way of setting the size and the style of your file icons

The breadcrumb bar: We will now see some of the more interesting feature of Windows Vista. The address bar from previous releases has been replaced with a breadcrumb bar. What does a breadcrumb bar do? From now on, users don't have to enter the location that they want to go to manually (they still can if they want too though). By clicking on the arrow, right of the folder's name, a drop down list with sub-folders appears from which you can select a folder that you want to navigate to. So for example, let's assume that you want to go to the following location: D:\Users\Administrator. and you are in the D:\Users\CDRInfo. Normally, you'd have to hit the back button, look for the Administrator sub-folder and double click on it. Now, you can simply click on the arrow, right of the Users folder and select Administrator from the drop down list. An extremely useful an time saving feature. After using this feature, you will probably not want to see the classic address bar again.

Click to enlarge
Users are going to love the new breadcrumb bar


14. Visual Improvements & New features Page 5

Searching Windows : In the right hand corner of the breadcrumb bar, we can see the search bar. Apart from this search bar that is used for quick searches, the advanced search has also changed a lot. Windows search now supports filters. Filters make our lives easier and let us have more control over the search results. The filter is a condition like the minimum or maximum file size, the name of the artist, part of a filename etc., the choices are almost unlimited.

For example, you have a database with hundreds of music files from one artist but you want only the track that contains the word "moon" in the name. The screenshot below shows how this would be achieved. This improvement was necessary.

Click to enlarge
With the help of filters, you can now find exactly what you want

After an advanced search, you can save your search results by clicking the "Organize" button and creating a virtual folder. You can save your virtual folder anywhere you want. Every time you open this virtual folder, a search will be committed in the Windows database with your conditions. This is very useful for users that for example, want to explore all the files that contain "work" in the filename but are not stored in the same folder.

The Control Panel: The Control Panel display has been changed a little. It uses the category-based organizational scheme that we found in Windows XP but with more details. The drop down menu on the left makes it even easier to find what you want.

Click to enlarge Click to enlarge
The new look Control Panel

Control Panel Components:

Installed Programs: From the control Panel, "Add or Remove Programs" that we found in Windows XP has been replaced with an "Installed Programs" applet. This give you a better view of the programs that are installed, the games and the updates and you can also install new programs. As we mentioned in the page "Technical Improvements", Windows Vista now has better control over the way that applications are installed under Windows in order to avoid conflicts with other programs or Windows components.

Click to enlarge
The new applet for installed programs, keeps track of programs more tidily than before


15. Visual Improvements & New features Page 6

Printers and Faxes: From the 6th page of Technical Improvements, we saw that Vista now can create XPS documents. As a result, a Digital Document Writer has been added in the printers and faxes section.

Click to enlarge

Help and Support: A new help and support applet has been added in Windows Vista. Users now can find quicker solutions to their problems by searching the internet for a solution. All the problems that have been found are stored in the "Solutions to Problems" section and the user can check again later for solutions or try to solve a problem that he has. In beta 1, it doesn't contain a lot of categories yet, but the final version should be more complete.

Users now have a lot of ways to find solutions to their problems
Windows now has an automatic wizard to check for solutions
Problems are stored on the system and the user can check again later for solutions
Help and support is not finished yet in Beta

Adding Network Place Wizard: A new wizard for adding a network drive is included. It has more options than the previous wizard and it is now easier to add a network place, including wireless. Also, Windows Vista includes technology designed for giving presentations over a wireless network using any standard network projector.

Click to enlarge Click to enlarge
The new wizard for adding a network place
Mapping a network drive
Click to enlarge
Disconnecting a network Drive

16. Visual Improvements & New features Page 7

Security and UAP: We have already said that Windows, for the first time, implements a different way of setting the Administrator and limited users rights. Until now, a lot of users complained that Windows XP and previous releases lacked certain flexibility in security forcing a lot of users to choose to run Windows with administrator rights (e.g. to install, uninstall and run applications without problems).

Click to enlarge

In operating systems like unix and linux, this wasn't an issue. Even when you are logged on with administrator rights, if you are going to make a change that could harm or change a very important part of the system, you are prompted to confirm the action or enter the administrator password. Windows Vista follows the same approach. You can use this level of security by enabling User Account Protection (UAP).

When UAP is enabled, for every serious change that a user is going to make, Windows asks for an administrator password again. Also, internet security is much higher. One problem with UAP is that Windows was never designed to work in this way and a lot of programs might have problems when installed in this version.

Program Compatibility Wizard: Also, for programs that have been designed to work in previous Windows releases, Windows now has the "Program Compatibility Wizard". This is an updated version of compatibility that Windows XP has. Windows tries to automatically find a way to run the executable program by searching settings combinations or the Microsoft database on the internet. When a user has a compatibility problem with a program and he manages to find a way to solve it, the solution is uploaded to the windows server to help other users that have the same problem.

Click to enlarge
Windows now uses a wizard to run an unsupported application

Sync Manager: According to Microsoft, Windows Vista will unify the synchronization with Sync Manager, a new interface that enables users to initiate a manual sync, stop an in-progress sync, see the status of current sync activities and receive notifications to resolve conflicts across all devices and data sources with the click of a single button.

Click to enlarge
The Sync Manager


17. New Applications Page 1

With Windows Vista Beta 1, some applications have been updated and some new ones have been added.

Windows Media Player: The final version of Windows Vista will come with Windows Media Player 11. Windows Vista Beta 1 comes with an updated Windows Media Player 10. Except for some new buttons and some other small improvements, there are no other new additions.

Click to enlarge
Not a lot of improvements are introduced in the new Windows media player for Windows Vista

 

Outlook Express: Microsoft Vista comes with an updated version of Outlook Express. Here are some of the new features in the Longhorn Beta 1 version of Outlook Express as we found them from the Outlook Express team:

Click to enlarge
The new updated Outlook Express

Search e-mail: You can search your e-mail inbox by clicking Search on the Start menu. Search will find matches based on both the headers and message text of the mail in your inbox. You can create Auto Lists (saved searches) for quick access to common e-mail search queries. And you can save your favorite searches so that you can run them later to find newer results as you receive more messages.

Quick Search: You can quickly search messages from within Outlook Express by typing complete or partial words into the Quick Search box. You’ll instantly get a list of all of the messages that contain those words. Quick Search will find matches based on both the headers and message text of your mail messages.

Junk E-Mail Filtering: Outlook Express now includes Microsoft SmartScreen technology to help you get rid of unwanted junk e-mail from POP3 accounts. Junk e-mail filtering is on by default. You can change filtering settings or turn off the filtering by selecting Junk E-Mail Options from the Message menu.

 

SafeDocs: Windows Vista introduces SafeDocs. SafeDocs is the Windows Vista backup solution for individuals and small businesses that do not have a server. Desktops in a server environment should use redirected My Documents folders, although SafeDocs may also be useful for protecting files stored outside that folder. SafeDocs will perform scheduled incremental backups of your data to the target media. It allows you to restore an individual file or a group of files. Backup automation with SafeDocs improves the regularity of data protection, and provides you the peace of mind that your data is safe and recoverable.

Click to enlarge Click to enlarge
SafeDocs is still under development
While a backup is in progress

18. New Applications Page 2

Speech Recognition: A speech recognition application can be found in Windows Vista. This application lets you control your system with your voice. You can open, close, edit or even write in documents. It is a little confusing when you try to write in a document because if you try to say "open", the speech recognition engine will interpret it as though you want to open an application and not to write the word open. However a lot of users will find it useful

Speech recognition
If you try to close an application but the Speech recognition engine hasn't understand you, you will get this message

 

Internet Explorer 7: The "lots of promises" Internet Explorer 7 is here. Internet Explorer 7 for Windows XP SP2 and Windows Vista promises a safer, more personalized and more productive browsing experience for users and a richer, more compatible platform for developers and network administrators.

Click to enlarge
Click to enlarge
The new look of Internet Explorer 7. Just like previous releases, the style is the same with the Windows Explorer

Let's see some of the main features:

Dynamic Security Protection : Web browsers occupy a difficult position in the business environment — they are an indispensable business tool but also present an opening for intruders. Managing this balance is a top priority for Microsoft’s customers. Given the ubiquitous and essential nature of the Web browser, combined with the requirement for bidirectional network communications, browsers have the unenviable responsibility of being both a critical element of the computing infrastructure and the primary attack point for malicious software.

Tabbed Browsing : Internet Explorer finally support tabs after a lot of requests. Tabs helps you to manage multiple windows of multiple Web sites within one browsing window for a consolidated view of all their pages, instead of using the current multiple-window method of browsing.

Internet Explorer 7 RSS Feed Support: Web publishers use RSS to create and distribute news feeds that include links, headlines and summaries. With an RSS reader, a user can subscribe to many feeds and read new entries all in one place, without visiting individual Web sites. Internet Explorer 7 will include deep support for RSS feeds. Beta 1 supports feed discovery and subscription, and upcoming releases will include additional features to further enrich the RSS experience.

Click to enlarge
Internet Explorer 7 support RSS feeds and Tabs

Shrink-to-Fit Printing : As part of Microsoft’s efforts to simplify the common tasks that users perform every day, beta 1 will include enhanced functionality that makes it easier to print out a Web page. Today, a large number of Web pages do not print out correctly — for instance, the content at the left or right margin is cut off.

Click to enlarge
The Shrink to Fit function

By default, the browser will shrink a Web page’s text just enough to ensure that the entire page prints properly, so users will no longer need to cut and paste to a text-editing program.

Source: Technical Overview From Microsoft

19. Other improvements and Tweaks

Except for the usual new features that Windows Vista has delivered including visual changes, I have found some other smaller improvements that I would like to share with you.

Changes in some drop down menus:

When you right click on a Shortcut, a "Find Target" link can be found at the bottom of the menu. Very convenient.

Click to enlarge

When a user Renamed a file in any previous releases and show extensions was enabled, by default Windows highlighted the whole filename including the extension. Now it highlights only the name part without the extension. Very helpful for users like me that use Windows with the extensions visible.

When a user performs a search, he can now resize the details column to fit in the screen.

Click to enlarge

Task dialogs and confirmation messages have also been improved. See the screenshots below:

Click to enlarge
Click to enlarge Click to enlarge
Click to enlarge
Task Dialogs, confirmation messages and other screenshots

20. Current Bugs and other Problems

I have experienced some bugs and application incompatibilities with Windows Vista.

In internet Explorer 7, when you set the view to full screen and return to normal again, the back and forward buttons disappear. I have found some other problems with other applications that had problems in displaying some things. In Control Panel, the navigation bar sometimes doesn't display the choices correctly. Check the screenshots:

Click to enlarge Click to enlarge
Sometimes in Internet Explorer the buttons disappear In yahoo messenger and other programs like E-Mule a lot of components are not displayed correctly
Click to enlarge
Control Panel problem

Moreover, when I was using Opera to surf the internet, sometimes after Opera had finished loading a page, Windows displayed a message that Opera had stopped responding without that being the case. Serious and annoying bug.

Click to enlarge
Opera bug, Windows reports that it has stopped responding when it hasn't

Speed Changes: I have noticed that Windows now boots faster than before. Shutdown is approximately the same. When you open a folder or a virtual folder however, Windows has a delay of about 1-2 seconds until it refreshes the page to fill the preview panel, the navigation panel and the icon size and style. Well I don't know if I'm the only one that finds this very annoying, but this didn't happen in Windows XP and Microsoft should fix it.


21. Final thoughts

From the technical improvements, we understand that Microsoft has done a lot of research to determine exactly what the problems were with the previous releases and what users want. From the features, we can see that Microsoft's main goal is to make a new operating system with the simplicity of the previous Windows release, Windows XP, but with the security of operating systems like unix, and the visual effects of Macintosh OS X. Well, that's a hell of a mix and if they've done it right, this release will be a revolution on previous releases.

The first thing that will probably concern most users is compatibility, because as we have seen, both the driver model and the installation procedure has changed. We will see how Microsoft is going to support applications written for previous releases.

Click to enlarge
Windows Vista is certainly visually more appealing. However, will the final version be free of bugs and the compatibility problems?

It is not yet time to install Windows Vista as your primary operating system. It has a lot of compatibility issues that need to be solved. Also, it is still heavy and sometimes Windows stops responding even when you open a simple folder. Of course, we must not forget that we are still in the first beta. Another version is going to be released in a few months and after beta 2, the final release will come.

I hope in the next beta release, most of the major problems will have been solved including the speed and response of Windows Vista. Microsoft has done a very good job until now and if the improvements continue in the next releases, then Windows Vista will win a lot of new users. We will see..

Discuss this review in our forum



Home | News | All News | Reviews | Articles | Guides | Download | Expert Area | Forum | Site Info
Site best viewed at 1024x768+ - CDRINFO.COM 1998-2025 - All rights reserved -
Privacy policy - Contact Us .