TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8
|
|
|
- Teresa McDonald
- 9 years ago
- Views:
Transcription
1 TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8 Abstract This is a tutorial on how to host a dedicated gaming server on Windows 7 and Windows 8 using TortoiseGIT and/or GIT, whichever you prefer. The intended audience is for those who runs a dedicated server that has an ever changing world map, for example, a Minecraft server, and for those who runs a dedicated server with constant changes to some files, such as leaderboards, player save data, etc.
2 Table of Contents 1. Setup and Installation 2. Instructions 3. Credits Setup and Installation The first thing you will need to do is to install the following softwares if you do not have them at this point of time. TortoiseGIT or GIT (Required) msysgit (Required) I recommend with starting off with TortoiseGIT, as it has an easier learning curve than GIT. For advanced users, feel free to use GIT, as they both have common functionalities. First, open up your preferred web browser and navigate to the TortoiseGIT project site (Figure 1). The URL is given below: Click on the Downloads tab near the top of the project home page, and we should see two versions of TortoiseGIT and a list of language packs (Figure 2). If you are using an x86 operating system, please use the 32-bit version; otherwise, if you are using an x64 operating system, please use the 64-bit version. Both of these versions are not entirely the same. For more information, you may look it up on Wikipedia. In my case, I am using Windows 8 64-bit, so there will be minor differences from your operating system with mine in this tutorial. If your native language is not English, you may select the correct version with your preferred language. Once the setup files have finished downloading, use the File Explorer to navigate to the setup files and proceed to install them. When TortoiseGIT has completed its installation, you may be prompted to install msysgit, which is the core part of GIT and provides GIT functions for TortoiseGIT and GIT on the Windows operating system. The URL for msysgit is given below, which will navigate you to its project site (Figure 3):
3 (Figure 1): TortoiseGIT project home page. (Figure 2): The Downloads tab for TortoiseGIT. (Figure 3): msysgit project home page.
4 Once all TortoiseGIT and msysgit installations have been completed, the next thing to do is to determine where to create a repository folder for your dedicated server data. For more information about using GIT, you may visit the following URL: Instructions I will use the Desktop as my location for creating my repository for the purposes of this tutorial. To start, right click anywhere on the Desktop, in the context menu, hover over New, and click on Folder (Figure 4). Note that I have TortoiseSVN installed. Please ignore that for the time being. (Figure 4): The context menu. After a new folder has been created, rename the folder so that there is.git suffix at the end of the name. This is the GIT convention, and it s recommended to use this naming scheme. I have named mine, repository.git, for example (Figure 5). This will be your repository folder. (Figure 5): repository.git folder. Open the repository.git folder, and right click anywhere in the empty space to open up the context menu. Click on GIT Create repository here..., and a prompt will display (Figure 6). Enable Make it bare (No working directories), and finally click on OK (Figure 7). The repository.git folder should then be populated with files and folders. You may ignore the files and folders.
5 (Figure 6): The context menu (again). (Figure 7): The dialog prompt. Going back to Desktop, create another new folder and name this folder to anything you want. I named mine to server. This folder shall then become the directory that you are to put your server data files in and commit to your repository folder. This will be your commit folder. Open up the newly created folder you had just made, and right click anywhere again to bring up the context menu. Click on GIT Clone... to bring up the Clone dialog (Figure 8). For the URL, click on the Dir... button and find the folder, either the repository.git or the folder ending with the.git suffix that you had just created, and press OK. For the Directory, make sure that it is pointing towards the directory folder that you had just right clicked on GIT Clone, by browsing to the location. You may ignore the rest of the options given, and press OK once you re done. If you happened to spot a new folder directory inside your commit folder, and that new folder s name is the same as your repository folder, but without the.git suffix, then what you did was you created a new commit folder nested in your originally planned commit folder. Your originally planned commit folder is no longer your commit folder, but rather it is just a file directory.
6 (Figure 8): The context menu and the GIT clone dialog. If you have Show hidden folders option enabled, when you browse your commit folder, you should see a.git folder (Figure 9). This.git folder serves as a bookmarker for your local changes. You may ignore the.git folder, and continue with the tutorial. (Figure 9): The hidden.git folder. The next important step is to set your GIT account. This GIT account is a local account used when you are committing local changes and pushing changes to your local repository folder. Right click anywhere in your commit folder, hover over TortoiseGIT, and select Settings near the bottom of the context menu. In the left navigation page, click on Git. In the right navigation pane, put in any name and any account (Figure 10). Since we are doing a local repository, the name and
7 (Figure 10): The context menu and the Settings dialog, with Git selected. account is not important for our purposes, therefore, you may ignore their importances for now. From here, you can start placing your server data files inside your commit folder. For the purposes of this tutorial, I will be using a Minecraft server to serve as a placeholder for your dedicated server files. After you have placed your server data files inside your commit folder, you should see a navy blue question mark icon overlay on all of your data files and folders (Figure 11). This icon overlay tells you that GIT has detected new files in your commit folder. We shall come back to this in a moment. This next step involves a little bit of batch programming. For those who are not familiar with batch programming, you may refer to the following URL for more information: I can assure you, it is not programming. Rather, it is just to change the GIT installation directory if you did not install GIT at the default installation location. Now, run Notepad from your Start menu. In my case, I used Notepad++ for its syntax hightlighting features. You may choose to install Notepad++ from the following URL:
8 (Figure 11): GIT detects new files. Run the BATCH file, and it should automatically change the icon overlays to a green checkmark, telling you that all of your files and folders have been committed successfully to your repository folder (Figure 12). (Figure 12a): The autocommit.bat file. Before execution.
9 (Figure 12b): The output of the GIT When I say should, I meant that due to TortoiseGIT having the issue of not refreshing the icon overlays not completely fixed, you couldn t really tell if the files and folders have been committed and/or pushed to the repository. For more information, you may consult the following URL: This ends the batch programming session. Now, on towards automation. In Windows 7, navigate to the Control Panel via Start Menu Control Panel. In Windows 8, press the Start button, type Control, and then press Enter. In the Control Panel, go to System and Security Administrative Tools Task Scheduler (Figure 13). On the right pane, find and click on the option, Create Task.... It is not to be confused with Create Basic Task..., as it takes an additional step to setting it up. It should bring up the Task Wizard (Figure 14). In the General tab, fill in the name and description of your task. In the Triggers tab, click on New to bring up a schedule wizard that aids you in setting up automation. Once this is set, in the Actions tab, press New to bring up a dialog asking you for the program/script you want to run. In this case, we want to run the BATCH file we have just copied/pasted/created in the commit folder. Browse to the BATCH file, select the file, and press OK. You may continue to set additional options in the Conditions and Settings tabs, if you liked. Once all of the options have been set, go ahead and click on OK to set the task in the Task Scheduler Library folder.
10 (Figure 13): Task Scheduler. (Figure 14): Task Wizard. Once all of this is done, your task should be in the Task Scheduler Library folder, by click on the Task Scheduler Library folder on the left pane in Task Scheduler. From this point on, you will have to test and see if the BATCH file is working for GIT, if all modified files have been committed and pushed to the repository, check to see if your Task is running and working properly, and check to see if it causes substantial lag when it s committing and pushing while your dedicated server is running. Other than all of those things, you have successfully created an automated backup system. Refer to the TortoiseGIT tutorials to learn how to revert your modified files to the last pushed version.
11 Credits Author: Thompson Lee Illustrator: Thompson Lee All images are screenshots from Windows 8 64-bit. All URL links provided are for public consumption. April 2, 2013 Non-commercial Creative-Commons license. There is no April Fool s joke in this tutorial. Feel free to add one.
16.4.3 Lab: Data Backup and Recovery in Windows XP
16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The
PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0
T E C H N I C A L N O T E Autonomy Connected Backup Version 8.8 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on
GETTING STARTED WITH SQL SERVER
GETTING STARTED WITH SQL SERVER Download, Install, and Explore SQL Server Express WWW.ESSENTIALSQL.COM Introduction It can be quite confusing trying to get all the pieces in place to start using SQL. If
10.3.1.6 Lab - Data Backup and Recovery in Windows XP
5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment
MATLAB @ Work. MATLAB Source Control Using Git
MATLAB @ Work MATLAB Source Control Using Git Richard Johnson Using source control is a key practice for professional programmers. If you have ever broken a program with a lot of editing changes, you can
TM Online Storage: StorageSync
TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please
Version Control Tutorial using TortoiseSVN and. TortoiseGit
Version Control Tutorial using TortoiseSVN and TortoiseGit Christopher J. Roy, Associate Professor Virginia Tech, [email protected] This tutorial can be found at: www.aoe.vt.edu/people/webpages/cjroy/software-resources/tortoise-svn-git-tutorial.pdf
OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010
OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already
What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365
This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University
Using an Automatic Back Up for Outlook 2003 and Outlook 2007 Personal Folders
Using an Automatic Back Up for Outlook 2003 and Outlook 2007 Personal Folders Part 1 Install the Personal Folder Backup Utility Note: You should close Outlook and any other applications before installing
HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION
HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)
Zoom Plug-ins for Adobe
= Zoom Plug-ins for Adobe User Guide Copyright 2010 Evolphin Software. All rights reserved. Table of Contents Table of Contents Chapter 1 Preface... 4 1.1 Document Revision... 4 1.2 Audience... 4 1.3 Pre-requisite...
Simple Computer Backup
Title: Simple Computer Backup (Win 7 and 8) Author: Nancy DeMarte Date Created: 11/10/13 Date(s) Revised: 1/20/15 Simple Computer Backup This tutorial includes these methods of backing up your PC files:
How to install and use the File Sharing Outlook Plugin
How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.
Source Control Guide: Git
MadCap Software Source Control Guide: Git Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this
College of William and Mary. wmfiles.wm.edu. A Reference and Training Guide
wmfiles.wm.edu A Reference and Training Guide 08/15/2012 Table of Contents Page What is Xythos Software? 3 Creating a New Folder 4 Uploading Files 4 Coping, Moving, Deleting, Renaming Files 5 Sharing Files
MadCap Software. SharePoint Guide. Flare 11.1
MadCap Software SharePoint Guide Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document
Organizing and Managing Email
Organizing and Managing Email Outlook provides several tools for managing email, including folders, rules, and categories. You can use these tools to help organize your email. Using folders Folders can
Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server
page of 4 oit UMass Office of Information Technologies Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server This includes Web sites on: https://webadmin.oit.umass.edu/~user http://people.umass.edu/
You must have at least Editor access to your own mail database to run archiving.
Archiving An archive is a copy of a database you can create to store information no longer in use. Like a replica, an archive contains all documents and design elements in the original database, but unlike
Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8
Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8 1. Read entire document before continuing. 2. Close all browser windows. There should be no websites open. If you are using
Using the Synchronization Client
Using the Synchronization Client The owncloud Desktop Client remains in the background and is visible as an icon in the system tray (Windows, KDE), status bar (Mac OS X), or notification area (Linux).
Personal Geodatabase 101
Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic
Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation
Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login
Remote Viewer Recording Backup
Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using
ECA IIS Instructions. January 2005
ECA IIS Instructions January 2005 THIS PAGE INTENTIONALLY BLANK ECA IIS Instructions ii July 22, 2005 Table of Contents 1. Install Certificate in IIS 5.0... 1 2. Obtain and Install the ECA Root Certificate
Virtual Office Remote Installation Guide
Virtual Office Remote Installation Guide Table of Contents VIRTUAL OFFICE REMOTE INSTALLATION GUIDE... 3 UNIVERSAL PRINTER CONFIGURATION INSTRUCTIONS... 12 CHANGING DEFAULT PRINTERS ON LOCAL SYSTEM...
WebFOCUS BI Portal: S.I.M.P.L.E. as can be
WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will
Software Installation Requirements
Software Installation Guide PrintIQ TM Software Installation Requirements Please use the following guide to ensure that you're meeting all requirements prior to installing the PrintIQ TM Xerox Device Agent
Census. di Monitoring Installation User s Guide
Census di Monitoring Installation User s Guide 1 r1 Contents Introduction... 3 Content overview... 3 Installing Windows 2003 Server Components... 4 System requirements... 4 di Monitoring Web Set-up...
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
Configuring Thunderbird for Flinders Mail at home.
Configuring Thunderbird for Flinders Mail at home. Downloading Thunderbird can be downloaded from the Mozilla web site located at http://www.mozilla.org/download.html This web site also contains links
USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)
USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful
Xythos on Demand Quick Start Guide For Xythos Drive
Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document
How schedule AccuTRConsole to run every hour
How schedule AccuTRConsole to run every hour If you have had problems with getting your reports to send out from AccuTrack or AccuSQL 2014 consistently with the Windows Service AccuTaskRunner.exe we have
IS L06 Protect Servers and Defend Against APTs with Symantec Critical System Protection
IS L06 Protect Servers and Defend Against APTs with Symantec Critical System Protection Description Lab flow At the end of this lab, you should be able to Discover how to harness the power and capabilities
Cox Business Premium Online Backup USER'S GUIDE. Cox Business VERSION 1.0
Cox Business Premium Online Backup USER'S GUIDE Cox Business VERSION 1.0 Table of Contents ABOUT THIS GUIDE... 4 DOWNLOADING COX BUSINESS PREMIUM ONLINE BACKUP... 5 INSTALLING COX BUSINESS PREMIUM ONLINE
What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1
What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 Larissa Berger Miriam Fitzgerald April 24, 2015 Abstract: This white paper guides customers through the new features
SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL
SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,
TAMUS Terminal Server Setup BPP SQL/Alva
We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here
Installing LearningBay Enterprise Part 2
Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay
Microsoft SharePoint 2010 End User Quick Reference Card
Microsoft SharePoint 2010 End User Quick Reference Card Microsoft SharePoint 2010 brings together the people, documents, information, and ideas of the University into a customizable workspace where everyone
DEPLOYING A VISUAL BASIC.NET APPLICATION
C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment
Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010
Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010... 1 Introduction... 1 Adding the Content Management Interoperability Services (CMIS) connector... 1 Installing the SharePoint 2010
BLACKBOARD CONTENT COLLECTION FACULTY TRAINING GUIDE
BLACKBOARD CONTENT COLLECTION FACULTY TRAINING GUIDE Table of Contents About the Guide... 1 Overview... 2 Navigating the Content Collection... 3 Accessing the Content Collection... 3 Content Collection
Downloading and Installing Core FTP
What is FTP? To transfer the fi les from your computer to a web server, a special protocol (transfer method) is used: FTP - the File Transfer Protocol. This protocol was designed to be able to handle big
Tech Tips Helpful Tips for Pelco Products
DX4104 UPDATING FROM THE NETWORK SERVER October 29, 2009 DX4104 UPDATING FROM THE NETWORK SERVER The Operation/Configuration manual provides users an option for updating the server through the network
How to recover IE Client
HIKVISION EUROPE B.V. How to recover IE Client (WebClientActiveX Control) Name: WebClientActiveX Control Publisher: HANGZHOU HIKVISION DIGITAL TECHNOLOGY CO.,LTD. Type: ActiveX Control Version: 2.4.0.56
Outlook 2007: Managing your mailbox
Outlook 2007: Managing your mailbox Find its size and trim it down Use Mailbox Cleanup On the Tools menu, click Mailbox Cleanup. You can do any of the following from this one location: View the size of
BSDI Advanced Fitness & Wellness Software
BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the
Allworx OfficeSafe Operations Guide Release 6.0
Allworx OfficeSafe Operations Guide Release 6.0 No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy,
ilaw Installation Procedure
ilaw Installation Procedure This guide will provide a reference for a full installation of ilaw Case Management Software. Contents ilaw Overview How ilaw works Installing ilaw Server on a PC Installing
This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application.
IE 6.0 Download and Set-up To use the Web Commerce e-commerce service, you need to: Gain access to the Internet Install Microsoft Internet Explorer 6.0 Configure Temporary Internet files in Internet Explorer.
Most of your tasks in Windows XP will involve working with information
OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows
Technical Support Set-up Procedure
Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it
Using Adobe Dreamweaver CS4 (10.0)
Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called
Contents What is OneDrive?... 1 Accessing OneDrive... 1 Uploading a File... 1 Create a New Folder... 1 Download a Document... 2 Delete a Document...
Microsoft OneDrive Contents What is OneDrive?... 1 Accessing OneDrive... 1 Uploading a File... 1 Create a New Folder... 1 Download a Document... 2 Delete a Document... 2 Move a Document to a Folder...
Remedy ITSM Service Request Management Quick Start Guide
Remedy ITSM Service Request Management Quick Start Guide Table of Contents 1.0 Getting Started With Remedy s Service Request Management. 3 2.0 Submitting a Service Request.7 3.0 Updating a Service Request
Getting started with OneDrive
Getting started with OneDrive What is OneDrive? OneDrive is an online storage area intended for business purposes. Your OneDrive library is managed by the University. You can use it to share documents
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
Installation and Troubleshooting Guide for SSL-VPN CONNECTIONS Access
Installation and Troubleshooting Guide for SSL-VPN CONNECTIONS Access Version 1 Revised 11/29/2007 Table of Contents Java Installation:...4 Browser Configuration:...4 Citrix Client Installation:...8 Attempting
Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE
Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three
Installing the Microsoft Network Driver Interface
Installing the Microsoft Network Driver Interface Overview This guide explains how to install the PictureTel Live200 Microsoft Network Driver Interface (NDIS) software you have downloaded from PictureTel's
HHC Compensation Module Training Document
HHC Compensation Module Training Document CONTENTS 1. ICP Compensation Module Installation...3 2. Launch the compensation...6 3. Setup Survey Setup/Import Data Initial Setup...6 4. Exporting the Master
Colligo Email Manager 5.1. User Guide
5.1 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Managing SharePoint Sites 5 Adding
Go Kiwi Internet Content Management System Version 5.0 (K5) TRAINING MANUAL
Go Kiwi Internet Content Management System Version 5.0 (K5) TRAINING MANUAL K5 CMS The K5 Content Management System (CMS), previously known as Kwik-Az Updating, is a small downloadable program that permits
14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë
14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
SENDING EMAILS & MESSAGES TO GROUPS
SENDING EMAILS & MESSAGES TO GROUPS Table of Contents What is the Difference between Emails and Selltis Messaging?... 3 Configuring your Email Settings... 4 Sending Emails to Groups Option A: Tasks...
BUILD2WIN Lab 2.6. What s New in BUILD2WIN?
BUILD2WIN Lab 2.6 What s New in BUILD2WIN? Please Note: Please do not remove lab binders or handouts from the Software Solutions Center. Electronic copies of all lab documentation are available for download
SARANGSoft WinBackup Business v2.5 Client Installation Guide
SARANGSoft WinBackup Business v2.5 Client Installation Guide (November, 2015) WinBackup Business Client is a part of WinBackup Business application. It runs in the background on every client computer that
Managing Online and Offline Archives in Outlook
Managing Online and Offline Archives in Outlook Contents How to Enable the Online Archive Feature in Outlook... 1 For Outlook 2007:... 2 How to Set the AutoArchive Properties for a Folder in Outlook 2007:...
Installing S500 Power Monitor Software and LabVIEW Run-time Engine
EigenLight S500 Power Monitor Software Manual Software Installation... 1 Installing S500 Power Monitor Software and LabVIEW Run-time Engine... 1 Install Drivers for Windows XP... 4 Install VISA run-time...
ICP Data Entry Module Training document. HHC Data Entry Module Training Document
HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC
Using Internet or Windows Explorer to Upload Your Site
Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting
Gladinet Cloud Backup V3.0 User Guide
Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet
Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7
Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed
Scribe Online Integration Services (IS) Tutorial
Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,
Click on a link below to navigate this document, or use bookmarks in Adobe.
Website Instructions Click on a link below to navigate this document, or use bookmarks in Adobe. Logging in and User Registration MyUSG Quoting Online with USLI Quoting Online with RAMP: Century Surety
Getting Started using the SQuirreL SQL Client
Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,
Important Notes for WinConnect Server VS Software Installation:
Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),
How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro
Online Backup by Mozy Restore Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 How do I restore my data? There are five ways of restoring your data: 1) Performing
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure
Setting up your new Live Server Account
Setting up your new Live Server Account Welcome to Remote Data Backups LiveVault Service. This document will help you set up the agent service on your server as well as giving you some guidance on accessing
Installation Guidelines (MySQL database & Archivists Toolkit client)
Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed
How to Use JCWHosting Reseller Cloud Storage Solution
How to Use JCWHosting Reseller Cloud Storage Solution Go to https://www.internetspace.co.za and log in with your Cloud Reseller account username and password. How to Use create a cloud account for your
Using the SAS Enterprise Guide (Version 4.2)
2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with
Pro Surveillance System 4.0. Quick Start Reference Guide
Pro Surveillance System 4.0 Quick Start Reference Guide 1 Table of Contents 1) Overview 3 2) Initial Setup Adding a Connection..4 3) Viewing Live Cameras...6 4) Single or Multi Channel Playback..8 5) Predetermined
ProjectWise Explorer V8i User Manual for Subconsultants & Team Members
ProjectWise Explorer V8i User Manual for Subconsultants & Team Members submitted to Michael Baker International Subconsultants & Team Members submitted by Michael Baker International ProjectWise Support
ApplicationXtender 7.0 Upgrade on 23 September 2015
ApplicationXtender 7.0 Upgrade on 23 September 2015 After the Banner Document Management (BDM) 8.5 upgrade is performed, if you have previously installed ApplicationXtender 6.5 or its components on your
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
File Manager Pro User Guide. Version 3.0
File Manager Pro User Guide Version 3.0 Contents Introduction... 3 1.1. Navigation... 3 2. File Manager Pro... 5 2.1. Changing directories... 5 2.2. Deleting files... 5 2.3. Renaming files... 6 2.4. Copying
You may have been given a download link on your trial software email. Use this link to download the software.
BackupVault / Attix5 Server Quickstart Guide This document takes about 5 minutes to read and will show you how to: Download the software Install the Attix5 Professional Backup software Backup your files
Getting the best from your OneDrive
Getting the best from your OneDrive Context As part of WeLearn365 every user gets a personal storage area known as OneDrive for Business. This is fully integrated within the Office365 environment and provides
Exchange Server Backup and Restore
WHITEPAPER BackupAssist Version 6 www.backupassist.com Cortex I.T. 2001-2007 2 Contents 1. Introduction... 3 1.1 Overview... 3 1.2 Requirements... 3 1.3 Requirements for remote backup of Exchange 2007...
owncloud Configuration and Usage Guide
owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,
How To Use Sharepoint Online On A Pc Or Macbook Or Macsoft Office 365 On A Laptop Or Ipad Or Ipa Or Ipo On A Macbook (For A Laptop) On A Desktop Or Ipro (For An Ipro
Getting Started with SharePoint Online for Small Business By Robert Crane Computer Information Agency http://www.ciaops.com Terms This Guide from the Computer Information Agency is provided as is. Every
Chapter 4: Website Basics
1 Chapter 4: In its most basic form, a website is a group of files stored in folders on a hard drive that is connected directly to the internet. These files include all of the items that you see on your
Business Intelligence Office of Planning Planning and Statistics Portal Overview
Planning and Statistics Portal Overview Introduction The Planning and Statistics Portal (PSP) is a tool designed to provide easy access to university data. The information provided can assist you in making
ENABLE LOGON/LOGOFF AUDITING
Lepide Software LepideAuditor Suite ENABLE LOGON/LOGOFF AUDITING This document explains the steps required to enable the auditing of logon and logoff events for a domain. Table of Contents 1. Introduction...
