VirtualSchool Office365 Lizenzen zuweisen Feb 2013

Size: px
Start display at page:

Download "VirtualSchool Office365 Lizenzen zuweisen Feb 2013"

Transcription

1 Lieber Wolfgang! Dieser Newsletter beschreibt notwendige Schritte, die Du nach der Migration auf Office365 durchführen musst. Damit Du Office365 betreiben kannst, musst Du kostenlose Lizenzen erwerben und in der ServerApp hinterlegen. Außerdem solltest Du die Kennwortablaufrichtinien ändern. Um zu den Lizenzen und dem Namen Deiner Lizenzen zu kommen, befolge bitte die folgende Anleitung. Verwalte Office365 Wechsle im Internet Explorer auf portal.microsoftonline.com Melde Dich mit Deinem Office365 Admin Account an Ändern der Kennwort Policy Wechsle auf Verwaltung - Benutzer Klicke Ändern der Kennwortablaufrichtlinie im rechten oberen Bereich des Fensters

2 Ändere den Ablaufzeitraum auf 720 (=maximale Anzahl von Tagen) Klicke Speichern Erwerben von Lizenzen Nun musst Du noch Lizenzen erwerben Klicke Abonnements Erwerben Suche den kostenlosen Plan A2 für Lehrpersonal bzw den kostenlosen Plan für Studenten Klicke Hinzufügen Befolge die Anweisungen, um kostenlose Lizenzen zu erwerben

3 Powershell Skript zur Ermittlung der Lizenznamen Starte am Schulserver die Powershell Console (Klicke Start Powershell) Kopiere das im Folgenden aufgelistete Skript in die Zwischenablage Füge das Skript in die Powershell Console Starte das Skript mit Enter Gib die Office365 Admin Zugangsdaten in den Logindialog Suche den Eintrag AccountSKUID Im Eintrag: AccountSkuID : hakgraz:standardwoffpack_student findest Du den für Deine Schule wichtigen Eintrag (in unserem Fall hakgraz) Starte die ServerApp Klicke Konten

4 Klicke Office365 Konten anlegen Trage unter Office365 Lizenz den im vorigen Schritt ermittelten Lizenznamen ein Powershell Skript zum Ermitteln der Lizenznamen # # # Copyright 2012 Microsoft Corporation. All rights reserved. #

5 # THIS CODE AND ANY ASSOCIATED INFORMATION ARE PROVIDED AS IS WITHOUT # WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT # LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS # FOR A PARTICULAR PURPOSE. THE ENTIRE RISK OF USE, INABILITY TO USE, OR # RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE USER. # # # # PowerShell Source Code # # NAME: # GetAccountSkuIdsAndServicePlanNames.ps1 # # AUTHOR(s): # Thomas Ashworth # # <#.SYNOPSIS Generates a CSV report containing account sku id's and service plan names..description and This script will establish a connection with the Office 365 provision web service API collect tenant license information such as account sku id's and service plan names. provisioning If a credential is specified, it will be used to establish a connection with the

6 web service API. to If a credential is not specified, an attempt is made to identify an existing connection the provisioning web service API. If an existing connection is identified, the existing for connection is used. If an existing connection is not identified, the user is prompted credentials so that a new connection can be established..parameter Credential service API Specifies the credential to use when connecting to the Office 365 provisioning web using Connect-MsolService..PARAMETER OutputFile the file Specifies the name of the output file. The arguement can be the full path including name, or only the path to the folder in which to save the file (uses default name). Default filename is in the format of "YYYYMMDDhhmmss MsolAccountSkuIdsAndServicePlanNames.csv" PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 -Credential (Get-Credential)

7 Folder" PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 -OutputFile "C:\Folder\Sub PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 -OutputFile "C:\Folder\Sub Folder\File Name.csv" PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 -Credential (Get-Credential) -OutputFile "C:\Folder\Sub Folder" PS>.\GetAccountSkuIdsAndServicePlanNames.ps1.ps1 -Credential (Get-Credential) -OutputFile "C:\Folder\Sub Folder\File Name.csv".INPUTS System.Management.Automation.PsCredential System.String.OUTPUTS A CSV file..notes #> [CmdletBinding()] param ( [Parameter(Mandatory = $False)]

8 [System.Management.Automation.PsCredential]$Credential, [Parameter(Mandatory = $False)] [ValidateNotNullOrEmpty()] [String]$OutputFile = "$((Get-Date -uformat %Y%m%d%H%M%S).ToString())_MsolAccountSkuIdsAndServicePlanNames.csv" ) Function WriteConsoleMessage <#.SYNOPSIS Writes the specified message of the specified message type to the PowerShell console..description Writes the specified message of the specified message type to the PowerShell console..parameter Message Specifies the actual message to be written to the console..parameter MessageType Specifies the type of message to be written of either "error", "warning", "verbose", or "information". The message type simply changes the background and foreground colors so that the type of message is known at a glance.

9 MessageType "Error" PS> WriteConsoleMessage -Message "This is an error message" - PS> WriteConsoleMessage -Message "This is a warning message" - MessageType "Warning" PS> WriteConsoleMessage -Message "This is a verbose message" - MessageType "Verbose" PS> WriteConsoleMessage -Message "This is an information message" - MessageType "Information".INPUTS System.String.OUTPUTS A message is written to the PowerShell console..notes #> [CmdletBinding()] param (

10 [Parameter(Mandatory = $True, Position = 0)] [ValidateNotNullOrEmpty()] [string]$message, [Parameter(Mandatory = $True, Position = 1)] [ValidateSet("Error", "Warning", "Verbose", "Information")] [string]$messagetype ) Switch ($MessageType) "Error" "Warning" "Verbose" $Message = "ERROR: SCRIPT: 0" -f $Message Write-Host $Message -ForegroundColor Black -BackgroundColor Red $Message = "WARNING: SCRIPT: 0" -f $Message Write-Host $Message -ForegroundColor Black -BackgroundColor Yellow $Message = "VERBOSE: SCRIPT: 0" -f $Message If ($VerbosePreference -eq "Continue") Write-Host $Message - ForegroundColor Gray -BackgroundColor Black "Information"

11 $Message = "INFORMATION: SCRIPT: 0" -f $Message Write-Host $Message -ForegroundColor Cyan -BackgroundColor Black Function TestFolderExists <#.SYNOPSIS Verifies that the specified folder/path exists..description Verifies that the specified folder/path exists..parameter Folder Specifies the absolute or relative path to the file. PS> TestFolderExists -Folder "C:\Folder\Sub Folder\File name.csv" PS> TestFolderExists -Folder "File name.csv" PS> TestFolderExists -Folder "C:\Folder\Sub Folder"

12 PS> TestFolderExists -Folder ".\Folder\Sub Folder".INPUTS System.String.OUTPUTS System.Boolean.NOTES #> [CmdletBinding()] param ( [Parameter(Mandatory = $True)] [ValidateNotNullOrEmpty()] [string]$folder ) If ([System.IO.Path]::HasExtension($Folder)) $PathToFile = ([System.IO.Directory]::GetParent($Folder)).FullName Else $PathToFile = [System.IO.Path]::GetFullPath($Folder) If ([System.IO.Directory]::Exists($PathToFile)) Return $True Return $False

13 Function GetElapsedTime <#.SYNOPSIS Calculates a time interval between two DateTime objects..description Calculates a time interval between two DateTime objects..parameter Start Specifies the start time..parameter End Specifies the end time. PM" PS> GetElapsedTime -Start "1/1/ :00:00 AM" -End "1/2/2011 2:00:00 PS> GetElapsedTime -Start ([datetime]"1/1/ :00:00 AM") -End ([datetime]"1/2/2011 2:00:00 PM").INPUTS System.String.OUTPUTS

14 System.Management.Automation.PSObject.NOTES #> [CmdletBinding()] param ( [Parameter(Mandatory = $True, Position = 0)] [ValidateNotNullOrEmpty()] [DateTime]$Start, [Parameter(Mandatory = $True, Position = 1)] [ValidateNotNullOrEmpty()] [DateTime]$End ) $TotalSeconds = ($End).Subtract($Start).TotalSeconds $objelapsedtime = New-Object PSObject # less than 1 minute If ($TotalSeconds -lt 60) Days -Value 0 Hours -Value 0

15 Minutes -Value 0 Seconds -Value $($TotalSeconds) # more than 1 minute, less than 1 hour If (($TotalSeconds -ge 60) -and ($TotalSeconds -lt 3600)) Days -Value 0 Hours -Value 0 Minutes -Value $([Math]::Truncate($TotalSeconds / 60)) Seconds -Value $([Math]::Truncate($TotalSeconds % 60)) # more than 1 hour, less than 1 day If (($TotalSeconds -ge 3600) -and ($TotalSeconds -lt 86400)) Days -Value 0 Hours -Value $([Math]::Truncate($TotalSeconds / 3600)) Minutes -Value $([Math]::Truncate(($TotalSeconds % 3600) / 60)) Seconds -Value $([Math]::Truncate($TotalSeconds % 60))

16 # more than 1 day, less than 1 year If (($TotalSeconds -ge 86400) -and ($TotalSeconds -lt )) Days -Value $([Math]::Truncate($TotalSeconds / 86400)) Hours -Value $([Math]::Truncate(($TotalSeconds % 86400) / 3600)) Minutes -Value $([Math]::Truncate((($TotalSeconds ) % 3600) / 60)) Seconds -Value $([Math]::Truncate($TotalSeconds % 60)) Return $objelapsedtime Function ConnectProvisioningWebServiceAPI <#.SYNOPSIS Connects to the Office 365 provisioning web service API..DESCRIPTION Connects to the Office 365 provisioning web service API. provisioning If a credential is specified, it will be used to establish a connection with the web service API.

17 connection to existing prompted for If a credential is not specified, an attempt is made to identify an existing the provisioning web service API. If an existing connection is identified, the connection is used. If an existing connection is not identified, the user is credentials so that a new connection can be established..parameter Credential service API Specifies the credential to use when connecting to the provisioning web using Connect-MsolService. PS> ConnectProvisioningWebServiceAPI PS> ConnectProvisioningWebServiceAPI -Credential.INPUTS [System.Management.Automation.PsCredential].OUTPUTS.NOTES #> [CmdletBinding()] param

18 ( [Parameter(Mandatory = $False)] [System.Management.Automation.PsCredential]$Credential ) # if a credential was supplied, assume a new connection is intended and create a new # connection using specified credential If ($Credential) 0)) If ((!$Credential) -or (!$Credential.Username) -or ($Credential.Password.Length -eq WriteConsoleMessage -Message ("Invalid credential. Please verify the credential and try again.") -MessageType "Error" Exit # connect to provisioning web service api WriteConsoleMessage -Message "Connecting to the Office 365 provisioning web service API. Please wait..." -MessageType "Information" Connect-MsolService -Credential $Credential If($? -eq $False)WriteConsoleMessage -Message "Error while connecting to the Office 365 provisioning web service API. Quiting..." -MessageType "Error";Exit Else WriteConsoleMessage -Message "Attempting to identify an open connection to the Office 365 provisioning web service API. Please wait..." -MessageType "Information" $getmsolcompanyinformationresults = Get-MsolCompanyInformation -ErrorAction SilentlyContinue

19 If (!$getmsolcompanyinformationresults) WriteConsoleMessage -Message "Could not identify an open connection to the Office 365 provisioning web service API." -MessageType "Information" If (!$Credential) $Credential = $Host.UI.PromptForCredential("Enter Credential", administrator account.", "Enter the username and password of an Office 365 "", "usercreds") If ((!$Credential) -or (!$Credential.Username) -or ($Credential.Password.Length -eq 0)) WriteConsoleMessage -Message ("Invalid credential. Please verify the credential and try again.") -MessageType "Error" Exit # connect to provisioning web service api WriteConsoleMessage -Message "Connecting to the Office 365 provisioning web service API. Please wait..." -MessageType "Information" Connect-MsolService -Credential $Credential If($? -eq $False)WriteConsoleMessage -Message "Error while connecting to the Office 365 provisioning web service API. Quiting..." -MessageType "Error";Exit $getmsolcompanyinformationresults = Get-MsolCompanyInformation - ErrorAction SilentlyContinue WriteConsoleMessage -Message ("Connected to Office 365 tenant named: `"0`"." -f $getmsolcompanyinformationresults.displayname) -MessageType "Information"

20 Else WriteConsoleMessage -Message ("Connected to Office 365 tenant named: `"0`"." -f $getmsolcompanyinformationresults.displayname) -MessageType "Warning" If (!$Script:Credential) $Script:Credential = $Credential Function GetServicePlanNames <#.SYNOPSIS Returns the service plan names that belong to an account sku id..description Returns the service plan names that belong to an account sku id..parameter $Object Specifies an object representing the results returned by the cmdlet named Get-MsolAccountSku. PS> GetServicePlanNames -$Object $Results.servicestatus.INPUTS

21 .OUTPUTS System.String.NOTES #> [CmdletBinding()] param ( [Parameter(Mandatory = $True)] [ValidateNotNullOrEmpty()] $Object ) If ($($Object).length -gt 1) $count = 1 $Object ForEach-Object $Result += "0" -f $_.serviceplan.psobject.properties.item("servicename").value Else If ($count -lt $($Object).length) $Result += "," $count++

22 $Object ForEach-Object $Result += "0" -f $_.serviceplan.psobject.properties.item("servicename").value Return $Result # # # Main Script Execution # # $Error.Clear() $ScriptStartTime = Get-Date # verify that the MSOnline module is installed and import into current powershell session If (!([System.IO.File]::Exists(("0\modules\msonline\Microsoft.Online.Administration.Automation.PS Module.dll" -f $pshome)))) WriteConsoleMessage -Message ("Please download and install the Microsoft Online Services Module.") -MessageType "Error" Exit $getmoduleresults = Get-Module If (!$getmoduleresults) Import-Module MSOnline -ErrorAction SilentlyContinue

23 Else $getmoduleresults ForEach-Object If (!($_.Name -eq "MSOnline"))Import-Module MSOnline -ErrorAction SilentlyContinue # verify output directory exists for results file WriteConsoleMessage -Message ("Verifying folder: 0" -f $OutputFile) -MessageType "Verbose" If (!(TestFolderExists $OutputFile)) "Error" WriteConsoleMessage -Message ("Directory not found: 0" -f $OutputFile) -MessageType Exit # if a filename was not specified as part of $OutputFile, auto generate a name # in the format of YYYYMMDDhhmmss.csv and append to the directory path If (!([System.IO.Path]::HasExtension($OutputFile))) If ($OutputFile.substring($OutputFile.length - 1) -eq "\") $OutputFile += "0_MsolAccountSkuIdsAndServicePlanNames.csv" -f (Get-Date - uformat %Y%m%d%H%M%S).ToString() Else $OutputFile += "\0_MsolAccountSkuIdsAndServicePlanNames.csv" -f (Get-Date - uformat %Y%m%d%H%M%S).ToString() ConnectProvisioningWebServiceAPI -Credential $Credential

24 # get account sku data WriteConsoleMessage -Message "Getting account sku id's and service plan names. Please wait..." - MessageType "Information" $AccountSkuAndServicePlanDetails Get-MsolAccountSku ForEach-Object $objproperties = New-Object PSObject Add-Member -InputObject $objproperties -MemberType NoteProperty -Name "AccountSkuID" -Value $_.accountskuid Add-Member -InputObject $objproperties -MemberType NoteProperty -Name "ServiceNames" -Value $(GetServicePlanNames $_.servicestatus) $AccountSkuAndServicePlanDetails += $objproperties If ($OutputFile) WriteConsoleMessage -Message "Saving results to CSV file. Please wait..." -MessageType "Information" $AccountSkuAndServicePlanDetails Export-Csv -Path $OutputFile -NoTypeInformation # script is complete $ScriptStopTime = Get-Date $elapsedtime = GetElapsedTime -Start $ScriptStartTime -End $ScriptStopTime WriteConsoleMessage -Message ("Script Start Time : 0" -f ($ScriptStartTime)) -MessageType "Information" WriteConsoleMessage -Message ("Script Stop Time : 0" -f ($ScriptStopTime)) -MessageType "Information"

25 WriteConsoleMessage -Message ("Elapsed Time : 0:N0.1:N0:2:N0:3:N1 (Days.Hours:Minutes:Seconds)" -f $elapsedtime.days, $elapsedtime.hours, $elapsedtime.minutes, $elapsedtime.seconds) -MessageType "Information" WriteConsoleMessage -Message ("Output File : 0" -f $OutputFile) -MessageType "Information" Format-List -InputObject $AccountSkuAndServicePlanDetails # # # End of Script. # # Manuelles Zuweisen von Lizenzen Alternativ zur ServerApp kannst Du Lizenzen auch manuell zuweisen

26 Klicke Verwaltung Benutzer Kreuze die oberste Checkbox an Klicke Bearbeiten

27 Klicke Weiter

28 Gib den Benutzerstandort Österreich an Klicke Weiter

29 Klicke Vorhandene Lizenzzuweisungen ersetzen Kreuze den Plan A2 für Studenten (wie in der Abbildung) an Klicke Absenden

REST API Getting Started Guide

REST API Getting Started Guide REST API Getting Started Guide vcommander version 5.2 REST API version 2.3 P a g e 1 Contents Introduction... 3 Version compatibility... 3 Changes in this release... 3 REST API capabilities... 3 Cloud

More information

QAS DEBUG - User und Computer

QAS DEBUG - User und Computer QAS DEBUG - User und Computer Inhalt Computer Status vastool status Benutzer Login vastool list user vastool nss getpwnam vastool user checkaccess kinit su

More information

Multipurpsoe Business Partner Certificates Guideline for the Business Partner

Multipurpsoe Business Partner Certificates Guideline for the Business Partner Multipurpsoe Business Partner Certificates Guideline for the Business Partner 15.05.2013 Guideline for the Business Partner, V1.3 Document Status Document details Siemens Topic Project name Document type

More information

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District Why PowerShell? Most modern Microsoft GUI s are built upon PowerShell A number of third party applications

More information

LAB 2: Identity Management

LAB 2: Identity Management LAB 2: Identity Management Contents Lab 2: Identity Management... 2 Exercise 1: install and configure prerequisites for configuring AD FS... 3 Tasks... 3 Exercise 2: adding and verifying a standard domain

More information

Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops

Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops Summary When creating a desktop the size of the Personalization Layer (UEP) is defined in GB for the desktop. There are two vhdx files that

More information

PowerShell for Exchange Admins

PowerShell for Exchange Admins PowerShell for Exchange Admins Get-Speaker FL Name : Kamal Abburi Title : Premier Field Engineer Expertise : Exchange Email : [email protected] Blog : mrproactive.com Note: Inspired by my fellow

More information

POWERSHELL (& SHAREPOINT) This ain t your momma s command line!

POWERSHELL (& SHAREPOINT) This ain t your momma s command line! POWERSHELL (& SHAREPOINT) This ain t your momma s command line! JAMYE FEW SENIOR CONSULTANT 12+ years as IT Professional ( IT PRO duck DEV ) A little IT PRO, little more DEV and a lot of ducking. Certifiable

More information

Enterprise Self Service Quick start Guide

Enterprise Self Service Quick start Guide Enterprise Self Service Quick start Guide Software version 4.0.0.0 December 2013 General Information: [email protected] Online Support: [email protected] 1 2013 CionSystems Inc. ALL RIGHTS RESERVED.

More information

Powershell und SQL na wie geht das denn?

Powershell und SQL na wie geht das denn? Powershell und SQL na wie geht das denn? Holger Voges CCA,MCSE, MCDBA, MCT, MCITP DB Administrator / DB Developer, MCTIP Enterprise Administrator, MCSE Windows Server 2012 Netz-Weise Freundallee 13a 30173

More information

Quick Start Guide UTM 110/120

Quick Start Guide UTM 110/120 Quick Start Guide UTM 110/120 Sophos Access Points Sophos Access Points 1. Preparation Before you begin, please confirm that you have a working Internet connection & make sure you have the following items

More information

WHITE PAPER BT Sync, the alternative for DirSync during Migrations

WHITE PAPER BT Sync, the alternative for DirSync during Migrations WHITE PAPER BT Sync, the alternative for DirSync during Migrations INTRODUCTION When you have a migration from Exchange on Premises, you definitely have an Active Directory set up. It is a logical decision

More information

Dial-Up VPN auf eine Juniper

Dial-Up VPN auf eine Juniper Dial-Up VPN auf eine Juniper Gateway Konfiguration Phase 1 Konfiguration Create a user that is used to define the phase1 id parameters. Navigate to the following screen using the tree pane on the left

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

How To Talk To A Teen Help

How To Talk To A Teen Help Sprechen - Speaking Das Sprechen in der englischen Sprache ist viel leichter, wenn du einige Tipps beherzigst! 1. Bevor du ein Gespräch beginnst, überlege dir: Was ist die Situation? Welche Rolle soll

More information

How To Connect A Webadmin To A Powerpoint 2.2.2 (Utm) From A Usb To A Usb (Net) Or Ipa (Netlan) Device (Netbook) From Your Computer Or Ipam (Netnet

How To Connect A Webadmin To A Powerpoint 2.2.2 (Utm) From A Usb To A Usb (Net) Or Ipa (Netlan) Device (Netbook) From Your Computer Or Ipam (Netnet Quick Start Guide UTM 220/320/425/525/625 Sophos Access Points Sophos Access Points Before you begin, please confirm that you have a working Internet connection and make sure you have the following items

More information

SharePoint 2016 [PREVIEW] Site Template ID List

SharePoint 2016 [PREVIEW] Site Template ID List SharePoint 2016 [PREVIEW] Site Template ID List

More information

Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417

Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 In dieser Schulung lernen Sie neue Features und Funktionalitäten in Windows Server 2012 in Bezug auf das Management, die Netzwerkinfrastruktur,

More information

Windows Server 2008 R2: What's New in Active Directory

Windows Server 2008 R2: What's New in Active Directory Windows Server 2008 R2: What's New in Active Directory Table of Contents Windows Server 2008 R2: What's New in Active Directory... 1 Exercise 1 Using the Active Directory Administration Center... 2 Exercise

More information

Getting Started with Azure AD and Hybrid Identities

Getting Started with Azure AD and Hybrid Identities Getting Started with Azure AD and Hybrid Identities Jason Himmelstein, SharePoint MVP Office 365 Advisory Services Manager @sharepointlhorn http://www.sharepointlonghorn.com Todd Klindt, SharePoint MVP

More information

Forefront Management Shell PowerShell Management of Forefront Server Products

Forefront Management Shell PowerShell Management of Forefront Server Products Forefront Management Shell PowerShell Management of Forefront Server Products Published: October, 2009 Software version: Forefront Protection 2010 for Exchange Server Mitchell Hall Contents Introduction...

More information

IceWarp to IceWarp Server Migration

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

More information

Installing SQL Server 2012 on SMB Shares on NetApp Storage

Installing SQL Server 2012 on SMB Shares on NetApp Storage Technical Report Installing SQL Server 2012 on SMB Shares on NetApp Storage Pat Sinthusan, NetApp November 2012 TR-4108 TABLE OF CONTENTS 1 Introduction... 3 2 Intended Audience... 3 3 Terminology... 3

More information

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Microsoft Jump Start M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Rick Claus Technical Evangelist Microsoft Ed Liberman Technical Trainer Train Signal Jump Start Target Agenda Day One

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

PowerShell and Office 365. Presentation created for Simplex-IT Developed by Sarah Dutkiewicz

PowerShell and Office 365. Presentation created for Simplex-IT Developed by Sarah Dutkiewicz PowerShell and Office 365 Presentation created for Simplex-IT Developed by Sarah Dutkiewicz Agenda Prerequisites Signing On Company Information Subscriptions Users Groups & Roles This presentation is covering

More information

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

Exploring PowerShell. Using Windows PowerShell

Exploring PowerShell. Using Windows PowerShell 733 Exploring PowerShell Before using PowerShell, you might want to become more familiar with its cmdlets and features. To assist administrators with exploring PowerShell, the PowerShell team decided to

More information

TIBCO Fulfillment Provisioning Session Layer for FTP Installation

TIBCO Fulfillment Provisioning Session Layer for FTP Installation TIBCO Fulfillment Provisioning Session Layer for FTP Installation Software Release 3.8.1 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

windream Failover Cluster Installation

windream Failover Cluster Installation windream windream Failover Cluster Installation windream GmbH, Bochum Copyright 2006-2011 by windream GmbH Wasserstr.219 44799 Bochum Stand: 06/11 1.0.0.3 Alle Rechte vorbehalten. Kein Teil dieser Beschreibung

More information

Powershell Management for Defender

Powershell Management for Defender Powershell Management for Defender 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Mod 2: User Management

Mod 2: User Management Office 365 for SMB Jump Start Mod 2: User Management Chris Oakman Managing Partner Infrastructure Team Eastridge Technology Stephen Hall CEO & SMB Technologist District Computers 1 Jump Start Schedule

More information

SAML based Single Sign-on integration for:

SAML based Single Sign-on integration for: SAML based Single Sign-on integration for: WiActs Inc. 2015. All rights are reserved. Use of this document is subject to the terms and conditions of WiActs products. 1 1. On the WiActs Admin Dashboard,

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual 2013 SPHOL205: Introduction to Backup & Restore in SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet

More information

IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014

IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014 IAC-BOX Network Integration Version 2.0.1 English 24.07.2014 In this HOWTO the basic network infrastructure of the IAC-BOX is described. IAC-BOX Network Integration TITLE Contents Contents... 1 1. Hints...

More information

Installation Sophos Virenscanner auf Friedolins Linux Servern

Installation Sophos Virenscanner auf Friedolins Linux Servern Installation Sophos Virenscanner auf Friedolins Linux Servern Überprüfen der Voraussetzungen Alle Aktionen erfolgen als User root! Für die Installation sind folgende Pakete notwendig: nfs utils und Samba

More information

Using Management Shell Reports and Tracking User Access in the NetVanta UC Server

Using Management Shell Reports and Tracking User Access in the NetVanta UC Server 6UCSCG0004-29A September 2010 Configuration Guide Using Management Shell Reports and Tracking User Access in the NetVanta UC Server This configuration guide provides instructions for accessing the Microsoft

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Course 50414B: Microsoft Windows PowerShell v2 For Administrators Course Details Course Outline Module 1: Introduction to PowerShell the Basics This module explains how to install and configure PowerShell.

More information

ElectricCommander. Technical Notes MS Visual Studio Add-in Integration version 1.5.0. version 3.5 or higher. October 2010

ElectricCommander. Technical Notes MS Visual Studio Add-in Integration version 1.5.0. version 3.5 or higher. October 2010 ElectricCommander version 3.5 or higher Technical Notes MS Visual Studio Add-in Integration version 1.5.0 October 2010 This document contains information about the ElectricCommander integration with the

More information

DocuSign for SharePoint 2010 1.5.1

DocuSign for SharePoint 2010 1.5.1 Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.

More information

Migrating Exchange Server to Office 365

Migrating Exchange Server to Office 365 Migrating Exchange Server to Office 365 By: Brien M. Posey CONTENTS Domain Verification... 3 IMAP Migration... 4 Cut Over and Staged Migration Prep Work... 5 Cut Over Migrations... 6 Staged Migration...

More information

CA Spectrum and CA Service Desk

CA Spectrum and CA Service Desk CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language, in any form, by any

More information

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3. Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database

More information

User Replicator USER S GUIDE

User Replicator USER S GUIDE User Replicator USER S GUIDE Contents 1. Introduction... 2 1.1. User Replicator requirements... 2 2. Creating users in Learning Center from the Active Directory... 3 2.1. Process File... 3 2.2 Users Mappings...

More information

Open Text Social Media. Actual Status, Strategy and Roadmap

Open Text Social Media. Actual Status, Strategy and Roadmap Open Text Social Media Actual Status, Strategy and Roadmap Lars Onasch (Product Marketing) Bernfried Howe (Product Management) Martin Schwanke (Global Service) February 23, 2010 Slide 1 Copyright Open

More information

Forms Printer User Guide

Forms Printer User Guide Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting

More information

Information Assurance Directorate

Information Assurance Directorate National Security Agency/Central Security Service Information Assurance Directorate Recommendations for Configuring Adobe Acrobat Reader XI in a Windows July 12, 2013 Revision 1 A product of the Network

More information

NTP Software File Reporter Analysis Server

NTP Software File Reporter Analysis Server NTP Software File Reporter Analysis Server Installation Guide Version 7.5 - September 2015 This guide provides quick instructions for installing NTP Software File Reporter Analysis Server from an administrator

More information

DocAve 6 SDK and Management Shell

DocAve 6 SDK and Management Shell DocAve 6 SDK and Management Shell User Guide Service Pack 4, Cumulative Update 2 Revision L Issued July 2014 Table of Contents About SDK and Management Shell... 11 Configuration... 11 Agents... 11 Getting

More information

QUICK START BALANCE AUDIO INTERFACE QUICK START DÉMARRAGE RAPIDE KURZANLEITUNG

QUICK START BALANCE AUDIO INTERFACE QUICK START DÉMARRAGE RAPIDE KURZANLEITUNG QUICK START BALANCE AUDIO INTERFACE QUICK START DÉMARRAGE RAPIDE KURZANLEITUNG Quick Start Guide by Fredrik Hylvander The information in this document is subject to change without notice and does not represent

More information

WolfTech Active Directory: PowerShell

WolfTech Active Directory: PowerShell WolfTech Active Directory: PowerShell March 7th, 2012 2-4pm Daniels 201 http://activedirectory.ncsu.edu What we are going to cover... Powershell Basics Listing Properties and Methods of Commandlets.Net

More information

TIBCO Spotfire Server Migration. Migration Manual

TIBCO Spotfire Server Migration. Migration Manual TIBCO Spotfire Server Migration Migration Manual Revision date: 26 October 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Modalverben Theorie. learning target. rules. Aim of this section is to learn how to use modal verbs.

Modalverben Theorie. learning target. rules. Aim of this section is to learn how to use modal verbs. learning target Aim of this section is to learn how to use modal verbs. German Ich muss nach Hause gehen. Er sollte das Buch lesen. Wir können das Visum bekommen. English I must go home. He should read

More information

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports Publication Date: Oct 18, 2011 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About This Guide Abstract

More information

5/13/2009. Dejan Foro [email protected]. Speaker

5/13/2009. Dejan Foro dejan.foro@exchangemaster.net. Speaker Dejan Foro [email protected] Speaker 16years of years of experience with MS technologies 11years and 5generations of experience with Exchange (5.5, 2000, 2003, 2007, 2010) MCP, MCP+I, MCSE

More information

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required 2 Today s Agenda - 9:00-10:30 - Windows Azure Infrastructure Services - 10:30-10:45 - Break - 10:45-12:00 - Windows Azure Infrastructure

More information

Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0

Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0 Abstract These Application Notes describe

More information

Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay ([email protected])

Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay (matthias.gessenay@corporatesoftware.ch) 1 Cloud@Night Event 14. Januar 2016 / Matthias Gessenay ([email protected]) 2 Agenda SharePoint ABC Project Server ABC What s new in O365 4 SharePoint 2016 ABC A Access App-Support

More information

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide LT Auditor+ 2013 Windows Assessment SP1 Installation & Configuration Guide Table of Contents CHAPTER 1- OVERVIEW... 3 CHAPTER 2 - INSTALL LT AUDITOR+ WINDOWS ASSESSMENT SP1 COMPONENTS... 4 System Requirements...

More information

TIBCO Runtime Agent Authentication API User s Guide. Software Release 5.8.0 November 2012

TIBCO Runtime Agent Authentication API User s Guide. Software Release 5.8.0 November 2012 TIBCO Runtime Agent Authentication API User s Guide Software Release 5.8.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

How to install Magellan 6

How to install Magellan 6 Information sheet Magellan S T Ü B E R How to install Magellan 6 Updated: 03.11.2014 All statements made in this document represent the current status of products - errors reserved and can be revised in

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

VERITAS Backup Exec TM 10.0 for Windows Servers VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.

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

More information

Security Explorer 9.5. User Guide

Security Explorer 9.5. User Guide 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

CrontabFile Converter

CrontabFile Converter JobScheduler - Job Execution and Scheduling System CrontabFile Converter Users Manual July 2014 July 2014 CrontabFile Converter page: 1 CrontabFile Converter - Contact Information Contact Information Software-

More information

Cloud Identity Management Tool Quick Start Guide

Cloud Identity Management Tool Quick Start Guide Cloud Identity Management Tool Quick Start Guide Software version 2.0.0 October 2013 General Information: [email protected] Online Support: [email protected] Copyright 2013 CionSystems Inc., All

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Windows PowerShell. 3.0 Step by Step. Ed Wilson

Windows PowerShell. 3.0 Step by Step. Ed Wilson Windows PowerShell 3.0 Step by Step Ed Wilson Foreword Introduction xix xxi Chapter 1 Overview of Windows PowerShell 3.0 1 Understanding Windows PowerShell 1 Using cmdlets 3 Installing Windows PowerShell

More information

J2EE-Application Server

J2EE-Application Server J2EE-Application Server (inkl windows-8) Installation-Guide F:\_Daten\Hochschule Zurich\Web-Technologie\ApplicationServerSetUp.docx Last Update: 19.3.2014, Walter Rothlin Seite 1 Table of Contents Java

More information

SUNGARD SUMMIT 2007 sungardsummit.com 1. Microsoft PowerShell. Presented by: Jeff Modzel. March 22, 2007 Course ID 453. A Community of Learning

SUNGARD SUMMIT 2007 sungardsummit.com 1. Microsoft PowerShell. Presented by: Jeff Modzel. March 22, 2007 Course ID 453. A Community of Learning SUNGARD SUMMIT 2007 sungardsummit.com 1 Microsoft PowerShell Presented by: Jeff Modzel March 22, 2007 A Community of Learning Agenda Introduction to PowerShell PowerShell Power Developer Angle Long Term

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

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports EventTracker: Configuring DLA Extension for AWStats report AWStats Reports Prism Microsystems Corporate Headquarter Date: October 18, 2011 8815 Centre Park Drive Columbia MD 21045 (+1) 410.953.6776 (+1)

More information

A brief Guide to checking your Group Policy Health

A brief Guide to checking your Group Policy Health A brief Guide to checking your Group Policy Health Group Policies are an essential part of every Windows Client infrastructure and it is therefore critical to regularly spend some effort to ensure that

More information

(51) Int Cl.: G06F 21/00 (2006.01) H04L 29/06 (2006.01)

(51) Int Cl.: G06F 21/00 (2006.01) H04L 29/06 (2006.01) (19) TEPZZ_8Z_7 _B_T (11) EP 1 801 721 B1 (12) EUROPEAN PATENT SPECIFICATION (4) Date of publication and mention of the grant of the patent: 16.06. Bulletin /24 (1) Int Cl.: G06F 21/00 (06.01) H04L 29/06

More information

iview (v2.0) Administrator Guide Version 1.0

iview (v2.0) Administrator Guide Version 1.0 iview (v2.0) Administrator Guide Version 1.0 Updated 5/2/2008 Overview This administrator guide describes the processes and procedures for setting up, configuring, running and administering the iview Operator

More information

Intel vpro Technology Module for Microsoft* Windows PowerShell*

Intel vpro Technology Module for Microsoft* Windows PowerShell* Intel vpro Technology Module for Microsoft* Windows PowerShell* 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL

More information

TIBCO Reward 15.3.0 Release Notes August 2015

TIBCO Reward 15.3.0 Release Notes August 2015 TIBCO Reward 15.3.0 Release Notes August 2015 2 TOC Contents Important Information...3 Preface...4 TIBCO Reward Related Documentation...5 Typographical Conventions...6 TIBCO Resources...8 How to Join TIBCOmmunity...8

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server Implementing Data Models and Reports with Microsoft SQL Server Dauer: 5 Tage Kursnummer: M20466 Überblick: Business Intelligence (BI) wird für Unternehmen von verschiedenen Größen aufgrund des dadurch

More information

Scheduling in SAS 9.4 Second Edition

Scheduling in SAS 9.4 Second Edition Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute

More information

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec

More information

Note: The scripts in this article should work for XenApp 6 and XenApp 5 for Windows Server 2008 and XenApp 5 for Windows Server 2003.

Note: The scripts in this article should work for XenApp 6 and XenApp 5 for Windows Server 2008 and XenApp 5 for Windows Server 2003. Recently I was asked how to use PowerShell to get a list of offline Citrix XenApp servers. Being new to PowerShell, this gave me an opportunity to use some of my new knowledge. At the time this article

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

Scheduling in SAS 9.3

Scheduling in SAS 9.3 Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3

More information

SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online

SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online Contents Overview... 3 Introduction... 3 The Contoso Ltd. Scenario... 4 Exercise 1: Member Server Sign up for Office 365

More information

Scribe Online Integration Services (IS) Tutorial

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,

More information

CobraNet TM User s Manual

CobraNet TM User s Manual CobraNet TM User s Manual 19201 Cook Street, Foothill Ranch, CA 92610-3501 USA Phone: (949) 588-9997 Fax: (949) 588-9514 Email: [email protected] Web: www.renkus-heinz.com CobraNet TM is a registered

More information

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version

More information

TECHNICAL NOTE. The following information is provided as a service to our users, customers, and distributors.

TECHNICAL NOTE. The following information is provided as a service to our users, customers, and distributors. page 1 of 11 The following information is provided as a service to our users, customers, and distributors. ** If you are just beginning the process of installing PIPSPro 4.3.1 then please note these instructions

More information

Using DSC with Visual Studio Release Management

Using DSC with Visual Studio Release Management Using DSC with Visual Studio Release Management With Microsoft Release Management 2013 Update 3 CTP 1 (RM), you can now use Windows PowerShell or Windows PowerShell Desired State Configuration (DSC) feature

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center MS Dynamics CRM Integration Configuration Guide Version 7.0 Revision 1.0 Copyright 2012, 8x8, Inc. All rights reserved. This document is provided for information purposes only and

More information

Upgrade-Preisliste. Upgrade Price List

Upgrade-Preisliste. Upgrade Price List Upgrade-Preisliste Mit Firmware Features With list of firmware features Stand/As at: 10.09.2014 Änderungen und Irrtümer vorbehalten. This document is subject to changes. copyright: 2014 by NovaTec Kommunikationstechnik

More information

AP WORLD LANGUAGE AND CULTURE EXAMS 2012 SCORING GUIDELINES

AP WORLD LANGUAGE AND CULTURE EXAMS 2012 SCORING GUIDELINES AP WORLD LANGUAGE AND CULTURE EXAMS 2012 SCORING GUIDELINES Interpersonal Writing: E-mail Reply 5: STRONG performance in Interpersonal Writing Maintains the exchange with a response that is clearly appropriate

More information