Best Practices in Scheduling Patch Installation for Minimal User Impact

Size: px
Start display at page:

Download "Best Practices in Scheduling Patch Installation for Minimal User Impact"

Transcription

1 Best Practices in Scheduling Patch Installation for Minimal User Impact Greg Shields w w w. s c r i p t l o g i c. c o m / s m b I T

2 2012 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic Corporation in the United States of America and other countries. All other trademarks and registered trademarks are property of their respective owners. 2 Best Practices for Scheduling Patch Installation for Minimal User Impact

3 We IT administrators spend so much time worrying about patches themselves that sometimes we forget about our users. Indeed getting those monthly Microsoft patches installed is important, but when that installation causes users to miss their deadlines we re actually hurting our business. That s why working with patches and a patch management solution requires more than just clicking buttons. It requires more than just a priority on keeping things secure. It requires a look at how our users behave, and how we can fulfill our requirements for security while minimizing our impact on everything else. What you need is a patch management schedule. How Not to Do Patching As an IT analyst and occasional consultant, I get the regular opportunity to pop into other people s networks and poke around. That opportunity puts me into the networks of the very smallest all the way to the very largest IT organizations. While every network is different, you d be amazed at how common some tactics are. Figure 1 WSUS Patch Configuration in Group Policy Management Console Take, for example, the usual settings many administrators configure for deploying WSUS patches. These settings are strikingly common, even as they completely obliterate user productivity on patch deployment day. Even worse, a casual read through the blogosphere would have you think that they re actually a good idea. Here are the Group Policy settings found in Computer Configuration Administrative Templates Windows Components Windows Update that define how you shouldn t schedule patching: Configure automatic updates. Under Configure automatic updating: 4 Auto download and schedule the install. No auto-restart with logged on users for scheduled automatic updates installations. Disabled. Delay Restart for scheduled installations. Enabled, with any configured value. 3 Best Practices for Scheduling Patch Installation for Minimal User Impact

4 Reschedule Automatic Updates scheduled installations. Wait after system startup, with any configured value. Let s take a look at what this combination of Group Policy settings actually accomplishes. Its first setting configures automatic updates to download and install once they ve been approved and the start time arrives. Configure that start time for the middle of the night, and most of your patchwork gets done when no one s around. This approach might have worked well back in the days when most computers never left the office. But today, most computers aren t desktops anymore. They re laptops, and they re not necessarily guaranteed to be powered on when the start time kicks off. Here s where the rest of these settings actually cause more problems than help. Computers that are powered off during their time for patching will, with this configuration, start that patch installation process once they power back on. That period is usually when the user needs the computer the most, right when they re starting work for the day. The collection of bad settings here may give the user a postponement and even a delay to partially insulate them from the pains of the post-installation patch reboot. But if that user powers on their laptop, starts working on a document, and then walks away for a while, they re going to be in for a world of hurtful rebooting. Figure 2 Configuring Automatic Updates Introducing the Patch-and-Hold Technique Many administrators configure these less-than-optimal settings because of a long-held fear of not immediately rebooting a computer after a patch installation. That fear is admittedly warranted. Back in Windows early days, not rebooting after a patch installation could cause real problems. Half-installed patches lingering around a system drive in those days sometimes caused BSODs or worse. Today s Windows Update service is far smarter than what it was in the old days. The Windows Update service has for a long time been intelligent enough to pre-stage patches that require reboot. Once pre-staged, the computer can continue to operate without problems. Patches awaiting a reboot will get installed later during that reboot. 4 Best Practices for Scheduling Patch Installation for Minimal User Impact

5 This added intelligence grants the patching administrator the ability to patch systems, but hold off on the reboot until a more appropriate time in the future. One could still, for example, set the Configure Automatic Updates policy setting to Auto download and schedule the install for some period during the workday. Your next step is to prevent the reboot from happening. You could accomplish this by setting the No auto-restart with logged on users for scheduled automatic updates installations policy setting to Enabled. Doing the combination of these two settings gets patches installed while users and their laptops are in the office, but prevents the reboot until the next time they actually reboot the computer. You can speed this process even more for patches that don t require a reboot for their installation. Those that don t can get automatically installed by setting the Allow Automatic Updates immediate installation policy setting to Enabled. Figure 3 No Auto-Restart Configuration How to Handle Reboots: The Scheduled Reboot Window This combination is pretty powerful stuff, and it s functionality that you can get right out of the box with Group Policy. Yet there s something that s absolutely missing that keeps this from being a complete solution: Reboots. While the settings in the last section are great for getting rid of the unpredictable reboots that happen as a result of patch installation, they do nothing for actually getting those reboots programmatically implemented across the board. Indeed, you can just tell your users, Hey, you should probably reboot from time to time. But we all know that users invariably do the wrong thing when we give them the right to choose. WSUS and its Group Policies alone don t address the reboot problem very well (a point that I ve already made in the beginning of this article). As a result, solving the reboot problem requires some tools that exist outside WSUS itself. The solution that works the best across nearly every implementation is what I ll simply call a scheduled reboot window. 5 Best Practices for Scheduling Patch Installation for Minimal User Impact

6 A scheduled reboot window is a period of time that you and your users negotiate wherein you re allowed to reboot every desktop in your organization. Perhaps that window is from 2:00PM to 4:00PM on Wednesdays and Saturdays. Maybe it s slightly past the end of workday. Notwithstanding when you agree upon your reboot window, it is a set time period every week that you re given carte blanche to reboot everything. Having that reboot window means being able to Patch-and-Hold users computers. Those with desktops will get rebooted because they re on the network. Those with laptops will get rebooted when they unplug at the end of the day and head home. System, patched; system rebooted. Scheduling that reboot window to occur just past the end of Patch Tuesday also ensures you get patches installed and systems rebooted quickly after patches are announced. Now, your next question probably asks, So, how does one script the reboot? The possibilities are numerous. You could create a VBScript or PowerShell script to accomplish the task, scheduling either perhaps via a Scheduled Task. Doing so via a scheduled script obviously solves the task, but requires some first-hand knowledge of scripting. You ve also got to keep an eye on your Scheduled Task, ensuring that it runs every night like it s supposed to. Here s a quick script that can reboot a bunch of computers, all at once. You ll need a file called computers.txt that contains computer names, one per line, in the same folder as the script. RebootFile = "computers.txt LogFile = "results.txt" Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.opentextfile(rebootfile, 1, True) On Error resume next Do While f.atendofline <> True strcomputer = f.readline Set objwmiservice = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strcomputer & "\root\cimv2") If Err.Number <> 0 Then Err.Clear Else Set coloperatingsystems = objwmiservice.execquery("select * from Win32_OperatingSystem") For Each objoperatingsystem in coloperatingsystems ObjOperatingSystem.Reboot() Next End If Loop This script is admittedly very basic. It s also VBScript, which every IT pundit in the world will tell you is a language soon to go away. Accomplishing the same task in Windows PowerShell is remarkably simpler: Restart-Computer -computername (Get-Content computers.txt) 6 Best Practices for Scheduling Patch Installation for Minimal User Impact

7 The Pain of Reboot Scripts Reboot scripts are ridiculously powerful, when you ve got the time to code them correctly. The script above very obviously reboots computers, but it does nothing for letting you know which ones actually responded. It doesn t let you know when computers have problems, or when they re just not behaving correctly. A desktop management solution can give you better control over this whole reboot process. Such a solution might introduce the kinds of logging that alerts you when computers misbehave. Scripts alone are also challenging for those special cases, like when you want to reboot everybody except for the vocal few, like the executives and those annoying developers who run jobs at night. Scripts run via Scheduled Tasks also do little for laptop users who rather than shut down their computers as they leave for the night, instead choose to just put them to sleep. Some laptop users in the Scheduled Tasks situation might go days or even weeks without rebooting, thanks to Windows built-in hibernation features. So the moral of this story is: Get yourself off the WSUS settings that benefit you but cause problems for your users. Get yourself on a scheduled reboot window, to ensure your patches complete their installation in a timely manner. And get yourself a desktop management solution, one that s primed to assist when those special cases become problematic. 7 Best Practices for Scheduling Patch Installation for Minimal User Impact

5 Group Policy Management Capabilities You re Missing

5 Group Policy Management Capabilities You re Missing 5 Group Policy Management Capabilities You re Missing Don Jones 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

Two Ways to Use Group Policy Delegation

Two Ways to Use Group Policy Delegation Two Ways to Use Group Policy Delegation Jeremy Moskowitz 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic

More information

Email Marketing Now let s get started on probably the most important part probably it is the most important part of this system and that s building your e-mail list. The money is in the list, the money

More information

Making Endpoint Encryption Work in the Real World

Making Endpoint Encryption Work in the Real World Endpoint Data Encryption That Actually Works The Essentials Series Making Endpoint Encryption Work in the Real World sponsored by Ma king Endpoint Encryption Work in the Real World... 1 Th e Key: Policy

More information

Tips & Tricks for Protecting User Data on Windows 7

Tips & Tricks for Protecting User Data on Windows 7 Tips & Tricks for Protecting User Data on Windows 7 Jeff Hicks 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2012 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

Packaging Software: Making Software Install Silently

Packaging Software: Making Software Install Silently Packaging Software: Making Software Install Silently By Greg Shields 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic,

More information

MAC OS 10.6 SNOW LEOPARD AND EXCHANGE SERVICES (MAIL, CALENDAR & ADDRESS BOOK)

MAC OS 10.6 SNOW LEOPARD AND EXCHANGE SERVICES (MAIL, CALENDAR & ADDRESS BOOK) M C T - I T & M C T - I T - D E V IT Support & Development in Maths, Computing and Technology MAC OS 10.6 SNOW LEOPARD AND EXCHANGE SERVICES (MAIL, CALENDAR & ADDRESS BOOK) JEFFERY LAY Last updated: Friday,

More information

Providing Patch Management With N-central. Version 7.1

Providing Patch Management With N-central. Version 7.1 Providing Patch Management With N-central Version 7.1 Contents Patch Management 3 Introduction 3 Monitoring for Missing Patches 3 Setting up Patch Management in N-central 4 Adding a WSUS Server to N-central

More information

How to Outsource Without Being a Ninnyhammer

How to Outsource Without Being a Ninnyhammer How to Outsource Without Being a Ninnyhammer 5 mistakes people make when outsourcing for profit By Jason Fladlien 2 Introduction The way everyone does outsourcing is patently wrong, and this report is

More information

Remote Assistance. bonus appendix

Remote Assistance. bonus appendix bonus appendix Remote Assistance You may think you know what stress is: deadlines, breakups, downsizing. But nothing approaches the frustration of an expert trying to help a PC beginner over the phone

More information

You must do Windows updates with Microsoft Internet Explorer.

You must do Windows updates with Microsoft Internet Explorer. Windows Update Walkthrough Begin by going to this Internet address with Internet Explorer: http://windowsupdate.microsoft.com You must do Windows updates with Microsoft Internet Explorer. The first thing

More information

Role Based Access Control: Why Groups Aren t Enough

Role Based Access Control: Why Groups Aren t Enough Role Based Access Control: Why Groups Aren t Enough Don Jones 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2012 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

Providing Patch Management With N-central. Version 7.2

Providing Patch Management With N-central. Version 7.2 Providing Patch Management With N-central Version 7.2 Contents Patch Management 3 Introduction 3 Monitoring for Missing Patches 3 Setting up Patch Management in N-central 4 Adding a WSUS Server to N-central

More information

How to Configure Outlook 2007 to connect to Exchange 2010

How to Configure Outlook 2007 to connect to Exchange 2010 How to Configure Outlook 2007 to connect to Exchange 2010 Outlook 2007 will install and work correctly on any version of Windows XP, Vista, Windows 7 or Windows 8. These instructions describe how to setup

More information

Why Endpoint Encryption Can Fail to Deliver

Why Endpoint Encryption Can Fail to Deliver Endpoint Data Encryption That Actually Works The Essentials Series Why Endpoint Encryption Can Fail to Deliver sponsored by W hy Endpoint Encryption Can Fail to Deliver... 1 Tr aditional Solutions... 1

More information

Troubleshoot Using Event Log Mining

Troubleshoot Using Event Log Mining Troubleshoot Using Event Log Mining Jeff Hicks 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo

More information

Providing Patch Management with N-central. Version 9.1

Providing Patch Management with N-central. Version 9.1 Providing Patch Management with N-central Version 9.1 Contents Patch Management 4 Introduction 4 Monitoring for Missing Patches 4 Setting up Patch Management in N-central 5 Adding a WSUS Server to N-central

More information

Patch Management Hands-On Exercises. Patch Management Hands-on Exercise

Patch Management Hands-On Exercises. Patch Management Hands-on Exercise Patch Management Hands-On Exercises Patch Management Hands-on Exercise 192 Chapter 5 Patch Management Hands-On Exercises Background Story You have been hired as the lead IT Administrator at the Florida

More information

How to enable Disk Encryption on a laptop

How to enable Disk Encryption on a laptop How to enable Disk Encryption on a laptop Skills and pre-requisites Intermediate IT skills required. You need to: have access to, and know how to change settings in the BIOS be confident that your data

More information

WINDOWS AZURE EXECUTION MODELS

WINDOWS AZURE EXECUTION MODELS WINDOWS AZURE EXECUTION MODELS Windows Azure provides three different execution models for running applications: Virtual Machines, Web Sites, and Cloud Services. Each one provides a different set of services,

More information

Using New Relic to Monitor Your Servers

Using New Relic to Monitor Your Servers TUTORIAL Using New Relic to Monitor Your Servers by Alan Skorkin Contents Introduction 3 Why Do I Need a Service to Monitor Boxes at All? 4 It Works in Real Life 4 Installing the New Relic Server Monitoring

More information

What you should know about: Windows 7. What s changed? Why does it matter to me? Do I have to upgrade? Tim Wakeling

What you should know about: Windows 7. What s changed? Why does it matter to me? Do I have to upgrade? Tim Wakeling What you should know about: Windows 7 What s changed? Why does it matter to me? Do I have to upgrade? Tim Wakeling Contents What s all the fuss about?...1 Different Editions...2 Features...4 Should you

More information

Small Business Owners: How You Can-and Must-Protect Your Business From The IRS If You Have Payroll Tax Problems!

Small Business Owners: How You Can-and Must-Protect Your Business From The IRS If You Have Payroll Tax Problems! E N O, B O U L A Y, M A R T I N & D O N A H U E, L L P SPECIAL SMALL BUSINESS TAX REPORT Inside this Special Report Small Business Owners: How You Can-and Must-Protect Your Business From The IRS If You

More information

In the same spirit, our QuickBooks 2008 Software Installation Guide has been completely revised as well.

In the same spirit, our QuickBooks 2008 Software Installation Guide has been completely revised as well. QuickBooks 2008 Software Installation Guide Welcome 3/25/09; Ver. IMD-2.1 This guide is designed to support users installing QuickBooks: Pro or Premier 2008 financial accounting software, especially in

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Before you set up your account, you may want to spend a few minutes thinking about what you want to get out of Flextivity. Of course, Flextivity helps you successfully manage basic

More information

The Hottest Recruiting Scripts in MLM by Eric Worre

The Hottest Recruiting Scripts in MLM by Eric Worre The Hottest Recruiting Scripts in MLM by Eric Worre It s a stone cold fact that we have a better way, now let s go tell the world For more information on how to become a Network Marketing Professional,

More information

Lock Down Apps & Reduce Help Desk Calls with Registry Policies

Lock Down Apps & Reduce Help Desk Calls with Registry Policies Lock Down Apps & Reduce Help Desk Calls with Registry Policies Greg Shields 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic,

More information

Web App Development Session 1 - Getting Started. Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola

Web App Development Session 1 - Getting Started. Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola Web App Development Session 1 - Getting Started Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola Tools We Use Application Framework - Compiles and Runs Web App Meteor (install from https://www.meteor.com/)

More information

The Social Accelerator Setup Guide

The Social Accelerator Setup Guide The Social Accelerator Setup Guide Welcome! Welcome to the Social Accelerator setup guide. This guide covers 2 ways to setup SA. Most likely, you will want to use the easy setup wizard. In that case, you

More information

When the Active Directory Recycling Bin Isn t Enough

When the Active Directory Recycling Bin Isn t Enough When the Active Directory Recycling Bin Isn t Enough Don Jones 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

Managing your e-mail accounts

Managing your e-mail accounts Managing your e-mail accounts Introduction While at Rice University, you will receive an e-mail account that will be used for most of your on-campus correspondence. Other tutorials will tell you how to

More information

THE WINDOWS AZURE PROGRAMMING MODEL

THE WINDOWS AZURE PROGRAMMING MODEL THE WINDOWS AZURE PROGRAMMING MODEL DAVID CHAPPELL OCTOBER 2010 SPONSORED BY MICROSOFT CORPORATION CONTENTS Why Create a New Programming Model?... 3 The Three Rules of the Windows Azure Programming Model...

More information

Configuring the Server(s)

Configuring the Server(s) Introduction Configuring the Server(s) IN THIS CHAPTER. Introduction. Overview of Machine Configuration Options. Installing and Configuring FileMaker Server. Testing Your Installation. Hosting Your File.

More information

Sophos PUA Manual. To check now for PUAs, scan your computer. It will start as soon as you click on Scan My Computer. This may take a few minutes.

Sophos PUA Manual. To check now for PUAs, scan your computer. It will start as soon as you click on Scan My Computer. This may take a few minutes. Sophos PUA Manual What s A PUA? A PUA is a Potentially Unwanted Application. The key word here is potentially. In some cases, it may be adware or hacking tools installed on your computer. In other cases,

More information

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012 Setting Up Your Android Development Environment For Mac OS X (10.6.8) v1.0 By GoNorthWest 3 April 2012 Setting up the Android development environment can be a bit well challenging if you don t have all

More information

Central England People First s friendly guide to downloading

Central England People First s friendly guide to downloading Central England People First s friendly guide to downloading What is Skype? Skype is a computer programme that turns your computer into a telephone. This means that you can speak to other people using

More information

www.faronics.com Deep Freeze - Retaining User Data TECHNICAL PAPER Last modified: June, 2012

www.faronics.com Deep Freeze - Retaining User Data TECHNICAL PAPER Last modified: June, 2012 Deep Freeze - Retaining User Data TECHNICAL PAPER Last modified: June, 2012 Faronics Toll Free Tel: 800-943-6422 Toll Free Fax: 800-943-6488 International Tel: +1 604-637-3333 International Fax: +1 604-637-8188

More information

Patch Management Table of Contents:

Patch Management Table of Contents: Table of Contents: Manage Machines Manage Updates Patch Policy Configure Patch Parameters 153 Chapter 5 - Sadjadi et al. Introduction As new operating system and software updates are released in an ever

More information

Automating Windows 7 Installation for Desktop and VDI Environments

Automating Windows 7 Installation for Desktop and VDI Environments Automating Windows 7 Installation for Desktop and VDI Environments Greg Shields Introduction to Realtime Publishers by Don Jones, Series Editor For several years now, Realtime has produced dozens and dozens

More information

F Cross-system event-driven scheduling. F Central console for managing your enterprise. F Automation for UNIX, Linux, and Windows servers

F Cross-system event-driven scheduling. F Central console for managing your enterprise. F Automation for UNIX, Linux, and Windows servers F Cross-system event-driven scheduling F Central console for managing your enterprise F Automation for UNIX, Linux, and Windows servers F Built-in notification for Service Level Agreements A Clean Slate

More information

Seven Things You Must Know Before Hiring a Plumber

Seven Things You Must Know Before Hiring a Plumber Seven Things You Must Know Before Hiring a Plumber Introduction Have you ever had a toilet break in the middle of the night? Or maybe a pipe froze this last winter and burst, causing part of your house

More information

Dell OptiPlex XE Watchdog Timer

Dell OptiPlex XE Watchdog Timer Dell OptiPlex XE Watchdog Timer Dell OptiPlex Watchdog Timer allows you to: monitor your computer s status. track programs listed in the Microsoft Windows Task Manager. define the actions to be taken when

More information

Stop being Rails developer

Stop being Rails developer Stop being Rails developer Ivan Nemytchenko 2015 Ivan Nemytchenko I think this book should have been written in 2011. But nobody had written it, and I still see a huge demand for this topic to be covered

More information

How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever.

How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever. The 10 Rules How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever. 2 10 Rules Page 2 Rule #1: Never lie to anyone. Never lie to yourself

More information

Active Directory Auditing: What It Is, and What It Isn t

Active Directory Auditing: What It Is, and What It Isn t Active Directory Auditing: What It Is, and What It Isn t Abstract What s wrong with Active Directory s native audit logging? More importantly, what functionality do you really need in an AD auditing solution,

More information

Trend Micro TM Worry-Free Business Security Services Integration with LabTech

Trend Micro TM Worry-Free Business Security Services Integration with LabTech Trend Micro TM Worry-Free Business Security Services Integration with LabTech Introduction Trend Micro Worry-Free Business Security Services is a server-free solution that provides protection for your

More information

ANDRA ZAHARIA MARCOM MANAGER

ANDRA ZAHARIA MARCOM MANAGER 10 Warning Signs that Your Computer is Malware Infected [Updated] ANDRA ZAHARIA MARCOM MANAGER MAY 16TH, 2016 6:05 Malware affects us all The increasing number of Internet users worldwide creates an equal

More information

Todd: Kim: Todd: Kim: Todd: Kim:

Todd: Kim: Todd: Kim: Todd: Kim: Todd: [0:00:18] Hey everybody, welcome to another edition of The Prosperity Podcast, this is No BS Money Guy Todd Strobel. Once again, we have my cohost, bestselling financial author Kim Butler with us,

More information

Northwestern University Dell Kace Patch Management

Northwestern University Dell Kace Patch Management Northwestern University Dell Kace Patch Management Desktop Patch Management Best Practices Table of Contents: 1. Audience 2. Definition 3. Patch Approaches 4. Guidelines for Review, Test, and Deploy 5.

More information

Top 5 Mistakes Made with Inventory Management for Online Stores

Top 5 Mistakes Made with Inventory Management for Online Stores Top 5 Mistakes Made with Inventory Management for Online Stores For any product you sell, you have an inventory. And whether that inventory fills dozens of warehouses across the country, or is simply stacked

More information

A Formula for Dramatically Improving Healthcare IT Customer Service

A Formula for Dramatically Improving Healthcare IT Customer Service A Formula for Dramatically Improving Healthcare IT Customer Service Proactive walkthroughs by IT field engineers enabled one hospital system to satisfy users, reduce help desk calls and generate savings

More information

Group Policy Objects: What are They and How Can They Help Your Firm?

Group Policy Objects: What are They and How Can They Help Your Firm? Group Policy Objects: What are They and How Can They Help Your Firm? By Sharon Nelson and John Simek 2011 Sensei Enterprises, Inc. The obvious first question: What is a Group Policy Object? Basically,

More information

Enterprise Job Scheduling: How Your Organization Can Benefit from Automation

Enterprise Job Scheduling: How Your Organization Can Benefit from Automation WHITE PAPER Enterprise Job Scheduling: How Your Organization Can Benefit from Automation By Pat Cameron Introduction Today's companies need automation solutions to attain the high levels of availability,

More information

University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus. CU ecomm Program Email Marketing Best Practices

University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus. CU ecomm Program Email Marketing Best Practices University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus CU ecomm Program Email Marketing Best Practices What is ecomm?... 2 Why use ecomm?... 3 Legal Considerations... 4 Email Marketing

More information

The Definitive Guide. Active Directory Troubleshooting, Auditing, and Best Practices. 2011 Edition Don Jones

The Definitive Guide. Active Directory Troubleshooting, Auditing, and Best Practices. 2011 Edition Don Jones The Definitive Guide tm To Active Directory Troubleshooting, Auditing, and Best Practices 2011 Edition Don Jones Ch apter 2: Monitoring Active Directory... 14 Monitoring Goals... 14 Event Logs... 15 System

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

So before you start blasting campaigns, check out these common mistakes that email-marketing rookies often make.

So before you start blasting campaigns, check out these common mistakes that email-marketing rookies often make. Hello. If you re new to email marketing, you re probably excited about sending out lots of emails to your customers. But if you re in a rush, you might end up sending emails to people who have forgotten

More information

How to Install SQL Server 2008

How to Install SQL Server 2008 How to Install SQL Server 2008 A Step by Step guide to installing SQL Server 2008 simply and successfully with no prior knowledge Developers and system administrators will find this installation guide

More information

How to import Email Data from Outlook 2010 in standalone mode to your Pushex Exchange mailbox

How to import Email Data from Outlook 2010 in standalone mode to your Pushex Exchange mailbox How to import Email Data from Outlook 2010 in standalone mode to your Pushex Exchange mailbox Moving to a Hosted Exchange mailbox from using Outlook in standalone mode has many advantages, here are 3:-

More information

Meeting your Healthy Blue Living weight management requirement. If your body mass index is 30 or more, you have two ways to get healthier

Meeting your Healthy Blue Living weight management requirement. If your body mass index is 30 or more, you have two ways to get healthier If your body mass index is 30 or more, you have two ways to get healthier Walkingspree Page 8 Weight Watchers Page 5 bcbsm.com/hblweight Meeting your Healthy Blue Living weight management requirement Two

More information

10 things Group Policy Preferences can do better than your current script!

10 things Group Policy Preferences can do better than your current script! 10 things Group Policy Preferences can do better than your current script! By Florian Frommherz September 5th, 2008 Table of Contents Overview... 3 Drive Mappings... 3 Energy options... 5 Folder Options...

More information

Spam: What Consumers Really Think

Spam: What Consumers Really Think From First Click to Lifetime Customer WHITE PAPER Spam: What Consumers Really Think Survey Finds Growing Anger; Advice for Avoiding Recipients Wrath SPAM: WHAT CONSUMERS REALLY THINK Survey finds growing

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

How to make the most of ebay Motors.

How to make the most of ebay Motors. autorevo.com 2013 Guide #06 How to make the most of ebay Motors. an ebay Motors guide by AutoRevo. Boost exposure and get more leads... With ebay Motors, even the smallest local dealer with a handful of

More information

How to get 2 Cents Clicks by Colin Klinkert

How to get 2 Cents Clicks by Colin Klinkert How to get 2 Cents Clicks by Colin Klinkert Hi, Colin Klinkert here at CKTV, that you can find at http://www.colinklinkert.com. This video is a very exciting one where we re going to talk about how you

More information

Activity 3: Observe Psychological First Aid

Activity 3: Observe Psychological First Aid Activity 3: Observe Psychological First Aid In this activity you have the opportunity to hear a conversation between a survivor of bomb blast and a Red Cross behavioral health volunteer. This role play

More information

These are some of the things IA enables in the centralized management pane:

These are some of the things IA enables in the centralized management pane: 1 sur 5 18/08/2009 16:27 Date: July 19th, 2009 Author: Scott Lowe Category: Exchange, Server operating system, Servers, data center Tags: Advertisement, Administration, Shared Folder, Tool, Scott Lowe,

More information

Understanding offline files

Understanding offline files Understanding offline files Introduction If you've ever needed to access important files stored in a shared folder on your network but couldn't because the network connection was unavailable, then you

More information

Cleaning Up Your Outlook Mailbox and Keeping It That Way ;-) Mailbox Cleanup. Quicklinks >>

Cleaning Up Your Outlook Mailbox and Keeping It That Way ;-) Mailbox Cleanup. Quicklinks >> Cleaning Up Your Outlook Mailbox and Keeping It That Way ;-) Whether you are reaching the limit of your mailbox storage quota or simply want to get rid of some of the clutter in your mailbox, knowing where

More information

Track User Password Expiration using Active Directory

Track User Password Expiration using Active Directory Track User Password Expiration using Active Directory Jeff Hicks 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic,

More information

RAID Utility User Guide. Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card

RAID Utility User Guide. Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card RAID Utility User Guide Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card Contents 3 RAID Utility User Guide 3 The RAID Utility Window 4 Running RAID Utility

More information

Congratulations on deciding to take a significant step in your business career! More than

Congratulations on deciding to take a significant step in your business career! More than Chapter 1 Getting the Lowdown on the GMAT In This Chapter Finding out how MBA programs use your GMAT score Knowing when to take the GMAT and what to bring Figuring out the format of the GMAT Skimming through

More information

Managed Antivirus Quick Start Guide

Managed Antivirus Quick Start Guide Quick Start Guide Managed Antivirus In 2010, GFI Software enhanced its security product offering with the acquisition of Sunbelt Software and specifically its VIPRE product suite. Like GFI Software, Sunbelt

More information

How to Configure Outlook 2013 to connect to Exchange 2010

How to Configure Outlook 2013 to connect to Exchange 2010 How to Configure Outlook 2013 to connect to Exchange 2010 Outlook 2013 will install and work correctly on any version of Windows 7 or Windows 8. Outlook 2013 won t install on Windows XP or Vista. 32-bit

More information

Getting started with IMAP for Aggiemail What is IMAP?

Getting started with IMAP for Aggiemail What is IMAP? Getting started with IMAP for Aggiemail What is IMAP? IMAP, or Internet Message Access Protocol, lets you download messages from Aggiemail s servers onto your computer so you can access your mail with

More information

How to make your business more flexible & cost effective? Remote Management & Monitoring Solutions for IT Providers

How to make your business more flexible & cost effective? Remote Management & Monitoring Solutions for IT Providers How to make your business more flexible & cost effective? Remote Management & Monitoring Solutions for IT Providers contents 01 Current situation of the IT Channel 02 Market Trends 03 What would be the

More information

Returning to Work is a Lot of Work

Returning to Work is a Lot of Work Returning to Work is a Lot of Work Back in Motion Rehab Inc. January 2014 Returning to Work is a Lot of Work! There are a lot of reasons people have to take time off work. Sometimes people experience injuries

More information

How to Use SNMP in Network Problem Resolution

How to Use SNMP in Network Problem Resolution The Essentials Series: Solving Network Problems Before They Occur How to Use SNMP in Network Problem Resolution sponsored by KNOW YOUR NETWORK by Greg Shields Ho w to Use SNMP in Network Problem Resolution...

More information

YOUR ERP PROJECT S MISSING LINK: 7 REASONS YOU NEED BUSINESS INTELLIGENCE NOW

YOUR ERP PROJECT S MISSING LINK: 7 REASONS YOU NEED BUSINESS INTELLIGENCE NOW YOUR ERP PROJECT S MISSING LINK: 7 REASONS YOU NEED BUSINESS INTELLIGENCE NOW THERE S NO GOOD REASON TO WAIT Enterprise Resource Planning (ERP) technology is incredibly useful to growing organizations,

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

[ INTRODUCTION ] A lot has changed since 1992, except for everything that hasn t. We come from a place you ve probably never heard of.

[ INTRODUCTION ] A lot has changed since 1992, except for everything that hasn t. We come from a place you ve probably never heard of. [ INTRODUCTION ] A businessman goes to see about a girl. They fall in love. They get married. The girl doesn t want to leave her family. He plants his roots and starts a business. Together they raise three

More information

USE OUTLOOK BEST PRACTICES TO ACHIEVE YOUR GOALS

USE OUTLOOK BEST PRACTICES TO ACHIEVE YOUR GOALS Slide 1 USE OUTLOOK BEST PRACTICES TO ACHIEVE YOUR GOALS Bjørn O. Hopland. Microsoft. bjorn.hopland@microsoft.com 1. Outlook basic setup 2. Take control over your Inbox 3. Use of Folder structure and Categories

More information

Recovering from a System Crash

Recovering from a System Crash In this appendix Learn how to recover your data in the event of a power failure or if Word stops responding. Use the Open and Repair option to repair damaged files. Use the Recover Text from Any File converter

More information

How to import Email Data from Outlook 2007 in standalone mode to your Pushex Exchange mailbox

How to import Email Data from Outlook 2007 in standalone mode to your Pushex Exchange mailbox How to import Email Data from Outlook 2007 in standalone mode to your Pushex Exchange mailbox Moving to a Hosted Exchange mailbox from using Outlook in standalone mode has many advantages, here are 3:-

More information

I. Create Windows 2012 R2 VMware Template for Guest Customization

I. Create Windows 2012 R2 VMware Template for Guest Customization I. Create Windows 2012 R2 VMware Template for Guest Customization The purpose of this document is to illustrate the steps to create a VMware Windows 2012 Template that can be used with UCS Director Workflows.

More information

A lot has changed since 1992, except for everything that hasn t. We come from a place you ve probably never heard of.

A lot has changed since 1992, except for everything that hasn t. We come from a place you ve probably never heard of. THE MANIFESTO [ INTRODUCTION ] A businessman goes to see about a girl. They fall in love. They get married. The girl doesn t want to leave her family. He plants his roots and starts a business. Together

More information

Deltek Maconomy Business Performance Management

Deltek Maconomy Business Performance Management Professional Services Deltek Maconomy Business Performance Management Better decisions through trusted and timely information deltek.com/maconomybusinessintelligence 02 Deltek Maconomy Business Performance

More information

Configuring ehealth Application Response to Monitor Web Applications

Configuring ehealth Application Response to Monitor Web Applications Focus on Setup Configuring ehealth Application Response to Monitor Web Applications ehealth Application Response (AR) helps you manage the performance of your Web applications by monitoring response times

More information

Specops Command. Installation Guide

Specops Command. Installation Guide Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops

More information

UNDERSTANDING YOUR ONLINE FOOTPRINTS: HOW TO PROTECT YOUR PERSONAL INFORMATION ON THE INTERNET

UNDERSTANDING YOUR ONLINE FOOTPRINTS: HOW TO PROTECT YOUR PERSONAL INFORMATION ON THE INTERNET UNDERSTANDING YOUR ONLINE FOOTPRINTS: HOW TO PROTECT YOUR PERSONAL INFORMATION ON THE INTERNET SPEAKING NOTES FOR GRADES 4 TO 6 PRESENTATION SLIDE (1) Title Slide SLIDE (2) Key Points It can be really

More information

Using Microsoft Active Directory 1 Group Policy 2 with Diskeeper

Using Microsoft Active Directory 1 Group Policy 2 with Diskeeper Using Microsoft Active Directory 1 Group Policy 2 with Diskeeper Diskeeper can be administered network-wide via several different methods. The primary network administration tool for Diskeeper is Diskeeper

More information

Windows Server 2008 R2 - Changes in Group Policy and Removal

Windows Server 2008 R2 - Changes in Group Policy and Removal What s New in Windows Server 2008 R2: Active Directory, Group Policy and Terminal Services Speaker: Jonathan Hassell Jonathan Hassell: Hello, and welcome to the TechTarget.com webcast, What s New in Windows

More information

Usability Test Results

Usability Test Results Usability Test Results Task: Starting Position: 1 Home Scene Lauren DiVito March 6, 2014 Moderator Script: Evaluation Measures: Notes to Moderator: Task: Starting Position: Moderator Script: Evaluation

More information

How Are Certificates Used?

How Are Certificates Used? The Essentials Series: Code-Signing Certificates How Are Certificates Used? sponsored by by Don Jones Ho w Are Certificates Used?... 1 Web Applications... 1 Mobile Applications... 2 Public Software...

More information

7 Myths of Direct Mailing Think all your mail is delivered equally? Think again.

7 Myths of Direct Mailing Think all your mail is delivered equally? Think again. 7 Myths of Direct Mailing Think all your mail is delivered equally? Think again. Direct mail has the highest response rate and some of the best return on investment numbers of any marketing channel available

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

Wireless Remote Control of the TT24

Wireless Remote Control of the TT24 of the TT24 Updated: 7/20/04 by Benjamin Olswang The TT24 includes a powerful piece of software called TT Control. With this software, you can monitor and control the TT24 console from a PC attached via

More information

CentreWare for Microsoft Operations Manager. User Guide

CentreWare for Microsoft Operations Manager. User Guide CentreWare for Microsoft Operations Manager User Guide Copyright 2006 by Xerox Corporation. All rights reserved. Copyright protection claimed includes all forms and matters of copyright material and information

More information

ANSIBLE TOWER IN THE SOFTWARE DEVELOPMENT LIFECYCLE

ANSIBLE TOWER IN THE SOFTWARE DEVELOPMENT LIFECYCLE +1 919.66.9958 ansible.com ANSIBLE TOWER IN THE SOFTWARE DEVELOPMENT LIFECYCLE Ansible Tower Enterprise is a critical part of our infastructure. With Tower there is no downtime and we can easily schedule

More information

10 everyday things your data backup system should do. Data backup that is reliable, easy and fast is only the beginning

10 everyday things your data backup system should do. Data backup that is reliable, easy and fast is only the beginning 10 everyday things your data backup system should do Data backup that is reliable, easy and fast is only the beginning Table of Contents Backup and Restore 1 10 Everyday Challenges 1st People delete good

More information