Windows 7 Manageability Overview
Windows 7 Manageability Overview
Microsoft Corporation
Published: February 2009
Abstract
Windows 7 introduces a number of manageability improvements that can reduce total cost of
ownership by helping to increase automation, improve user productivity, and provide flexible
administrative control to meet compliance requirements. This paper provides an overview of each
of these improvements.
Copyright Information
Information in this document, including URL and other Internet Web site references, is subject to
change without notice. Unless otherwise noted, the companies, organizations, products, domain
names, e-mail addresses, logos, people, places, and events depicted in examples herein are
fictitious. No association with any real company, organization, product, domain name, e-mail
address, logo, person, place, or event is intended or should be inferred. Complying with all
applicable copyright laws is the responsibility of the user. Without limiting the rights under
copyright, no part of this document may be reproduced, stored in or introduced into a retrieval
system, or transmitted in any form or by any means (electronic, mechanical, photocopying,
recording, or otherwise), or for any purpose, without the express written permission of Microsoft
Corporation.
Microsoft may have patents, patent applications, trademarks, copyrights, or other intellectual
property rights covering subject matter in this document. Except as expressly provided in any
written license agreement from Microsoft, the furnishing of this document does not give you any
license to these patents, trademarks, copyrights, or other intellectual property.
Active Directory, Microsoft, MS-DOS, Visual Basic, Visual Studio, Windows, Windows NT,
Windows Vista, and Windows Server are trademarks of the Microsoft group of companies.
Copyright Information......................................................................................................................2
Contents..........................................................................................................................................3
Note
For a downloadable version of this document, see the Microsoft Download Center.
IT professionals are often responsible for repetitive and time-consuming tasks. Windows 7’s
comprehensive scripting abilities enhance the productivity of IT professionals by automating
those tasks, which reduces errors while improving administrative efficiency:
• Microsoft® Windows PowerShell™ 2.0 enables IT professionals to easily create and run
scripts on a local PC or on remote PCs across the network. Complex tasks or repetitive
management and troubleshooting tasks are automated.
• Group Policy scripting enables IT professionals to manage Group Policy Objects (GPOs)
and registry-based settings in an automated manner, thus improving the efficiency and
accuracy of GPO management.
In addition to its powerful scripting capabilities, Windows 7 includes several features that improve
user productivity and reduce costs:
• Built-in Windows Troubleshooting Packs enable end-users to solve many common
problems on their own, and IT professionals can create custom Troubleshooting Packs, thus
extending this capability to internal applications.
• Improvements to the System Restore tool inform users of applications that might be
affected when returning Windows to an earlier state.
• The new Problem Steps Recorder enables users to record screenshots, click-by-click,
that reproduce a problem so IT can troubleshoot solutions.
• Improvements to the Resource Monitor and Reliability Monitor enable IT professionals to
more quickly diagnose performance, compatibility, and resource limitation problems
For IT departments to address their ever-increasing security needs and meet compliance
requirements, Windows 7 also supports the following features:
• AppLocker™ enables IT professionals to more flexibly set policy on which applications
and scripts users can run or install, providing a more secure and manageable desktop.
• Auditing improvements enable IT professionals to use Group Policy to configure more
comprehensive auditing of files and registry access.
• Administrators can require users to encrypt removable storage devices with BitLocker To
Go™ via Group Policy.
4
• Group Policy Preferences define the default configuration, which users can change, and
provide centralized management of mapped network drives, scheduled tasks, and other
Windows components that are not Group Policy-aware.
• DirectAccess seamlessly connects mobile computers to the internal network, allowing IT
professionals to manage them if the user has an Internet connection
Altogether, the improvements introduced by Windows 7 can reduce the time IT professionals
spend maintaining and troubleshooting, improve user productivity, and enable IT departments to
better meet compliance requirements.
Increased Automation
One of the best ways to improve the efficiency of IT professionals is through the use of
automation. With automation, tasks that previously required hours of an IT professional’s time can
be handled in seconds. By detecting a problem and automatically taking steps to resolve it, a
process that an IT professional had previously performed manually can be entirely automated. An
added benefit is that automation also reduces the possibility for human error.
Scripting is the most flexible and powerful automation tool for IT professionals, and Windows 7
includes an improved version of the Windows scripting environment: Windows PowerShell 2.0.
Unlike traditional programming languages designed for full-time developers, PowerShell is a
scripting language designed to be used by systems administrators and it does not require an
understanding of complex development languages such as Microsoft Visual Basic®, Visual C+
+®, or C#.
Because PowerShell can use Windows Management Interface (WMI), scripts can perform almost
any management task an IT professional would want to automate. You can call command-line
tools from PowerShell, enabling full control over any aspect of the system that supports
management. PowerShell can even leverage the full .NET Framework, providing access to
thousands of powerful objects.
To develop or run a PowerShell script, it must be installed on the computer. PowerShell 2.0 is
available as a download for Windows XP, Windows Server® 2003, and Windows Vista, and it
ships with Windows Server 2008. In Windows 7, PowerShell 2.0 is built into the operating system,
therefore, IT professionals can create, distribute, and run PowerShell scripts on computers
running Windows 7 without having to deploy or service additional software to the PCs across their
organization.
Some of the tasks administrators use PowerShell for with Windows 7 include:
• Remotely creating a System Restore point prior to troubleshooting
• Remotely restoring a computer to a System Restore point to resolve a problem that
cannot be easily fixed
• Remotely querying for installed updates
• Editing the registry using transactions, which ensure that a group of changes are
implemented
• Remotely examining system stability data from the reliability database
5
The sections that follow describe key improvements to PowerShell in Windows 7 to help IT
professionals automate time-consuming tasks.
6
• Debugging. The integrated visual script debugger allows the user to set breakpoints,
step through the script (step into, step over, and step out), check the call stack, and hover
over variables to inspect their value.
• Object model. The ISE comes with a complete object model, which allows the user to
write PowerShell scripts to manipulate the ISE itself.
• Customizability. The ISE is fully customizable, from the size and placement of the panes
to the text size and the background colors.
These features make it easier to learn scripting and provide a more robust development
environment out-of-the-box.
PowerShell Cmdlets
Cmdlets (pronounced command-lets) are one of the most powerful features of PowerShell. A
cmdlet is a task-oriented command that is used in the Windows PowerShell environment. For
example, PowerShell includes cmdlets that:
• Append text to a file
• Read and write XML files
• Manage services
• Manage files and folders
PowerShell 2.0 supports over 500 new cmdlets to manage client computers and servers, edit the
registry and file system, perform WMI calls, and connect the powerful .NET Framework
development environment. You can also extend PowerShell by creating custom cmdlets or use
community-developed extensions.
PowerShell Remoting
In the past, in order to manage a remote computer, you would have to connect to it using Remote
Desktop. This makes large-scale (or automated) management difficult. PowerShell 2.0 introduces
PowerShell Remoting, which lets you run PowerShell commands for automated or interactive
remote management. Today, efficient administrators do the majority of computer management
across the network. With Windows 7 and PowerShell 2.0, you can run cmdlets on remote
computers using the standard management protocol WS-Management (WS-MAN). This allows
you to create scripts that run on one or many remote computers and to take control of a remote
PowerShell session to execute commands directly on that computer. Uses include:
• Creating a System Restore point during a help desk call so that you can restore the
computer to the current state if necessary
• Changing firewall rules to protect computers from a newly discovered vulnerability
Another option for running PowerShell scripts on remote Windows 7 computers is to use logon,
logoff, startup, and shutdown scripts defined in GPOs. Earlier versions of Windows supported
specifying only command files for these scripts. PowerShell provides far more flexibility and
power than is available in command files
7
PowerShell Eventing
Many applications support immediate notifications of important actions or events. These are
commonly exposed as WMI events, or events on a .NET object. Additionally, Windows itself
exposes helpful notifications around file activity, services, processes, and more. These events
form the foundation of many diagnostic and system management tasks. In Windows 7,
PowerShell 2.0 supports this by listening, acting on, and forwarding management and system
events. IT professionals can create PowerShell scripts that respond synchronously (immediately
after the event is added) or asynchronously (at some later time) to system events. If you register
for an event through PowerShell remoting, you can even have those event notifications
automatically forwarded to a centralized machine.
With PowerShell, the flexibility is unlimited. For example, you can create a script that performs
directory management if files are added to or removed from a certain location. You can create a
script that performs a management task only if a specific event is added multiple times, or if
different events occur within a specified amount of time. You can even create scripts that respond
to events created by your own internal applications to perform management tasks specific to your
organization’s needs.
In addition to these capabilities, PowerShell’s eventing supports WMI and .NET Framework
events that cover more detailed notifications than those available in the standard event logs. For
example, PowerShell can access eventing related to services starting and stopping, processes
launching, files changing, and more.
GPO Cmdlets
Perhaps your organization needs to create different GPOs for multiple business units, and each
GPO varies by two different settings: the delay before the screensaver starts, and whether a
password is required to unlock the screensaver. In an organization with six business units, each
with different business requirements, administrators would normally have to manually create the
GPOs, and define the settings for each, from within the UI, which can be very time-consuming.
With Windows 7 and PowerShell, an administrator can write a PowerShell script that uses an
array containing the business unit names and unique GPO settings. The script can then iterate
through the array and create each GPO in just seconds.
9
efficient. Improved versions of System Restore and automatic installation of the Windows RE can
reduce the time required to solve system and startup problems. For IT professionals, enhanced
versions of Resource Monitor and Reliability Monitor reduce the time required to diagnose
problems.
10
Windows 7 Troubleshooting Packs
Windows Media Player Library Troubleshoot problems that prevent music and
movies from being shown in the Windows
Media Player Library
Windows Media Player Setting Reset Windows Media player back to default
settings
Play a DVD in Windows Media Player Troubleshoot problems that prevent playing a
DVD in Windows Media Player
Connection to a workplace using DirectAccess Connect to your workplace network over the
Internet
11
Incoming connections to this computer Allow other computers to connect to your
computer
Figure 3: Windows Troubleshooting Pack Builder, part of the Windows Troubleshooting Toolkit
Troubleshooting can be manually initiated by users from the Help and Support Center or from the
Action Center, as shown in Figure 4. Troubleshooting can also be initiated from within
applications, allowing organizations to design Windows 7 diagnostic tools as a feature of their
line-of-business applications. IT professionals can execute Troubleshooting Packs remotely and
use Group Policy settings to limit users to diagnosing, but not fixing, problems.
12
Figure 4: Windows Action Center
IT Professionals can also run Troubleshooting Packs on a scheduled basis to automate
maintenance. For example, you can use Troubleshooting Packs to remove temporary files, check
a hard disk for errors, or verify the system time.
Microsoft hosts the Windows Online Troubleshooting Service, which provides Windows 7 users
with new Troubleshooting Packs, and updates to those that ship with the product, to diagnose
newly discovered problems. Administrators can disable this function through Group Policy.
Like applications, Troubleshooting Packs can be signed using a certificate issued by a trusted
Certification Authority (CA). Administrators can then use Group Policy settings to run
Troubleshooting Packs only from trusted publishers. Troubleshooting Packs can be distributed to
local computers, published on an intranet Web site, or stored on a shared folder.
Besides simplifying troubleshooting for end-users, administrators can use Troubleshooting Packs
to speed complex diagnostic and testing procedures by running them interactively from a
command prompt or silently using an answer file. In such cases, administrators can run
Troubleshooting Packs while logged on to the local computer or remotely from across the
network.
13
Start Record, reproduce the problem, enter comments where appropriate, click Stop Record, and
then send the recording via e-mail or share to their IT professional.
14
Figure 6: Recorded Problem Steps
The Problem Steps Recorder can save the IT professional a significant amount of time.
Furthermore, it helps overcome language barriers, allowing IT professionals to diagnose
problems regardless of language differences
System Restore
Occasionally, a user might experience reliability problems. For example, an installation might
update a driver with a less-reliable version or an application might overwrite files with
incompatible versions. In some cases, uninstalling an update or application will not reverse every
change that has been made. Windows Vista included Windows System Restore to store
“snapshots” of the system on the local hard drive, either at regular intervals or to a point before
the system updates or application/device driver installations were downloaded.
In rolling back all system changes made since the restore point, previous versions of System
Restore also reversed system changes unrelated to the problem:
• Applications and drivers that were installed after the System Restore point will be
removed
• Applications and drivers removed after the System Restore point will be restored
These earlier versions of Windows made it difficult for users or IT professional to determine which
components would be affected by restoring to a System Restore point. Users were predictably
frustrated when they discovered that some of their applications were no longer available. Often,
these users called the support center for help—once again consuming the IT professional’s time.
With Windows 7, the user or IT professional can view a list of software changes (based on
applications listed in Add/Remove Programs) before rolling Windows 7 back to an earlier state, as
shown in Figure 7. By offering a more complete explanation of a System Restore outcome, such
as removing an application that should be preserved, an IT professional can choose a different
restore point or make certain to reinstall the application afterward.
15
Figure 7: System Restore description of applications that will be affected by a system restore
In Windows 7, restore points will also be available from system images created by the end users
(similar to Complete PC backups in Windows Vista), allowing System Restore to roll-back to a
point further back in time than the local System Restore storage would allow. In other words,
backups to external hard disks can be used for restore points, too.
Like many other aspects of Windows 7, System Restore enables IT professionals to be more
effective and productive through the use of PowerShell. PowerShell can create a System Restore
point or restore a computer to a System Restore point, even remotely.
Therefore, while on a support call, IT professionals can connect to a computer from across the
network and create a System Restore point before making any changes that might negatively
affect the computer’s stability. Scripts that perform troubleshooting or configuration tasks can
automatically create a System Restore point to allow changes to be easily restored. Finally, an IT
professional could use a PowerShell script to restore a computer to an earlier System Restore
point, even across the network.
16
Windows Recovery Environment
A computer that fails to start is one of the most challenging troubleshooting scenarios IT
professionals face, and most frustrating to users—especially mobile users who are far from the
support staff. If users can’t start Windows, they can’t access software troubleshooting tools to
diagnose and resolve the problem. More important, they can’t give that important sales
presentation or create that budget.
To help users easily resolve startup problems, Windows Vista introduced two tools: the Windows
Recovery Environment and the Startup Repair tool. Users or IT professionals can start Windows
RE by booting a computer from the Windows Vista DVD. The tools included with Windows RE
can often automatically fix startup problems, requiring no troubleshooting from the IT
professional.
Although Windows RE can reduce the time required to repair a corrupted instance of Windows
Vista, many users either don’t have the Windows Vista DVD available or they didn’t install
Windows RE on a separate partition of the PC’s hard drive. Furthermore, Windows Vista did not
include a straightforward way to install Windows RE. If remote users call the support center
because Windows won’t start on their mobile computer, it would be extremely difficult for IT to
resolve the issue. With proper planning, however, IT professionals can install Windows RE onto a
partition on a computer’s hard disk, thus making it available without the Windows Vista DVD.
Like Windows Vista, Windows 7 includes Windows RE, including improved versions of the system
recovery tools, as shown in Figure 8. The most significant improvement is that Windows RE is
automatically installed on the local hard disk as part of the Windows 7 setup, ensuring that the
tools are available even if the Windows 7 DVD is not. Now, regardless of how Windows 7 is
installed, users can be confident that Windows RE, and tools such as Startup Repair, are always
available. Naturally, if the hard disk is not functioning, IT professionals can still start Windows RE
from the Windows 7 DVD.
17
Figure 8: System Recovery Options, launched from Windows RE
With Windows 7, if a remote user can’t start Windows, an IT professional can talk the user
through the process of starting Windows RE from the computer’s hard disk. In such cases, the
system recovery tools can often automatically resolve the problem without requiring any manual
troubleshooting. Within minutes, the user will be able to start Windows 7.
These tools also allow users to start Windows RE from the Recovery Control Panel when they
want to restore their systems from a system image backup or to factory condition. The Recovery
Control Panel guides users through the process of backing up their local user files, restarting the
computer to Windows RE, and launching the appropriate recovery application. (See Figure 9.)
The Recovery Control Panel is assessable from the Action Center, so IT and support
professionals can easily walk remote users through the process of restoring their computers over
the phone.
18
Figure 9: The Recovery Control Panel screen, which provides users with system restore options
Resource Monitor
To troubleshoot resource issues more thoroughly, IT professionals need deep insight into a
computer’s inner workings. The more complex the problem, the more detailed the information to
solve it must be. While Task Manager is sufficient to identify which process is using the most
processor time, IT professionals often need a more powerful tool to identify which process is
generating the most disk or network I/O to solve the problem at hand.
Windows 7 includes an enhanced version of Resource Monitor, which provides this sort of
detailed resource utilization information on a process-by-process basis. As shown in Figure 10,
this data is displayed in a format that provides rapid access to a great deal of information that can
be used to easily drill down into process-specific details.
19
Figure 10: Resource Monitor
Within seconds, you can use Resource Monitor to view:
• Which processes are using the most processor time and memory
• Which services are hosted within a SvcHost.exe process
• Which handles (including devices, registry keys, and files) a process is accessing
• Which modules (including DLLs) a process is accessing
• Which processes are reading and writing the most data to the disk
• How much network data each process is sending and receiving
• Which processes are listening for incoming network connections or have network
connections open
• How much memory each process is using
In addition, you can end processes and search online for information about a process. With
Resource Monitor, IT professionals can quickly identify the source of performance and resource
utilization problems, reducing the time required to troubleshoot complex issues.
Reliability Monitor
Windows Vista introduced the Reliability Monitor, a tool that provides a timeline of system events
that correlate with the overall stability of the PC. These events include the installation or removal
of software and device drivers, application failures, and unclean shutdowns. The Reliability
Monitor has proved to be valuable to IT professionals because it allows them to quickly trace
problems back to the system change that caused them.
With Windows 7, Reliability Monitor is now integrated with Problem Reports And Solutions to
better correlate system changes, events, and potential resolutions. In Figure 11, Reliability
20
Monitor is shown providing details about events on a specific day, including a failed application
installation and security updates.
21
• BitLocker improvements provide data encryption enforcement, including on removable
storage devices.
Group Policy Preferences also extend the reach of Group Policy to applications and Windows
components not normally manageable via Group Policy, such as mapped network drives; local
user account passwords and group membership; scheduled tasks; and registry settings. Finally,
with the proliferation of remote workers, it is critical for IT professionals to enforce configuration
settings on mobile PCs when they’re not directly connected to the corporate network.
DirectAccess keeps mobile PCs connected to the internal network, allowing IT professionals to
download software updates, apply Group Policy settings, and provide remote management.
Combined, these improvements give IT professionals the flexibility they need to address most of
the configuration management issues that occur today.
AppLocker
If users run unauthorized software, their computers can become far less manageable and secure.
They also run sluggishly, which reduces user productivity and generates more calls to the support
center. And, most important, running this software is a violation of compliance rules.
With AppLocker in Windows 7, administrators have more flexibility than ever to specify exactly
which applications and scripts users can run. Administrators can even grant users the right to
install specific applications and limit their ability to install others. This enables IT to build and
sustain more standardized desktop environments.
AppLocker includes a number of rules. Its Publisher Rules grant access to an application based
on its digital signature, making it possible for a single rule to allow multiple versions of an
application to run (even future versions that have not yet been released). As shown in Figure 12,
you can create a rule that allows users to run versions 3.5 and later of an application if it is signed
with a specific certificate. AppLocker’s Publisher Rules improve productivity by allowing IT to
deploy new versions of an application without having to update the rules.
22
Figure 12: An AppLocker rule
Enhanced Auditing
Windows 7 provides detailed auditing to give IT professionals insight into who can access
information, why a user was denied access, and who has changed an object. In previous versions
of Windows, detailed auditing could only be configured using scripts. With Windows 7, you can
use Group Policy settings to enable auditing for subcategories, as shown in Figure 13. This
auditing is designed to assist organizations in meeting regulatory and business requirements.
23
IT professionals can also use Group Policy settings to configure which files, registry keys, and
other objects will be audited. With previous versions of Windows, IT professionals had to
manually configure resource auditing or write scripts that enabled auditing and run them on every
computer.
24
IT professionals typically specify defaults in operating system images prior to deployment. Often,
they must configure many different operating system images to provide specific default settings
for different groups of users. Alternatively, IT professionals can create scripts that map network
drives, create scheduled tasks, or define registry settings. Whichever method is used, managing
all these preferences is cumbersome.
With Windows 7, you can use Group Policy Preferences to configure defaults for non-Group
Policy-aware Windows components, including:
• Mapped network drives
• Scheduled tasks
• Shortcuts
• Environment variables
• Power options
• Printers
• Regional options
• Folder options
• Open Database Connectivity (ODBC) data sources
• Registry settings
• Start menu settings
• Internet settings
• Local users and groups
Unlike traditional Group Policy settings, Group Policy Preferences assign defaults that users can
change. IT can leverage Group Policy Preferences to reduce the number of Windows images
required for deployment, because they can define Group Policy Preferences to configure default
settings, rather than creating separate Windows images for different configurations.
Besides defining preferences, you can create, replace, update, and delete files, groups of files,
and folders. The straightforward user interface, shown in Figure 15, allows you to synchronize
files from across the network to the destination you specify. For example, you could use this
interface to copy a custom dictionary to the %AppData% folder within each user profile. The
folder’s interface allows you to regularly delete the contents of a folder, which is useful for
cleaning temporary files.
25
Figure 15: Configuring Group Policy settings with a graphical user interface
Group Policy Preferences can be assigned to different groups of users or computers within a
GPO without requiring the use of WMI filters. For example, an administrator could configure a
preference that applies only to mobile computers.
Many Group Policy Preferences are configurable using the same user interface that users would
access to configure an application. For example, you can use Group Policy Preferences to
configure Internet Explorer options using a graphical user interface similar to that provided by
Internet Explorer itself, as shown in Figure 16. Similarly, you can specify devices using a browser
similar to Device Manager.
26
Figure 16: Configuring Group Policy Preferences
There are, however, a number of key differences between Group Policy Preferences and Group
Policy settings.
Enforcement Preferences are not enforced; Settings are enforced; the user
users can change settings interface to change settings is
disabled
27
DirectAccess
Mobile computers are a challenge for IT departments because they can only be managed when
they are connected to the internal network. Users who work away from the main office or who
travel for extended periods of time might not connect to the internal network for weeks or months.
As a result, these mobile computers don’t download updated Group Policy settings, critical
updates, or anti-malware definitions.
Traditionally, remote users connect to internal network resources with a Virtual Private Network
(VPN). However, using a VPN can be cumbersome for users because it requires several steps,
and several seconds (or even minutes), for authentication to occur.
Windows 7, together with Windows Server 2008 R2, introduces DirectAccess (see Figure 17), a
new solution that enables users to have the same experience working remotely as they would
working in the office. Taking advantage of technologies such as IPv6 and IPSec, DirectAccess
provides remote computers with automatic, seamless access to the internal network across the
Internet without connecting to a Virtual Private Network (VPN), while providing secure and flexible
network infrastructure for enterprises.
Summary
Windows 7 is designed to reduce cost and increase IT department productivity by increasing
automation and providing tools to make troubleshooting and resolving issues quickly. Windows
PowerShell 2.0, an enterprise-scale scripting engine, is included with Windows 7 and enables IT
professionals to automate almost any aspect of system management. IT professionals can even
automate the creation and configuration of Group Policy objects, simplifying policy definition for
organizations with a complex Group Policy structure.
Windows 7 also helps users be more productive. In particular, IT professionals can use
PowerShell to create customized Windows Troubleshooting Packs that are designed to resolve
issues common to their specific environment. Because troubleshooting is extensible, IT
professionals and line-of-business application developers can design solutions that users can
access to diagnose and even resolve problems with internal applications. And users who solve
their own problem using the Windows Troubleshooting Platform don’t need to call the support
center.
For those problems that still require a call to the support center, Windows 7 enables IT
professionals to quickly diagnose and solve problems. Anyone who has struggled to reproduce
the problem a user describes will appreciate the Problem Steps Recorder, which captures click-
by-click screenshots showing what user actions led to the problem. Improvements to Resource
Monitor and Reliability Monitor will enable IT professionals to quickly identify which processes are
causing problems and what system changes might have caused them. Updates to System
Restore enable users or IT professionals to see which applications and drivers will be affected
before a restore point is activated. Windows Recovery Environment is installed by default so that
it can be accessed in an emergency or when a Windows 7 DVD is not available.
Windows 7 also includes significant enhancements to Group Policy, the tool IT departments use
to centrally manage computers running Windows. If you strive for a more managed and secure
desktop environment that restricts which applications users can run, AppLocker will enable you to
create more flexible rules that can apply to any version of an application—even versions that
have not yet been released. Group Policy Preferences define default settings for users, providing
a simple way to establish an initial configuration that users can update, without requiring you to
modify deployment images. You can also use Group Policy to require BitLocker encryption, even
for removable storage devices such as USB flash drives. Finally, by enabling DirectAccess,
mobile computers can continue to be managed, receiving updated Group Policy settings on a
regular basis, syncing data files with the server, and receiving software updates, because they
will be automatically connected to your internal network every time the computer connects to the
Internet.
These technologies enable Windows 7 to accomplish a simple, universal goal: reduce desktop
support costs by making IT professionals more productive.
29