AD Integration & Home Folders
|
|
|
- Dominic Jennings
- 10 years ago
- Views:
Transcription
1 AD Integration & Home Folders
2 David Acland Technical Director at
3 ACSE Training Projects & Support What the heck s AD? Uh-oh AD mastered!
4 What I ll be talking about AD Integration Troubleshooting Tweaks Scripting Home folders Mounting options Finder integration Troubleshooting Syncing Other options
5 Integrating with Active Directory
6 Objectives Login Window Authentication Certificate enrollment Single username & password for services
7 Getting Connected GUI Casper or DeployStudio directory bind Script dsconfigad -add domain.com -computer $computer -username aduser -password yourpw -ou CN=Computers,DC=domain,DC=com" Third Party Tool Centrify Express
8 What if you can t connect?
9 Troubleshooting Client Network Server Are other Macs affected? Was this Mac previously working? Where is the affected device? Should it work from that location? Try from a known working location / port / switch No devices can communicate with DC Can other Macs write to that OU using that username & password?
10 Troubleshooting Has this configuration ever worked? Get back to a minimal system to establish a baseline
11 What Causes It To Break? AD Permissions DNS Service Reachability Date & Time Computer Name Length Corrupt client files opendirectoryd
12 Troubleshooting Client? Check DNS host -t SRV _ldap._tcp.yourdomain.com Check the clock Check what DC the client is using /Library/Preferences/OpenDirectory/DynamicData/Active Directory/DOMAIN.plist Delete any local files from previous bindings /Library/Preferences/OpenDirectory Set a preferred DC dsconfigad -preferred dc01.domain.com
13 Troubleshooting Network? Check port reachability nc -z dc01.domain.com 389 Firewall Rule out physical issues
14 Troubleshooting Server? Usually someone else Handover as much useful information as possible Test with a domain admin account Test with a pre-created computer object Test writing to a different OU (or default Computers container)
15 Great, we re connected, but there are some issues
16 Troubleshooting Issues after binding Slow logons Failed reconnects Computers dropping off the domain Macs crashing 50% through boot up
17 dsconfigad Advanced Options -sharepoint disable -useuncpath disable -passinterval 0 -mobile enable -mobileconfirm disable -force e.g. dsconfigad -force -sharepoint disable -passinterval 0 -mobile enable -mobileconfirm disable
18 Slow Logons Restrict scope of search to specified domain dsconfigad -alldomains disable dscl /Search -delete / CSPSearchPath "/Active Directory/YOURDOMAIN/All Domains dscl /Search/Contacts -delete / CSPSearchPath "/Active Directory/YOURDOMAIN/All Domains dscl /Search -create / SearchPolicy CSPSearchPath dscl /Search -append / CSPSearchPath "/Active Directory/YOURDOMAIN/domain.com dscl /Search/Contacts -create / SearchPolicy CSPSearchPath dscl /Search/Contacts -append / CSPSearchPath "/Active Directory/YOURDOMAIN/domain.com" Specify a particular DC dsconfigad -preferred dc01.domain.com Set timeout value defaults write /Library/Preferences/com.apple.loginwindow DSBindTimeout -int <seconds>
19 Failed Reconnects For classrooms, shutdown at night, only put display to sleep during the day Mac wakes from sleep and doesn t reconnect to the DC Reboot Restart opendirectoryd sudo killall opendirectoryd Script kdestroy and ask user to re-enter password Mac fails to reconnect when returning to the office dsconfigad -passinterval 0
20 Computers dropping off the domain Don t trust dsconfigad -show Add a self-heal script or policy to the Mac Check client is on the right network Check DC is available Check client can read its own computer object Retry in 2 mins if it fails 2nd failure triggers a re-bind Check with Windows administrator
21 Macs crashing 50% through bootup After a crash, a hard reboot, or just when it feels like it Affects /usr/sbin/bootcachecontrol jettison (triggered by /etc/rc.server) Update to
22 .local Expect issues! Add.local to your search domains Lower the mdns timeout defaults write /System/Library/SystemConfiguration/IPMonitor.bundle/Contents/ Info mdns_timeout -int 1
23 Stress Testing Use ARD to login multiple Macs at once osascript -e 'tell application "System Events" to keystroke "username"' \ osascript -e 'tell application "System Events" to keystroke tab' \ osascript -e 'tell application "System Events" to delay 0.5' \ osascript -e 'tell application "System Events" to keystroke "password"' \ osascript -e 'tell application "System Events" to keystroke return'
24 Home Folders
25 What is a home folder? Data store User level settings and resources
26 Types Local Home Full Network Home Split / Re-directed Home Folder
27 Objectives Providing personal network storage for the users Backing up user data Hot-desking
28 Mounting Options Use UNC path (SMBHome) Mounts top-level share Tries to add shortcut to the Dock Causes a lot of logon failures
29 Mounting Options Logon Script User initiated script Directory Automount
30 Script to mount the network home Determine the user s network home folder path ShortDomainName=$(dscl /Active\ Directory/ -read. grep SubNodes \ sed 's SubNodes: g ) adhome=$(dscl /Active\ Directory/$ShortDomainName/All\ Domains -read \ /Users/$USER SMBHome sed 's SMBHome: g' sed 's/^[\\]*//' \ sed 's:\\:/:g' sed 's/ \/\///g' tr -d '\n' sed 's/ /%20/g ) sed s SMBHome: g' - Strip off the SMBHome: part of the string sed s/^[\\]*//' - Remove the first two backslashes sed s:\\:/:g' - Turn any remaining backslashes into forward slashes tr -d \n' - Remove a carraige return if the path is wrapped onto two lines sed 's/ /%20/g - Replace a space with %20 if its found in the path
31 Script to mount the network home Check the attribute has a value case "$adhome" in "" ) echo "ERROR: ${USER}'s SMBHome attribute does not have a value set. Exiting script." exit 1 ;; * ) echo "Active Directory users SMBHome attribute identified as $adhome" ;; esac
32 Script to mount the network home Mount the home value # Mount the network home mount_script=`/usr/bin/osascript > /dev/null << EOT tell application "Finder" activate mount volume "smb://${adhome}" end tell EOT`
33 Interacting with the Finder Adding to the Dock dockutil --add $SMBHome --label 'Network Docs' --position beginning \ no-restart /Users/$USER Adding to the Sidebar changesidebarlistscasper.py --first /Volumes/$USER - first - last - after
34 Syncing Goals Hot-desking Centralised backups Do the users really need it? Cost
35 OS X Home Sync Why don t we use it? 2 way sync Unreliable No central reporting
36 Rsync? We use Rsync We re in full control of what gets synced and when We can have a central reporting system for failures We can adjust and develop it over time We have spent a number of years refining the scripts Error capturing and handling is very important
37 Core components Check capacity and amount to copy before syncing datasize$(rsync -n source destination) grep "total size" awk '{ print $4; }' sed 's/m//g' awk '{printf("%d\n",$ )}' networkhomecapacity=$(df -hm $syncdest awk 'NR==2 {print $4} ) if [ $syncsize -lt $networkhomecapacity ]; then Loop through sub-folders to get more granular logging ls $syncsource grep "[A-z 0-9]" head -$counter tail -1 Use a filter file --filter='merge /path/to/exclusionfile/syncup_filter_exclude'
38 Core components Capture errors in a temp file rsync command 2>> /tmp/${user}syncerror issues to IT sendmail -f $fromaddress -t $toaddress -u $subject -m "$message" -s $mailserver -xu $username -xp $password Other rsync options # u - Skip files that are newer on the receiver # z - Compress file data during the transfer # r - Recurse into directories # l - Copy symlinks as symlinks # v - Increase verbosity
39 When do we run it? Every 15 minutes while logged in At logout
40 User Trigger Applescript saved as an application set myscript to POSIX path of (path to resource "LogoutSync.sh") do shell script myscript Lets user run the script when they want
41 Thanks
Configuring the Active Directory Plug-in
Wazza s QuickStart Configuring the Active Directory Plug-in Mac OS X 10.3.4 Background Using the Mac OS X 10.3.x built-in Active Directory (AD) plug-in, Mac users can authenticate with a Windows Active
Integrating Mac OS X 10.6 with Active Directory. 1 April 2010
Integrating Mac OS X 10.6 with Active Directory 1 April 2010 Introduction Apple Macintosh Computers running Mac OS X 10.6 can be integrated with the Boston University Active Directory to allow use of Active
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper April 2009
Best Practices: Integrating Mac OS X Technical White Paper April 2009 2 Contents Page 3 Page 5 Page 9 Page 10 Page 11 Page 12 Apple s Built-In Solution How to Integrate Mac OS X Getting Started dsconfigad
Instructions for Adding a MacOS 10.4.x Client to ASURITE
Instructions for Adding a MacOS 10.4.x Client to ASURITE Before beginning, it would be prudent not to have an account with the same username and password as your Active Directory account. For DHCP Workstations:
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper September 2007
Best Practices: with Active Directory Technical White Paper September 2007 Contents Page 3 Page 4 Page 8 Page 10 Page 11 Page 13 Apple s Built-In Solution How to Integrate Mac OS X with Active Directory
NetSpective Logon Agent Guide for NetAuditor
NetSpective Logon Agent Guide for NetAuditor The NetSpective Logon Agent The NetSpective Logon Agent is a simple application that runs on client machines on your network to inform NetSpective (and/or NetAuditor)
Wazza s QuickStart 13. Leopard Server - Windows Domain
Wazza s QuickStart 13. Leopard Server - Windows Domain About the Document This document is the 13th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server
DeployStudio Server Quick Install
DeployStudio Server Quick Install v1.7.0 The DeployStudio Team [email protected] Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched
Sentral servers provide a wide range of services to school networks.
Wazza s QuickStart File Sharing for Macs on a Sentral Server Mac OS X, Sentral Background Sentral servers provide a wide range of services to school networks. One of those services is a space for sharing
EVault Software. Course 361 Protecting Linux and UNIX with EVault
EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in
System Area Manager. Remote Management
System Area Manager Remote Management Remote Management System Area Manager provides remote management functions for its managed systems, including Wake on LAN, Shutdown, Restart, Remote Console and for
Wazza s QuickStart 10. Leopard Server - Managing Preferences
Wazza s QuickStart 10. Leopard Server - Managing Preferences About this Document This document is the 10th in a series of documents describing the process of installing and configuring a Mac OS X 10.5
IceWarp to IceWarp Server Migration
IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone
Monitor Print Popup for Mac. Product Manual. www.monitorbm.com
Monitor Print Popup for Mac Product Manual www.monitorbm.com Monitor Print Popup for Mac Product Manual Copyright 2013 Monitor Business Machines Ltd The software contains proprietary information of Monitor
Creating Home Directories for Windows and Macintosh Computers
ExtremeZ-IP Active Directory Integrated Home Directories Configuration! 1 Active Directory Integrated Home Directories Overview This document explains how to configure home directories in Active Directory
Apple Technical White Paper Best Practices for Integrating OS X with Active Directory
Best Practices for Integrating OS X with Active Directory OS X Yosemite v10.10 December 2014 Contents Introduction to directory services support in OS X... 3 OS X and Active Directory... 4 Impact of mobility...
Leveraging Active Directory on Mac OS X. Leopard Edition, Revision 3
Leveraging Active Directory on Mac OS X Leopard Edition, Revision 3 Contents Overview 4 Configure a Mac OS X Server Open Directory Master 6 A. DNS setup 6 B. Configure the Open Directory Master 7 C. Set
Other documents in this series are available at: servernotes.wazmac.com
Wazza s Snow Leopard Server QuickStart 14. Win XP - Workgroup Setup About the Document This document is the fourteenth in a series of documents describing the process of installing and configuring a Mac
CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities
CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities DNS name: turing.cs.montclair.edu -This server is the Departmental Server
for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later
for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research
ShadowControl ShadowStream
ShadowControl ShadowStream Revision 1.3 4/12/2012 Table of Contents Introduction... 3 Download ShadowStream Server... 3 Installation... 4 Configuration... 5 Creating Users... 6 Testing the User Rights...
Other documents in this series are available at: servernotes.wazmac.com
Wazza s Snow Leopard Server QuickStart 2. Configuring DNS About this Document This document is the second in a series of documents describing the process of installing and configuring a Mac OS X 10.6 Server
QuickStart Guide for Client Management. Version 8.7
QuickStart Guide for Client Management Version 8.7 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software
User's Manual. Intego VirusBarrier Server 2 / VirusBarrier Mail Gateway 2 User's Manual Page 1
User's Manual Intego VirusBarrier Server 2 / VirusBarrier Mail Gateway 2 User's Manual Page 1 VirusBarrier Server 2 and VirusBarrier Mail Gateway 2 for Macintosh 2008 Intego. All Rights Reserved Intego
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
Backing Up TestTrack Native Project Databases
Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later
TROUBLESHOOTING INFORMATION
TROUBLESHOOTING INFORMATION VinNOW Support does not support Microsoft products to include SQL Server,.NET Framework, and also cannot assist with Windows User issues, Network or VPN issues. If installing
MoneyWorks Datacentre. Administrators' Guide
MoneyWorks Datacentre Administrators' Guide Executive summary...2 1. Installation...3 Mac OS X...3 Windows 2000/XP...3 Installing Client Software...4 2. Starting the Datacentre...6 Mac OS X...6 Windows
Installation Steps for PAN User-ID Agent
Installation Steps for PAN User-ID Agent If you have an Active Directory domain, and would like the Palo Alto Networks firewall to match traffic to particular logged-in users, you can install the PAN User-ID
PC Monitor Enterprise Server. Setup Guide
PC Monitor Enterprise Server Setup Guide Prerequisites Server Requirements - Microsoft Windows Server 2008 R2 or 2012-2GB RAM - IIS 7.5 or IIS 8.0 (with ASP.NET 4.0 installed) - Microsoft SQL Server 2008
Quality Center LDAP Guide
Information Services Quality Assurance Quality Center LDAP Guide Version 1.0 Lightweight Directory Access Protocol( LDAP) authentication facilitates single sign on by synchronizing Quality Center (QC)
Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac
Making it easy to deploy, integrate and manage Macs, iphones and ipads in a Windows environment. Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac 2011 ENTERPRISE DEVICE
Configuring MailArchiva with Insight Server
Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any
RecoveryVault Express Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Ajera 7 Installation Guide
Ajera 7 Installation Guide Ajera 7 Installation Guide NOTICE This documentation and the Axium software programs may only be used in accordance with the accompanying Axium Software License and Services
Joining a workstation to the TAMU IT Domain and Profile Migration
Joining a workstation to the TAMU IT Domain and Profile Migration Contents Migration Prerequisites... 1 Firewalls... 1 Run As and Other Alternate Credentialing Methods... 2 File and Print Sharing Is Disabled...
NetIQ Advanced Authentication Framework - MacOS Client
NetIQ Advanced Authentication Framework - MacOS Client Installation Guide Version 5.2.0 1 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 About MacOS Client 4 System Requirements
6) Click the lock in the lower left corner of the Directory Utility Window and authenticate with the local administrator account s credentials.
Configuring Active Directory Binding for OS X (10.5.x) within Miami Dade Schools Directory Utility determines which directory services a Mac OS X computer uses and how it connects to specific directory
LDaemon. This document is provided as a step by step procedure for setting up LDaemon and common LDaemon clients.
LDaemon This document is provided as a step by step procedure for setting up LDaemon and common LDaemon clients. LDaemon... 1 What you should know before installing LDaemon:... 2 ACTIVE DIRECTORY... 2
Online Backup Linux Client User Manual
Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might
Using Logon Agent for Transparent User Identification
Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense
Apple Mac VPN Service Setting up Remote Desktop
Apple Mac VPN Service Setting up Remote Desktop After you have successfully connected via the VPN client to the University network you will then need to make the connection to your machine. To do this
Online Backup Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Wazza s QuickStart 15. Leopard Server - Disaster Backup
Wazza s QuickStart 15. Leopard Server - Disaster Backup About the Document This document is the 15th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server
Printer Connection Manager
IT DIRECT Printer Connection Manager Information Technology Direct Limited PO Box 33-1406 Auckland NZ Table of Contents OVERVIEW...2 SETUP INSTRUCTIONS:...3 INSTALLATION...5 Install with New Settings.xml
ILTA HANDS ON Securing Windows 7
Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding
Binding an OS X computer to Active Directory at NEIU (Existing User)
Binding an OS X computer to Active Directory at NEIU (Existing User) The instructions in this guide assume that a local Administrator account is available on the Macintosh computer. These instructions
for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later
for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research
Nixu SNS Security White Paper May 2007 Version 1.2
1 Nixu SNS Security White Paper May 2007 Version 1.2 Nixu Software Limited Nixu Group 2 Contents 1 Security Design Principles... 3 1.1 Defense in Depth... 4 1.2 Principle of Least Privilege... 4 1.3 Principle
Web-Access Security Solution
WavecrestCyBlock Client Version 2.1.13 Web-Access Security Solution UserGuide www.wavecrest.net Copyright Copyright 1996-2014, Wavecrest Computing, Inc. All rights reserved. Use of this product and this
The following was taken directly from the ARD (Apple Remote Desktop) operator s manual:
The following was taken directly from the ARD (Apple Remote Desktop) operator s manual: Copying Files Apple Remote Desktop makes it easy to update items on one or more client computers. Copying files works
Instructions for Adding a MacOS 10.4.x Server to ASURITE for File Sharing. Installation Section
Instructions for Adding a MacOS 10.4.x Server to ASURITE for File Sharing Installation Section Purpose: We are setting up a server in ASU s specific environment. Power on the Server Insert the CD Hold
Active Directory Integration
Active Directory Integration Last updated March 2016 Contents Introduction:... 2 Administration configuration set up:... 2 Configuring for a single OU import... 3 User Importing... 3 Active Directory and
Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website
Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website
TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:
TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/
1 2 3 4 5 6 7 8 9 Multichannel Retailer selling bedding, towels, clothing, kid stuff (the huge bear is called Ralph) and home stuff for making your outside area look like that 10 5 years of doing Mac support
Managing Software and Configurations
55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page
1 Getting Started. Before you can connect to a network
1 Getting Started This chapter contains the information you need to install either the Apple Remote Access Client or Apple Remote Access Personal Server version of Apple Remote Access 3.0. Use Apple Remote
How To - Implement Single Sign On Authentication with Active Directory
How To - Implement Single Sign On Authentication with Active Directory Applicable to English version of Windows This article describes how to implement single sign on authentication with Active Directory
for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later
for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later Copyright 2015, Lucid Innovations Limited. All Rights Reserved Lucid Research
How To Synchronize the easystore to the AD
Index Firmware update/check 2 Re-initialization of the easystore 3 Checking Active Directory server 5 AD authentication mode 6 1 of 7 Firmware update/check It is very important to check the firmware of
Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software
Lepide Software LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software Private Limited, All Rights Reserved
Desktop Surveillance Help
Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting
NAS 253 Introduction to Backup Plan
NAS 253 Introduction to Backup Plan Create backup jobs using Backup Plan in Windows A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Create backup
Enterprise Apple Xserve Wiki and Blog using Active Directory. Table Of Contents. Prerequisites 1. Introduction 1
Table Of Contents Prerequisites 1 Introduction 1 Making the Xserve an Open Directory Master 2 Binding the Xserve to Active Directory 3 Creating a Certificate 3 Setting up Apache Web Server 4 Applying the
PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein
PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,
Download/Install IDENTD
Download/Install IDENTD IDENTD is the small software program that must be installed on each user s computer if multiple filters are to be used in ComSifter. The program may be installed and executed locally
Bulk Downloader. Call Recording: Bulk Downloader
Call Recording: Bulk Downloader Contents Introduction... 3 Getting Started... 3 Configuration... 4 Create New Job... 6 Running Jobs... 7 Job Log... 7 Scheduled Jobs... 8 Recent Runs... 9 Storage Device
Linko Software Express Edition Typical Installation Guide
Linko Software Express Edition Typical Installation Guide Install Database Service Components and Database...1 Install Workstation Components...4 Install DB Administration Tool...6 Office 2003 Security
FaxCore 2007 Getting Started Guide (v1.0)
FaxCore 2007 Getting Started Guide (v1.0) FaxCore 2007 Getting Started Guide (v1.0) Page 1 FaxCore 2007 Getting Started Guide Setting up Windows 2003 This only applies to FaxCore appliances. When the server
Acronis Backup & Recovery 10 Server for Windows. Installation Guide
Acronis Backup & Recovery 10 Server for Windows Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent
QuickStart Guide for Managing Computers. Version 9.2
QuickStart Guide for Managing Computers Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software
Integrating with Active Directory. [email protected] MacSysAdmin 2010
Integrating with Active Directory [email protected] MacSysAdmin 2010 Remember Identification Authentication Authorization (and client management) 75 minutes Why Integrate 3 Challenges Terminology Agreement
Net Services: File System Monitor
Net Services: File System Monitor Settings for ExtremeZ-IP file server volumes...1 Setup of the Net Services server...2 Configuring and testing the Net Services server...3 Installing File System Monitor...4
Digipass for Citrix VM3.0: troubleshooting guide. Creation date: 11/07/2007 Last Review: 30/11/2007 Revision number: 2
Digipass for Citrix VM3.0: troubleshooting guide Creation date: 11/07/2007 Last Review: 30/11/2007 Revision number: 2 Document type: Whitepaper Security status: EXTERNAL Summary This document describes
Deep Freeze Mac User Guide
1 2 Last modified: September, 2015 1999-2015 Faronics Corporation. All rights reserved. Faronics, Deep Freeze, Faronics Core Console, Faronics Anti-Executable, Faronics Device Filter, Faronics Power Save,
Ekran System Help File
Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15
Configuring Active Directory Binding for OS X (10.4.x) within Miami Dade Schools
Configuring Active Directory Binding for OS X (10.4.x) within Miami Dade Schools 1) Login to the Mac OS X (10.4.x) workstation with a local administrative account. 2) Open (double-click) the hard drive
Optional Mainserver Setup Instructions for OS X Support
Optional Mainserver Setup Instructions for OS X Support Essentials Friday, November 2, 2012 Summary Some of the exercises in Apple Pro Training Series: OS X Support Essentials require access to a specially
Setting up FileMaker 10 Server
Setting up FileMaker 10 Server Note : If your current live Database folder is located in the default database folder ( C:\Program Files\FileMaker\FileMaker Server\Data\Databases ), move\copy this folder
WS_FTP Professional 12
WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files
Active Directory Requirements and Setup
Active Directory Requirements and Setup The information contained in this document has been written for use by Soutron staff, clients, and prospective clients. Soutron reserves the right to change the
How to make a VPN connection to our servers from Windows XP
How to make a VPN connection to our servers from Windows XP Windows XP can only make a Point-To-Point Tunneling Protocol (PPTP) type of VPN connection to our servers. This requires TCP Port 1723 to be
Zimbra Connector for Outlook Administrator Guide
With the Zimbra Collaboration Suite Connector for Outlook (ZCO), users can use Microsoft Outlook 2003, 2007, and 2010 (32-bit) to access the Zimbra Collaboration Suite server and synchronize data with
Autofs: Automatically Mounting Network File Shares in Mac OS X. Technical White Paper June 2009
Autofs: Automatically Mounting Network File Shares in Mac OS X Technical White Paper June 2009 2 Contents Page 3 Page 5 Page 9 Page 15 Page 19 Page 23 Page 26 Page 27 Page 28 Overview Background Applying
your Apple warranty; see http://www.drivesavers.com/. There are two main failure modes for a mirrored RAID 1 set:
48981c03.qxd 12/6/07 8:56 PM Page 142 142 File Systems RAID set creation takes only a few moments, and once it s complete, you should see new RAID set volume in the Disk Utility list and in the Finder.
Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.
Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished
Scan to SMB(PC) Set up Guide
Scan to SMB(PC) Set up Guide Regarding Trade Names Windows is a registered trademark of Microsoft Corporation in the U.S.A. and/or other countries. Windows XP and Windows Vista are trademarks of Microsoft
Using Mac OS X 10.7 Filevault with Centrify DirectControl
Using Mac OS X 10.7 Filevault with Centrify DirectControl August 2011, Revision 2 OS X 10.7's Filevault has the ability to encrypt the entire disk. Full Disk Encryption is compatible with Centrify Active
Mapping Network Shares
CAS Computing Mapping Network Shares Contents: Mapping Network Shares in Windows 7..1 Mapping Network Shares in Mac OS X (10.5+). 4 Access to Shares and Student Access FAQ..7 CAS Computing Services, (518)
FTP Service Reference
IceWarp Server FTP Service Reference Version 10 Printed on 12 August, 2009 i Contents FTP Service 1 V10 New Features... 2 FTP Access Mode... 2 FTP Synchronization... 2 FTP Service Node... 3 FTP Service
Contents CHAPTER 1 IMail Utilities
Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP
INTRODUCING SAMBA 4 NOW, EVEN MORE AWESOMENESS
INTRODUCING SAMBA 4 NOW, EVEN MORE AWESOMENESS Samba 4 has been in development for a long time but an official first release is imminent, the developers say. Its biggest feature is Active Directory Server
How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free
Setting Up a Macintosh For Use In The Medical Center The purpose of this document is to provide some assistance and direction to the users of Macintosh computers in The Medical Center network environment.
How To Configure A Bomgar.Com To Authenticate To A Rdius Server For Multi Factor Authentication
Security Provider Integration RADIUS Server 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property
