Posts Tagged ‘schedule’

Optimize Windows Vista for better performance

Posted by Jason in Windows Vista on June 18th, 2008

No matter how fast or shiny computers might be when they are new, they all seem to get slower over time. That state-of-the-art PC you bought last year might not feel like such a screamer after you install a dozen programs, load it with antispyware and antivirus , and download untold amounts of junk from the Internet. The slowdown might happen so gradually you hardly notice it, until one day you’re trying to open a program or file and wonder, “What happened to my poor PC?”

Whatever the cause, there are a lot of ways to help speed up and make your PC work better even without upgrading your . Here are some tips to help you optimize Vista for faster . (more…)

Print A List Of Meeting Attendees In Outlook 2007

Posted by Jason in Office on May 10th, 2008

Here is a pctipsbox for those of you who frequently meetings using 2007. It is sometimes handy to have a hard copy of the names of attendees invited to a meeting, along with the name of the meeting organizer. Although it requires a few steps, you can print this information in 2007.

Your first step is to copy the names of attendees and the organizer:

1. Within , click the Calendar.

2. Open the appropriate meeting request.

3. On the Meeting tab, click Scheduling .

4. Select the names in the All Attendees list.

5. On the Text tab, click Copy.The names of the meeting organizer and attendees are copied. (more…)

A Better Disk Cleanup

Posted by Jason in Computer on November 15th, 2007

This tip will show you create an unattended which will also empty your prefetch folder. This tip assumes you have XP installed in c:\.

Step 1.
Create a new text file and place the following contents inside:

c:\\\cleanmgr.exe /dc /sageset: 1
c:
cd \
cd c:\\prefetch
del *.* /q
(more…)

How to schedule an update reminder in Windows Vista

Posted by Jason in Windows Vista on September 7th, 2007

The Microsoft Update site in Vista has been replaced by a Control Panel applet. To automate the reminder in Vista, you’ll need to set up two automated processes: one for patching , and another for launching a browser showing the Secunia Software Inspector.

Follow these steps to run Update once a month after Patch Tuesday:

Step 1: Choose Start, Task Scheduler, and press Enter. Click to confirm User Account Control.

Step 2: In the far right pane, click Create Basic Task.

Step 3: In the Create Basic Task Wizard, the name of your task and (optionally) a description. Click Next.
(more…)

How to schedule an update reminder in Windows XP

Posted by Jason in Windows XP on September 7th, 2007

You can make Tasks run a script that launches Internet Explorer 7 with Microsoft Update in one tab and Secunia Software Inspector in another. I use IE 7 in this example because Microsoft Update won’t run in most other browsers, such as Mozilla Firefox. The technique shown below is adapted from a Scripting Host script published by Tony Schreiner in his MSDN blog.

Step 1. Open your favorite text editor, such as Notepad. or paste in the following five lines:

var navOpenInBackgroundTab = 0×1000;
var oIE = new ActiveXObject(”InternetExplorer.Application”);
oIE.Navigate2(”http://update.microsoft.com”);
oIE.Navigate2(”http://secunia.com/software_inspector/”, navOpenInBackgroundTab);
oIE.Visible = true;
(more…)