Home > Articles > Home & Office Computing > Microsoft Windows Vista & Home Server

This chapter is from the book

Computer Management

Administrative Tools comes with a list of mini-apps to work with, but the Computer Management option provides a grouping of tools in one console. It may not be the super console you would like to have (which you can create if you like), but it is a decent toolset collection.

The Computer Management tool, shown in Figure 3.3, allows you to manage local or remote systems through one console. You can monitor system events, work with hard disks, manage performance, schedule tasks, and so on.

Figure 3.3

Figure 3.3 The Computer Management console includes a bevy of tools.

Under System Tools, the following are available:

  • Task Scheduler—Create and manage common tasks that your computer will carry out either automatically, or at the times you specify.
  • Event Viewer—Used to view logs about events associated with file and directory replication, DNS, security, and more.
  • Shared Folder—Categories include: Shares—Used to create shares and list all system shares. Sessions—Any open session from the local computer or a remote computer is listed. Open Files—Files being used by users or other computers are listed.
  • Local Users and Groups—Used to make user and group accounts on the local computer.
  • Reliability and Performance—Provides preconfigured diagnostics of your systems reliability and performance. You can also define your own counters to watch in real time or over a predefined period.
  • Device Manager—Used to view all system resources.

Under Storage you'll find this option:

  • Disk Management—Used to create, format, or delete simple, spanned, mirrored, striped, or RAID-5 volumes. Also provides information about the disk regarding the status and health.

Under Service and Applications are the following:

  • Services—Lists all services (started or not) and the Startup Type (Automatic, Manual, or Disabled).
  • WMI Control—Windows Management Instrumentation control allows monitoring and controlling system resources.

We've already discussed Local Users and Groups. Reliability and performance (in Chapter 8, "System Recovery and Diagnostic Tricks"), as well as disk management (in Chapter 5), are discussed later, while Device Manager was discussed in Chapter 2. This section discusses Task Scheduler, Event Viewer, and Services.

Task Scheduler

Vista really gives the Task Scheduler a much-needed overhaul. Now you can configure the Scheduler to perform tasks on a timed basis and to respond to situations that occur on a variety of levels. The response system can even restart a service that has failed or send an email to the admin when a certain event has occurred.

The Task Scheduler is integrated with Event Viewer now so that it can react to situations based on trackable events that occur. There is also a way to view the task history. You can see which tasks are running, have run, or are scheduled to run.

In addition, an entire Task Scheduler Library has preconfigured tasks with which you can work (see Figure 3.4).

Figure 3.4

Figure 3.4 The Task Scheduler has an entire library of options, or you can create your own using the basic options or the more advanced tabular dialog box.

Triggers and Actions

A trigger is what causes the task to run, and an action is what you have configured to occur in the event the trigger goes off. Some triggers are schedules you put into effect. For example, if you specify that every day at 1:00 p.m. a certain action should occur, the trigger is the scheduled time. But a trigger can also be when a user logs on, when the system starts up, when a specific event occurs, and so forth. An action is whatever task the system executes in response to the trigger. Actions can include running a program, sending an email, or even displaying a preconfigured message. There is a list of possible actions to take, including running scripts with the cscript.exe application, copying a file with Robocopy, starting and stopping services, shutting down the system, and a host of others.

Scheduling a Task

You can do this in several ways. First, from the console, you can open the Actions pane and select Create Basic Task. This walks you through the following options:

  • Create a Basic Task—Start with a name and description.
  • Trigger—You can work from a schedule (daily, weekly, monthly, one time) where you set time parameters for the triggered event. You can also select When the Computer Starts, When I Log On, or When a Specific Event Is Logged. In the case of the latter, you can select the Log, the Source, and even the Event ID that triggers the next step.
  • Action—You can start a program (and choose which program that is), send an email (with the information for the email), or display a message (and write the message you want displayed).
  • Finish—You can review your new task and tell it to open the properties of the task. When this happens, you can see a much more complicated tabbed view of a task. These options help you go beyond the basic task. You can create and manage your tasks in this way, or you can create a task from the more complicated tabs to start with.

To create a task that goes beyond what you can do when creating a Basic Task, select the Create Task option from the Action pane. This offers a dialog box with five tabs to configure your tasks. The tabs include the following:

  • General—Enables you to configure the name and description of the task, under which user account it should run, and whether it should run only when that user is logged on or not.
  • Triggers—Here you can schedule an extensive list of triggers, starting with the time triggers you can set up. If you change the Begin the Task options, the settings will. The most complex of the triggers involves Events.
  • Actions—The actions you can perform are no different here from what they were from the basic settings. You can configure a program to run, send an email, or display a message: Or you can do all three if you like. That is the benefit to using the advanced tabbed task creator. You can configure different actions to occur from here.
  • Conditions—This tab enables you to specify conditions to your task. For example, you may want certain tasks to run only if the system is idle. Other conditions might depend on whether the computer is running on AC power or battery power, or if it is or isn't connected to a specific network.
  • Settings—Allows you to determine whether you can start the task manually, what to do if your task couldn't run on schedule, what to do in the event a task is running too long, and so on.

Importing and Exporting Tasks

All of a task's properties (triggers, actions, conditions, settings) are held in XML files. You can export these XML files and import them on other systems.

Importing is quite simple; you can see the import option on the Action pane while working with the task manager. To see the export option, you must open the Task Scheduler Library folder. You can export the tasks you have created or export the preconfigured tasks within the library (although this would make sense only if you have configured them differently in some way). To export a task you select the task, right-click and choose to export. Choose the location for the .xml file that will be created. To import you can right-click any of the task folders and choose import task and then select the .xml file you want to import.

The AT Scheduler, Command Prompt Options, and Scripting

The AT command is the tool that was historically used to schedule tasks through the command-line in previous versions of Windows. Call it nostalgia, but for some reason Microsoft hasn't removed the at.exe command from Vista even though it has replaced it with the schtasks.exe command. What does this mean? Well, if you have worked with the AT command for many years and are comfortable using it, you can still use it in Task Scheduler. All tasks created with the at.exe command must run on the same account, which you can configure through the AT Service Account Configuration option from the Actions pane.

But, if you want to work with the latest tool, the schtasks.exe command enables you to do many of the same operations on local or remote systems. You can create, delete, query, change, run, and end scheduled tasks. Type one of the following commands for help on using schtasks.exe:


schtasks /Create /?

schtasks /Run /?

schtasks /End /?

schtasks /Delete /?

schtasks /Change /?

Scripting the Task Scheduler has been made more fun now that you can go beyond at.exe and even schtasks.exe. With Vista, you can access the Task Scheduler API through scripts. Microsoft provides a nice article on this at http://www.microsoft.com/
technet/scriptcenter/topics/vista/tasks1.mspx
.

This article walks you through the beginning stages of scripting the task scheduler, and whoever wrote it is more than intelligent, but knows how to take dry-programming-speak and turn it into a fun article.

Having Some Fun with the Task Scheduler

Fun? Are Vista Masters allowed to have fun? Well, in addition to saving the universe, we need to enjoy our work. Here are some fun things to try with your Task Scheduler:

  • Need your religious or comedic fix in the morning? You can also set the task scheduler to start up an installed Daily Scripture program, or a set Bible reader, or if comedy is more your needed wake-me-up go to the Calvin and Hobbes site (or whatever comics make you happy).
  • Need an expensive alarm clock? Set Task Scheduler to start up one of your music applications to open and play your favorite songs (or if you are a heavy sleeper, you can have a Godzilla MP3 set to go off, too). Want to live the movie Groundhog Day? Set the Sonny and Cher song "I've Got You Babe" to go off the same time every day?
  • Make coffee and pick up your dry cleaning? Sorry, perhaps in the next version of Windows.

Note that because this command closes all applications and then reboots the system you might want to have a task run that restarts certain applications—perhaps your email client or an Office application you use every day.

The Vista Event Viewer

We've been using Event Viewer for years, but most people check it only when there is a major problem. They see if they can quickly discover which service stopped or what caused the glitch; then they forget about it again until the next big problem. This is not truly taking advantage of the powerful technology at our fingertips. Although upon first look, Vista's Event Viewer can appear overwhelming, let's see if we can tame it a bit.

The Event Viewer (shown in Figure 3.5) enables you to see more than the standard Windows logs (Application, System, and Security logs). Now there are Applications and Services logs, which include diagnostic logs, logs for specific applications within Vista, like your IE logs. In the past, you had to hunt to find logs for certain applications, but Microsoft has tried to bring them all together here.

Figure 3.5

Figure 3.5 The Vista Event Viewer is more robust, offering an Enterprise monitoring functionality.

Custom Views: More Than Filters

So many events come into the Event Viewer that it's almost impossible to track down the problem you are investigating without some form of filter. Views allow you to create filters that not only filter the events of one log, but also enable you to select multiple logs to view. To create a custom view, you select a log, open the Action pane, and select Create a Custom View, shown in Figure 3.6.

Figure 3.6

Figure 3.6 Creating a custom view and choosing the logs included.

From the Custom View dialog box, you can configure the following options:

  • Logged—Enables you to provide a time frame for the events.
  • Event Level—Critical, Warning, Error, Information, and Verbose.
  • By Log—Select the Event log or logs from a checkbox hierarchy.
  • By Source—Select from a source hierarchy, including applications and services.
  • Event IDs—If you know the specific ID you are looking for, you can put it here or enter several IDs separated by commas.
  • Task Category and Keywords—Select from the checkboxes that drop down. Filtering by keywords is a new feature we can all appreciate.
  • Users and Computers—You can have the view look for specific users and can even filter through multiple computers.

XML Event Viewer Details

XML is everywhere in Vista. Event Viewer is no exception. If you look at the properties of an event, you will be met with a scary-looking XML structure (shown in Figure 3.7). You can switch over to the Friendly View if that makes you feel better.

Figure 3.7

Figure 3.7 XML is everywhere in Vista, including Event Viewer details.

Why is the information stored as XML? It makes it easier for applications to take advantage of it for centralization and consolidation of the data. Other applications such as Microsoft Operations Manager (MOM) and Systems Management Server (SMS) (and others that are in the works) can take advantage of the XML open-sourced format of the data.

You can right-click any event and choose "Event Properties" to obtain more information. From the Properties, the General details provide the information you most need to troubleshoot that particular event, if the event indicates a problem with your system. You'll notice that you still have the ability to request help from Microsoft through the Event Log Online Help option, which usually says something like, "Sorry, even though we created the program we have no how idea to help you…we're really, really sorry." Okay, so it doesn't say that, but it is frustrating much of the time.

Subscriptions

You can collect logs from remote systems and save them onto your local system through subscriptions. For this to work, you have to configure the collector (the system that collects the events) and the remote source systems.

To configure the source systems, type the following command from an elevated command prompt

winrm quickconfig

To configure the collector computer, type the following command from an elevated command prompt

wecutil qc

On the source computers you will need to add the computer account of the collector to the local Administrators group on each computer.

After the systems are configured to forward and collect events, you can create new subscriptions through the Event Viewer. There are more details you might need to consider depending on your environment, such as opening ports for your firewall to allow the event management exception and so forth. Going through the Help information from the Event Viewer offers a great deal of information on how-to advice and troubleshooting problems.

Services and the SC.exe Command

Services are the underlying core OS features that handle any number of things on your system, from web services, to print services, and so forth. You've no doubt seen the services console before in XP or Windows 2000 because it has been around a long time.

The services structure hasn't changed much in Vista. You might notice a few more services in Vista. You now have the option to turn off some services to reserve system resources. But from within Service, you can do the following:

  • Stop, start, pause, resume, or disable a service. You can also see the description of what each service does and which other services rely on it to work.
  • Configure recovery actions in the event of a service failure (like restarting the service).
  • Configure a service to run under the security context of a user account that is different from the logged-on user or the computer account.
  • Configure hardware profiles that use different services enabled or disabled.
  • Export your services information to a .txt or .csv file.
  • Monitor the status of each service.

You can use the sc.exe command to communicate and configure the Service Control Manager and services. You can also use the net start or net stop command to stop and start services, but SC is much more powerful.

An example of the sc.exe command is the following:

sc config <service name> start=<mode>

You can start with the following modes:

  • auto—A service automatically started at boot, regardless of a user logging on or not
  • boot—A device driver loaded by the boot loader
  • demand—The default, a service that is manually started
  • disabled—A service that is prevented from starting
  • system—Started during kernel initialization

For more information on SC, type sc.exe /? from a command prompt.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020