//+----------------------------------------------------------------------------
//
//  Task Scheduler installation helper app
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 2001.
//
//  File:       setup.rc
//
//  Contents:   resources
//
//  History:    ??-???-?? ?       created
//              20-Nov-01 ShBrown Switched to use standard NT build versioning
//
//-----------------------------------------------------------------------------

#include <windows.h>

#include "setupids.h"

STRINGTABLE DISCARDABLE
BEGIN
    IDS_INSTALL_FAILURE         "Error during installation of the Task Scheduler Service; %s error = %d."
    IDS_START_FAILURE           "Task Scheduler Service installation succeeded, but the service failed to start; %s error = %d."
    IDS_LOGON_NOTICE_ERROR      "An error prevents the Task Scheduler from starting logon tasks! %s error = %d."
    IDS_SERVICE_DISPLAY_NAME    "Task Scheduler"

#if defined(_CHICAGO_)
    IDS_SAGE_SHORTCUT_GROUP     "Accessories\\System Tools"
    IDS_SAGE_SHORTCUT           "System Agent"
    IDS_DEFAULT_SYSAGENT_PATH   "\\Program Files\\Plus!"
#endif // _CHICAGO

END

//+----------------------------------------------------------------------------
//
// Version resource
//
//-----------------------------------------------------------------------------

#include <ntverp.h>

#define VER_FILETYPE                VFT_APP
#define VER_FILESUBTYPE             VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR		"Task Scheduler Setup"
#define VER_INTERNALNAME_STR        "TaskScheduler"
#define VER_ORIGINALFILENAME_STR	"mstinit.exe"

#include <common.ver>