SlideShare uma empresa Scribd logo
1 de 60
Baixar para ler offline
TechNet Evaluation Center
IT Camps
Microsoft Virtual Academy
Free product evaluations and
deep technical content
Expert-led, no cost, hands-on
technical training events
Free, expert-led,
technical courses
Download Microsoft software
trials today.
Find an IT Camp near you. Take a free online course.
Technet.microsoft.com/evalcenter Technet.microsoft.com/globalitcamps microsoftvirtualacademy.com
microsoftvirtualacademy.com
MVA provides free online technical training on the
IT scenarios that are important to your company
and your career. Learn at your own pace and boost
your IT skills with access to over 100 expert-led
courses across more than 15 different Microsoft
technologies.
• Windows Server 2012
• Windows 8
• System Center 2012 SP1
• Virtualization
Go to microsoftvirtualacademy.com
• Windows Azure
• Security
• SQL Server 2012
• And more
Students registered 1.2M
Self-assessments passed 1.3M
Hours of training delivered 1.2M
What
Learn more / RegisterBy the numbers (worldwide view)
Covered Products/Technology
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows PowerShell
provides more features to
allow more activities
to be automated across the
server ecosystem
Windows Management Framework
provides a common platform for building
automation and integration incorporating Windows PowerShell,
WS-Management and WMI
STANDARDS-BASED MANAGEMENT MULTISERVER
MANAGEMENT
UPDATE
MANAGEMENT
Server Manager
enables a
multiserver
management
experience that
builds on the
standardized
approach to
management and
Simplify your
routine task
capabilities
WSUS
provides the
features that
administrators
need to
manage and
distribute
updates
Centralized
virtualization
patching
SIMPLIFY ROUTINE TASKS
Server Mode
GUI, minimal shell, core
options
INTERFACE OPTIONS
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
•
• Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 ,or Windows Server 2008 R2
•
•
• Windows 8.1, Windows 8
• Enabled by default
• Accessed from Server Manager, Tools menu
• Windows 7, Windows Vista
• Disabled by default
• To enable, click Start, click Control Panel, click Programs, and then click Turn Windows features on or off.
Windows 2012 R2 Multi Server Management
Server with a GUI
Minimal Server
Interface
Server Core
Windows 2012 R2 Multi Server Management
Server Core Minimal Server Interface Server with a GUI Desktop Experience
Command Prompt a a a a
Windows PowerShell/.NET a a a a
Server Manager x a a a
MMC x a a a
Control Panel x x a a
CPL Applets x Some a a
Explorer Shell x x a a
Taskbar x x a a
System Tray x x a a
Internet Explorer x x a a
Help x x a a
Themes x x x a
Start screen (Metro) x x a a
Metro-style apps x x x a
Media Player x x x a
• .Net Framework 4.5
• Active Directory (AD)
• Active Directory Lightweight Directory
Services (ADLDS)
• Active Directory Certificate Services
(ADCS)
• DHCP Server
• DNS Server
• File Services
• BITS Server
• BranchCache
• Hyper-V
• Internet Information Services (IIS)
• Printing Services
• Streaming Media Services
• iSCSI
• Load Balancing
• MPIO
• qWave
• Telnet
• Unix Migration
• SQL Server 2012
http://www.dependencywalker.com
Install-WindowsFeature Server-Gui-Mgmt-Infra
Install-WindowsFeature Server-Gui-Shell
Install-WindowsFeature Desktop-Experience
Uninstall-WindowsFeature Server-GUI-Shell
Uninstall-WindowsFeature Server-GUI-Shell -
remove
Windows 2012 R2 Multi Server Management
• Server Core installation option is created using Features on Demand
• Files for <FeatureName> will be deleted from the windowswinsxs folder
• Must use Windows PowerShell; remove is not available in Server Manager
• Reinstallation sources
• Location can be specified via Group Policy
Uninstall-WindowsFeature <FeatureName> -Remove
• Server Manager
• Windows PowerShell
Install-WindowsFeature <FeatureName>
-Source <Source>
Windows 2012 R2 Multi Server Management
• Windows PowerShell is a distributed automation engine with a scripting language and
interactive shell(s)
• Focuses on the business
• Makes change safe through automation
• Bridges the gap between operators and developers
• Windows PowerShell 4.0 is available for the following operating systems:
• Built-in
• Windows Server 2012 R2
• Windows 8.1
• Downloadable for
• Windows 7 SP1
• Windows Server 2008 R2 SP1
Windows 2012 R2 Multi Server Management
• The challenge…
• Reduce errors during configuration changes
• Reduce the skill set required for authoring automation of complex solutions
• Locate and import the numerous Windows PowerShell modules into each session
• Reduce the syntax learning curve, especially for people new to Windows PowerShell
• Bridge the gap between operators and developers
• The Windows PowerShell 4.0 solution….
• Allows for use of tested scripts, reducing the number of errors that impact production environments
• Improves efficiency due to the dramatic increase number of built-in cmdlets
• Includes features designed to speed understanding and correct usage of syntax (Show-Command, Intellisense)
• Makes excellent progress toward bridging the gap between operators and developers
• Simplifies routine tasks!!
Windows 2012 R2 Multi Server Management
• Get-Help
• Provides a progress indicator when searching
• Update-Help
• With no parameters, it will use the Internet to update help for each module loaded into the current session
• By default, can be used only once per day; override with –Force
• Must be part of the Administrators group and Run As Administrator if updating core Windows PowerShell modules
• Can be used to pull updates from the Internet or a local folder or file share
• Save-Help
• Downloads the help for modules and saves them to the local file or share
• Organized into a single XML file accompanied by several CAB files, one for each language
Update-Help
-Force
-Module [module name]
-SourcePath
-LiteralPath
Windows 2012 R2 Multi Server Management
• Lets beginners run cmdlets from a
dialog box
• Running without parameters displays a list of
available cmdlets, functions, aliases and scripts
installed on the system
• Can filter by module
• Can search by name
Snippets add reusable text to scripts and commands.
Windows 2012 R2 Multi Server Management
Get-IseSnippet
New-IseSnippet
• Displays code snippets for selected
commands
• Enabled in ISE by selecting Start Snippets from
the Edit Menu
• Enable through the Add Roles and
Features wizard in Server Manager
Corporate
Network
Server 1
Server 2
Server 3
Web-based
console user DMZ
Windows PowerShell
Web Access Gateway
• Allow for reconnection to disconnected remote sessions
• This example creates a new session on a remote server, stores data in that session, and then
disconnects it while leaving the session running. The name of the running session is
Server1Session. The local connection variable is $RemoteSession.
• The following commands reconnect to the remote session (in this example, from the server where
the session is still running)
↪ Enable-PSRemoting –Force
↪ $RemoteSession = New-PSSession –Name Server1Session –ComputerName Server1
↪ Invoke-Command –Session $RemoteSession –ScriptBlock {$date = Get-Date }
↪ Disconnect-PSSession –session $RemoteSession
↪ Exit
↪ Get-PSSession –ComputerName Localhost
↪ $LocalSession = Connect-PSSession –ComputerName localhost –Name Server1Session
↪ Invoke-command –Session $LocalSession –Scriptblock { $date }
03
Corporate
Resource
Server 1
through
Web-based
console user DMZ
Windows PowerShell
Web Access Gateway
• A set of long-running activities (in sequence or in parallel) that perform complex
management tasks, such as multi-machine application provisioning
• Typically started from a client computer
• Like any other Windows PowerShell command, you can use Get-Command to discover them and Get-Help to learn
how to use them
• Authored using a Windows PowerShell script or the Visual Studio Workflow Designer (XAML)
• Workflows survive system interruptions (reboots, network problems): suspend-job/ resume-job, persist state and
metadata
↪ Workflow MyWorkflow {Write-Output -InputObject "Hello from Workflow!"}
↪ Get-Command –Name MyWorkflow –Syntax
↪ MyWorkflow
• Improve management automation
• Jobs execute based on triggers
• Once, daily, weekly, at startup, at logon
Windows 2012 R2 Multi Server Management
Automatic
updates
Server running
Windows Server
Update Services
Automatic
updates
LAN
Internet
Test clients
Microsoft
Update
website
• Maintain operational efficiency
• Overcome security vulnerabilities
• Maintain stability of your production environment
Update
Management
Phase 1: Assess
• Set up a production environment that will support update
management for routine and emergency scenarios
Phase 3: Evaluate and Plan
• Test updates in an environment that resembles, but is separate from,
the production environment
• Determine the tasks necessary to deploy updates into production,
plan the update releases, build the releases, and then conduct
acceptance testing of the releases
Phase 4: Deploy
•Approve and schedule
update installations
•Review the process
after the deployment is
complete
Phase 4: Deploy
• Approve and schedule
update installations
• Review the process after
the deployment is
complete
Phase 2: Identify
• Discover new updates in
a convenient manner
• Determine whether
updates are relevant to
the production
environment
Identify
Evaluate
and Plan
Deploy
Assess
• Software requirements
• Internet Information Services 6.0 or newer
• Microsoft .NET Framework 2.0 or newer
• Microsoft Management Console 3.0
• Microsoft Report Viewer Redistributable 2008 or newer
• SQL Server 2012, SQL Server 2008, SQL Server 2005 SP2, or Windows Internal Database
• Hardware requirements
• 1.4 GHz or faster x64 processor
• 2 GB of RAM or greater
• 10 GB available disk space (40 GB or greater is recommended)
Central patching of key hosts and
management servers
• Cluster-Aware Compliance – Ensures all hosts
are patched to a baseline without VM
downtime
• WSUS – Integrates with System Center Virtual
Machine Manager and Configuration Manager
• Baselines – Admins define patches that are to
be deployed for compliance. These baselines
are assigned to hosts/servers
• Scan for Compliance – Scan the
hosts/management servers against baselines to
determine compliance
• Remediation – VMM orchestrates the patching
of the servers, moving VMs as necessary with
Live Migration
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
Download evaluation software
Download free Microsoft software trials today at the TechNet Evaluation Center.
http://aka.ms/CampEval
Learn more
Boost your technical skills with free expert-led technical training from Microsoft Virtual Academy.
http://aka.ms/CampMVAWS
http://aka.ms/CampMVASC
Get certified
Get hired, get recognized, and get ahead with certifications from Microsoft.
http://aka.ms/CampCertWS
http://aka.ms/CampCertInfra
Evaluate online
Test Microsoft’s newest products and technologies in a virtual environment for free at the Microsoft Virtual Labs.
http://aka.ms/CampVlabs
Windows 2012 R2 Multi Server Management
Free product evaluations and
deep technical content
Expert-led, no cost, hands-on
technical training events
Free, expert-led,
technical courses
Download Microsoft software
trials today.
Find an IT Camp near you. Take a free online course.
Technet.microsoft.com/evalcenter Technet.microsoft.com/globalitcamps microsoftvirtualacademy.com
TechNet Evaluation Center
IT Camps
Microsoft Virtual Academy
Windows 2012 R2 Multi Server Management
Technet.microsoft.com/evalcenter
What
At the TechNet Evaluation Center you can
download free, trial versions of Microsoft software,
with no feature limits. Dozens of trials are available
– all at no cost.
Learn more / Register
Go to technet.microsoft.com/evalcenter
Top Products/Technology
• Windows Server 2012
• Office Professional Plus 2013
• Windows 8 Enterprise
• Exchange Server 2012
• Windows Server 2012
• System Center 2012 SP 1
• Lync Server 2013
Technet.microsoft.com/globalitcamps
IT Camps are no cost, hands-on technical training
events for IT professionals led by Microsoft
experts, centered on the IT challenges you’re
tackling in your environment today.
• Windows Server 2012
• Windows 8
• Windows Azure
• System Center 2012 SP 1
Go to technet.microsoft.com/globalitcampsNumber of IT Camps executed since July 575
Number of Students attended since July 13k
What
Learn more / RegisterBy the numbers (worldwide view)
Covered Products/Technology
Windows 2012 R2 Multi Server Management

Mais conteúdo relacionado

Mais procurados

KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLAKoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLATobias Koprowski
 
Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07gameaxt
 
Planning and Completing an IBM Connections Upgrade
Planning and Completing an IBM Connections UpgradePlanning and Completing an IBM Connections Upgrade
Planning and Completing an IBM Connections UpgradeGabriella Davis
 
Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11gameaxt
 
Active Directory Upgrade
Active Directory UpgradeActive Directory Upgrade
Active Directory UpgradeSpiffy
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12gameaxt
 
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the Cloud
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the CloudAAI-1445 Managing Dynamic Workloads with WebSphere ND and in the Cloud
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the CloudWASdev Community
 
Best MCSA - SQL SERVER 2012 Training Institute in Delhi
Best MCSA - SQL SERVER 2012 Training Institute in DelhiBest MCSA - SQL SERVER 2012 Training Institute in Delhi
Best MCSA - SQL SERVER 2012 Training Institute in DelhiInformation Technology
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradeGabriella Davis
 
Software Distribution
Software DistributionSoftware Distribution
Software DistributionDell World
 
Hyper-V’s Virtualization Enhancements - EPC Group
Hyper-V’s Virtualization Enhancements - EPC GroupHyper-V’s Virtualization Enhancements - EPC Group
Hyper-V’s Virtualization Enhancements - EPC GroupEPC Group
 
Citrix CloudGateway 2.5 Technical Overview and Troubleshooting
Citrix CloudGateway 2.5 Technical Overview and TroubleshootingCitrix CloudGateway 2.5 Technical Overview and Troubleshooting
Citrix CloudGateway 2.5 Technical Overview and TroubleshootingDavid McGeough
 

Mais procurados (20)

MCSA 70-412 Chapter 12
MCSA 70-412 Chapter 12MCSA 70-412 Chapter 12
MCSA 70-412 Chapter 12
 
MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05
 
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLAKoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
 
Liberty Deep Dive
Liberty Deep DiveLiberty Deep Dive
Liberty Deep Dive
 
Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07
 
Liberty management
Liberty managementLiberty management
Liberty management
 
Planning and Completing an IBM Connections Upgrade
Planning and Completing an IBM Connections UpgradePlanning and Completing an IBM Connections Upgrade
Planning and Completing an IBM Connections Upgrade
 
MCSA 70-412 Chapter 10
MCSA 70-412 Chapter 10MCSA 70-412 Chapter 10
MCSA 70-412 Chapter 10
 
Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11
 
Active Directory Upgrade
Active Directory UpgradeActive Directory Upgrade
Active Directory Upgrade
 
20410 b 00
20410 b 0020410 b 00
20410 b 00
 
MCSA 70-412 Chapter 11
MCSA 70-412 Chapter 11MCSA 70-412 Chapter 11
MCSA 70-412 Chapter 11
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12
 
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the Cloud
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the CloudAAI-1445 Managing Dynamic Workloads with WebSphere ND and in the Cloud
AAI-1445 Managing Dynamic Workloads with WebSphere ND and in the Cloud
 
MCSA 70-412 Chapter 09
MCSA 70-412 Chapter 09MCSA 70-412 Chapter 09
MCSA 70-412 Chapter 09
 
Best MCSA - SQL SERVER 2012 Training Institute in Delhi
Best MCSA - SQL SERVER 2012 Training Institute in DelhiBest MCSA - SQL SERVER 2012 Training Institute in Delhi
Best MCSA - SQL SERVER 2012 Training Institute in Delhi
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections Upgrade
 
Software Distribution
Software DistributionSoftware Distribution
Software Distribution
 
Hyper-V’s Virtualization Enhancements - EPC Group
Hyper-V’s Virtualization Enhancements - EPC GroupHyper-V’s Virtualization Enhancements - EPC Group
Hyper-V’s Virtualization Enhancements - EPC Group
 
Citrix CloudGateway 2.5 Technical Overview and Troubleshooting
Citrix CloudGateway 2.5 Technical Overview and TroubleshootingCitrix CloudGateway 2.5 Technical Overview and Troubleshooting
Citrix CloudGateway 2.5 Technical Overview and Troubleshooting
 

Destaque

Wsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For BeginnersWsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For Beginnersjsnover1
 
Wsv406 Advanced Automation Using Windows Power Shell2.0
Wsv406 Advanced Automation Using Windows Power Shell2.0Wsv406 Advanced Automation Using Windows Power Shell2.0
Wsv406 Advanced Automation Using Windows Power Shell2.0jsnover1
 
Everything you need to know about PowerShell
Everything you need to know about PowerShellEverything you need to know about PowerShell
Everything you need to know about PowerShellShane Hoey
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical OverviewAmit Gatenyo
 
Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2Michael Rüefli
 
windows server 2012 internal monitoring tools
windows server 2012 internal monitoring toolswindows server 2012 internal monitoring tools
windows server 2012 internal monitoring tools24x7 server monitoring
 
Windows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvementsWindows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvementsSusantha Silva
 
Storage Options in Windows Server 2012
Storage Options in Windows Server 2012Storage Options in Windows Server 2012
Storage Options in Windows Server 2012Lai Yoong Seng
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Aidan Finn
 
Windows Server 2012 Hyper-V: A more complete virtualization platform
Windows Server 2012 Hyper-V: A more complete virtualization platformWindows Server 2012 Hyper-V: A more complete virtualization platform
Windows Server 2012 Hyper-V: A more complete virtualization platformMotty Ben Atia
 
What’s new in windows server 2012
What’s new in windows server 2012What’s new in windows server 2012
What’s new in windows server 2012Alex de Jong
 
VMUG - Mastering PowerShell to Call RESTful API Endpoints
VMUG - Mastering PowerShell to Call RESTful API EndpointsVMUG - Mastering PowerShell to Call RESTful API Endpoints
VMUG - Mastering PowerShell to Call RESTful API EndpointsChris Wahl
 
MCSA 70-410 1 -installing windows server 2012 R2
MCSA 70-410  1 -installing windows server 2012 R2MCSA 70-410  1 -installing windows server 2012 R2
MCSA 70-410 1 -installing windows server 2012 R2Tarek Amer
 
Introduction To Windows Power Shell
Introduction To Windows Power ShellIntroduction To Windows Power Shell
Introduction To Windows Power ShellMicrosoft TechNet
 
Microsoft Windows Server 2012 R2 Overview - Presented by Atidan
Microsoft Windows Server 2012 R2 Overview - Presented by AtidanMicrosoft Windows Server 2012 R2 Overview - Presented by Atidan
Microsoft Windows Server 2012 R2 Overview - Presented by AtidanDavid J Rosenthal
 
PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)Concentrated Technology
 
PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)Concentrated Technology
 
10 PowerShell Mistakes, Trips and Traps
10 PowerShell Mistakes, Trips and Traps10 PowerShell Mistakes, Trips and Traps
10 PowerShell Mistakes, Trips and TrapsJeffery Hicks
 
Building an Empire with PowerShell
Building an Empire with PowerShellBuilding an Empire with PowerShell
Building an Empire with PowerShellWill Schroeder
 
Introduction To Power Shell
Introduction To Power ShellIntroduction To Power Shell
Introduction To Power ShellIvan Suhinin
 

Destaque (20)

Wsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For BeginnersWsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For Beginners
 
Wsv406 Advanced Automation Using Windows Power Shell2.0
Wsv406 Advanced Automation Using Windows Power Shell2.0Wsv406 Advanced Automation Using Windows Power Shell2.0
Wsv406 Advanced Automation Using Windows Power Shell2.0
 
Everything you need to know about PowerShell
Everything you need to know about PowerShellEverything you need to know about PowerShell
Everything you need to know about PowerShell
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical Overview
 
Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2
 
windows server 2012 internal monitoring tools
windows server 2012 internal monitoring toolswindows server 2012 internal monitoring tools
windows server 2012 internal monitoring tools
 
Windows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvementsWindows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvements
 
Storage Options in Windows Server 2012
Storage Options in Windows Server 2012Storage Options in Windows Server 2012
Storage Options in Windows Server 2012
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012
 
Windows Server 2012 Hyper-V: A more complete virtualization platform
Windows Server 2012 Hyper-V: A more complete virtualization platformWindows Server 2012 Hyper-V: A more complete virtualization platform
Windows Server 2012 Hyper-V: A more complete virtualization platform
 
What’s new in windows server 2012
What’s new in windows server 2012What’s new in windows server 2012
What’s new in windows server 2012
 
VMUG - Mastering PowerShell to Call RESTful API Endpoints
VMUG - Mastering PowerShell to Call RESTful API EndpointsVMUG - Mastering PowerShell to Call RESTful API Endpoints
VMUG - Mastering PowerShell to Call RESTful API Endpoints
 
MCSA 70-410 1 -installing windows server 2012 R2
MCSA 70-410  1 -installing windows server 2012 R2MCSA 70-410  1 -installing windows server 2012 R2
MCSA 70-410 1 -installing windows server 2012 R2
 
Introduction To Windows Power Shell
Introduction To Windows Power ShellIntroduction To Windows Power Shell
Introduction To Windows Power Shell
 
Microsoft Windows Server 2012 R2 Overview - Presented by Atidan
Microsoft Windows Server 2012 R2 Overview - Presented by AtidanMicrosoft Windows Server 2012 R2 Overview - Presented by Atidan
Microsoft Windows Server 2012 R2 Overview - Presented by Atidan
 
PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)
 
PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)
 
10 PowerShell Mistakes, Trips and Traps
10 PowerShell Mistakes, Trips and Traps10 PowerShell Mistakes, Trips and Traps
10 PowerShell Mistakes, Trips and Traps
 
Building an Empire with PowerShell
Building an Empire with PowerShellBuilding an Empire with PowerShell
Building an Empire with PowerShell
 
Introduction To Power Shell
Introduction To Power ShellIntroduction To Power Shell
Introduction To Power Shell
 

Semelhante a Windows 2012 R2 Multi Server Management

A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0Sarah Dutkiewicz
 
Unleashing the Power: A Lap Around PowerShell 3.0
Unleashing the Power: A Lap Around PowerShell 3.0Unleashing the Power: A Lap Around PowerShell 3.0
Unleashing the Power: A Lap Around PowerShell 3.0Sarah Dutkiewicz
 
Jan Egil Ring - Get started with windows power shell desired state configuration
Jan Egil Ring - Get started with windows power shell desired state configurationJan Egil Ring - Get started with windows power shell desired state configuration
Jan Egil Ring - Get started with windows power shell desired state configurationNordic Infrastructure Conference
 
PowerShell Plus v4.7 Overview
PowerShell Plus v4.7 OverviewPowerShell Plus v4.7 Overview
PowerShell Plus v4.7 OverviewRichard Giles
 
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows Server
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows ServerWinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows Server
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows ServerWinOps Conf
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the BasicsUlrich Krause
 
Application Streaming is dead. A smart way to choose an alternative
Application Streaming is dead. A smart way to choose an alternativeApplication Streaming is dead. A smart way to choose an alternative
Application Streaming is dead. A smart way to choose an alternativeDenis Gundarev
 
Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Tomislav Lulic
 
Open Audit
Open AuditOpen Audit
Open Auditncspa
 
Serena Release Management approach and solutions
Serena Release Management approach and solutionsSerena Release Management approach and solutions
Serena Release Management approach and solutionsSoftmart
 
PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopersBryan Cafferky
 
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...Amazon Web Services
 
Datasheet was pluginforrd
Datasheet was pluginforrdDatasheet was pluginforrd
Datasheet was pluginforrdMidVision
 
IBM InterConnect 2015 - IIB in the Cloud
IBM InterConnect 2015 - IIB in the CloudIBM InterConnect 2015 - IIB in the Cloud
IBM InterConnect 2015 - IIB in the CloudAndrew Coleman
 
Deploying to and Configuring WebSphere Application Server with UrbanCode Deploy
Deploying to and Configuring WebSphere Application Server with UrbanCode DeployDeploying to and Configuring WebSphere Application Server with UrbanCode Deploy
Deploying to and Configuring WebSphere Application Server with UrbanCode DeployIBM DevOps
 

Semelhante a Windows 2012 R2 Multi Server Management (20)

A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0
 
Unleashing the Power: A Lap Around PowerShell 3.0
Unleashing the Power: A Lap Around PowerShell 3.0Unleashing the Power: A Lap Around PowerShell 3.0
Unleashing the Power: A Lap Around PowerShell 3.0
 
Patterns
Patterns Patterns
Patterns
 
Bcit win8 ws2012 session
Bcit win8 ws2012 sessionBcit win8 ws2012 session
Bcit win8 ws2012 session
 
IUG ATL PC 9.5
IUG ATL PC 9.5IUG ATL PC 9.5
IUG ATL PC 9.5
 
Jan Egil Ring - Get started with windows power shell desired state configuration
Jan Egil Ring - Get started with windows power shell desired state configurationJan Egil Ring - Get started with windows power shell desired state configuration
Jan Egil Ring - Get started with windows power shell desired state configuration
 
PowerShell Plus v4.7 Overview
PowerShell Plus v4.7 OverviewPowerShell Plus v4.7 Overview
PowerShell Plus v4.7 Overview
 
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows Server
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows ServerWinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows Server
WinOps Conf 2016 - Jeffrey Snover - The DevOpsification of Windows Server
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the Basics
 
System center seminar presentation
System center seminar presentationSystem center seminar presentation
System center seminar presentation
 
Application Streaming is dead. A smart way to choose an alternative
Application Streaming is dead. A smart way to choose an alternativeApplication Streaming is dead. A smart way to choose an alternative
Application Streaming is dead. A smart way to choose an alternative
 
Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?
 
Open Audit
Open AuditOpen Audit
Open Audit
 
Serena Release Management approach and solutions
Serena Release Management approach and solutionsSerena Release Management approach and solutions
Serena Release Management approach and solutions
 
PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopers
 
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...
DevOps on Windows: How to Deploy Complex Windows Workloads | AWS Public Secto...
 
Powering up on PowerShell - BSides Greenville 2019
Powering up on PowerShell  - BSides Greenville 2019Powering up on PowerShell  - BSides Greenville 2019
Powering up on PowerShell - BSides Greenville 2019
 
Datasheet was pluginforrd
Datasheet was pluginforrdDatasheet was pluginforrd
Datasheet was pluginforrd
 
IBM InterConnect 2015 - IIB in the Cloud
IBM InterConnect 2015 - IIB in the CloudIBM InterConnect 2015 - IIB in the Cloud
IBM InterConnect 2015 - IIB in the Cloud
 
Deploying to and Configuring WebSphere Application Server with UrbanCode Deploy
Deploying to and Configuring WebSphere Application Server with UrbanCode DeployDeploying to and Configuring WebSphere Application Server with UrbanCode Deploy
Deploying to and Configuring WebSphere Application Server with UrbanCode Deploy
 

Último

online pdf editor software solutions.pdf
online pdf editor software solutions.pdfonline pdf editor software solutions.pdf
online pdf editor software solutions.pdfMeon Technology
 
Fields in Java and Kotlin and what to expect.pptx
Fields in Java and Kotlin and what to expect.pptxFields in Java and Kotlin and what to expect.pptx
Fields in Java and Kotlin and what to expect.pptxJoão Esperancinha
 
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/ML
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/MLBig Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/ML
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/MLAlluxio, Inc.
 
ERP For Electrical and Electronics manufecturing.pptx
ERP For Electrical and Electronics manufecturing.pptxERP For Electrical and Electronics manufecturing.pptx
ERP For Electrical and Electronics manufecturing.pptxAutus Cyber Tech
 
How Does the Epitome of Spyware Differ from Other Malicious Software?
How Does the Epitome of Spyware Differ from Other Malicious Software?How Does the Epitome of Spyware Differ from Other Malicious Software?
How Does the Epitome of Spyware Differ from Other Malicious Software?AmeliaSmith90
 
Sales Territory Management: A Definitive Guide to Expand Sales Coverage
Sales Territory Management: A Definitive Guide to Expand Sales CoverageSales Territory Management: A Definitive Guide to Expand Sales Coverage
Sales Territory Management: A Definitive Guide to Expand Sales CoverageDista
 
Generative AI for Cybersecurity - EC-Council
Generative AI for Cybersecurity - EC-CouncilGenerative AI for Cybersecurity - EC-Council
Generative AI for Cybersecurity - EC-CouncilVICTOR MAESTRE RAMIREZ
 
Why Choose Brain Inventory For Ecommerce Development.pdf
Why Choose Brain Inventory For Ecommerce Development.pdfWhy Choose Brain Inventory For Ecommerce Development.pdf
Why Choose Brain Inventory For Ecommerce Development.pdfBrain Inventory
 
Top Software Development Trends in 2024
Top Software Development Trends in  2024Top Software Development Trends in  2024
Top Software Development Trends in 2024Mind IT Systems
 
JS-Experts - Cybersecurity for Generative AI
JS-Experts - Cybersecurity for Generative AIJS-Experts - Cybersecurity for Generative AI
JS-Experts - Cybersecurity for Generative AIIvo Andreev
 
eAuditor Audits & Inspections - conduct field inspections
eAuditor Audits & Inspections - conduct field inspectionseAuditor Audits & Inspections - conduct field inspections
eAuditor Audits & Inspections - conduct field inspectionsNirav Modi
 
Enterprise Document Management System - Qualityze Inc
Enterprise Document Management System - Qualityze IncEnterprise Document Management System - Qualityze Inc
Enterprise Document Management System - Qualityze Incrobinwilliams8624
 
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...Jaydeep Chhasatia
 
Deep Learning for Images with PyTorch - Datacamp
Deep Learning for Images with PyTorch - DatacampDeep Learning for Images with PyTorch - Datacamp
Deep Learning for Images with PyTorch - DatacampVICTOR MAESTRE RAMIREZ
 
AI Embracing Every Shade of Human Beauty
AI Embracing Every Shade of Human BeautyAI Embracing Every Shade of Human Beauty
AI Embracing Every Shade of Human BeautyRaymond Okyere-Forson
 
Introduction-to-Software-Development-Outsourcing.pptx
Introduction-to-Software-Development-Outsourcing.pptxIntroduction-to-Software-Development-Outsourcing.pptx
Introduction-to-Software-Development-Outsourcing.pptxIntelliSource Technologies
 
Kawika Technologies pvt ltd Software Development Company in Trivandrum
Kawika Technologies pvt ltd Software Development Company in TrivandrumKawika Technologies pvt ltd Software Development Company in Trivandrum
Kawika Technologies pvt ltd Software Development Company in TrivandrumKawika Technologies
 
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdf
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdfARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdf
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdfTobias Schneck
 
OpenChain Webinar: Universal CVSS Calculator
OpenChain Webinar: Universal CVSS CalculatorOpenChain Webinar: Universal CVSS Calculator
OpenChain Webinar: Universal CVSS CalculatorShane Coughlan
 

Último (20)

online pdf editor software solutions.pdf
online pdf editor software solutions.pdfonline pdf editor software solutions.pdf
online pdf editor software solutions.pdf
 
Fields in Java and Kotlin and what to expect.pptx
Fields in Java and Kotlin and what to expect.pptxFields in Java and Kotlin and what to expect.pptx
Fields in Java and Kotlin and what to expect.pptx
 
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/ML
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/MLBig Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/ML
Big Data Bellevue Meetup | Enhancing Python Data Loading in the Cloud for AI/ML
 
ERP For Electrical and Electronics manufecturing.pptx
ERP For Electrical and Electronics manufecturing.pptxERP For Electrical and Electronics manufecturing.pptx
ERP For Electrical and Electronics manufecturing.pptx
 
How Does the Epitome of Spyware Differ from Other Malicious Software?
How Does the Epitome of Spyware Differ from Other Malicious Software?How Does the Epitome of Spyware Differ from Other Malicious Software?
How Does the Epitome of Spyware Differ from Other Malicious Software?
 
Sales Territory Management: A Definitive Guide to Expand Sales Coverage
Sales Territory Management: A Definitive Guide to Expand Sales CoverageSales Territory Management: A Definitive Guide to Expand Sales Coverage
Sales Territory Management: A Definitive Guide to Expand Sales Coverage
 
Generative AI for Cybersecurity - EC-Council
Generative AI for Cybersecurity - EC-CouncilGenerative AI for Cybersecurity - EC-Council
Generative AI for Cybersecurity - EC-Council
 
Why Choose Brain Inventory For Ecommerce Development.pdf
Why Choose Brain Inventory For Ecommerce Development.pdfWhy Choose Brain Inventory For Ecommerce Development.pdf
Why Choose Brain Inventory For Ecommerce Development.pdf
 
Top Software Development Trends in 2024
Top Software Development Trends in  2024Top Software Development Trends in  2024
Top Software Development Trends in 2024
 
JS-Experts - Cybersecurity for Generative AI
JS-Experts - Cybersecurity for Generative AIJS-Experts - Cybersecurity for Generative AI
JS-Experts - Cybersecurity for Generative AI
 
eAuditor Audits & Inspections - conduct field inspections
eAuditor Audits & Inspections - conduct field inspectionseAuditor Audits & Inspections - conduct field inspections
eAuditor Audits & Inspections - conduct field inspections
 
Enterprise Document Management System - Qualityze Inc
Enterprise Document Management System - Qualityze IncEnterprise Document Management System - Qualityze Inc
Enterprise Document Management System - Qualityze Inc
 
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...
Optimizing Business Potential: A Guide to Outsourcing Engineering Services in...
 
Deep Learning for Images with PyTorch - Datacamp
Deep Learning for Images with PyTorch - DatacampDeep Learning for Images with PyTorch - Datacamp
Deep Learning for Images with PyTorch - Datacamp
 
AI Embracing Every Shade of Human Beauty
AI Embracing Every Shade of Human BeautyAI Embracing Every Shade of Human Beauty
AI Embracing Every Shade of Human Beauty
 
Salesforce AI Associate Certification.pptx
Salesforce AI Associate Certification.pptxSalesforce AI Associate Certification.pptx
Salesforce AI Associate Certification.pptx
 
Introduction-to-Software-Development-Outsourcing.pptx
Introduction-to-Software-Development-Outsourcing.pptxIntroduction-to-Software-Development-Outsourcing.pptx
Introduction-to-Software-Development-Outsourcing.pptx
 
Kawika Technologies pvt ltd Software Development Company in Trivandrum
Kawika Technologies pvt ltd Software Development Company in TrivandrumKawika Technologies pvt ltd Software Development Company in Trivandrum
Kawika Technologies pvt ltd Software Development Company in Trivandrum
 
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdf
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdfARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdf
ARM Talk @ Rejekts - Will ARM be the new Mainstream in our Data Centers_.pdf
 
OpenChain Webinar: Universal CVSS Calculator
OpenChain Webinar: Universal CVSS CalculatorOpenChain Webinar: Universal CVSS Calculator
OpenChain Webinar: Universal CVSS Calculator
 

Windows 2012 R2 Multi Server Management

  • 1. TechNet Evaluation Center IT Camps Microsoft Virtual Academy
  • 2. Free product evaluations and deep technical content Expert-led, no cost, hands-on technical training events Free, expert-led, technical courses Download Microsoft software trials today. Find an IT Camp near you. Take a free online course. Technet.microsoft.com/evalcenter Technet.microsoft.com/globalitcamps microsoftvirtualacademy.com
  • 3. microsoftvirtualacademy.com MVA provides free online technical training on the IT scenarios that are important to your company and your career. Learn at your own pace and boost your IT skills with access to over 100 expert-led courses across more than 15 different Microsoft technologies. • Windows Server 2012 • Windows 8 • System Center 2012 SP1 • Virtualization Go to microsoftvirtualacademy.com • Windows Azure • Security • SQL Server 2012 • And more Students registered 1.2M Self-assessments passed 1.3M Hours of training delivered 1.2M What Learn more / RegisterBy the numbers (worldwide view) Covered Products/Technology
  • 8. Windows PowerShell provides more features to allow more activities to be automated across the server ecosystem Windows Management Framework provides a common platform for building automation and integration incorporating Windows PowerShell, WS-Management and WMI STANDARDS-BASED MANAGEMENT MULTISERVER MANAGEMENT UPDATE MANAGEMENT Server Manager enables a multiserver management experience that builds on the standardized approach to management and Simplify your routine task capabilities WSUS provides the features that administrators need to manage and distribute updates Centralized virtualization patching SIMPLIFY ROUTINE TASKS Server Mode GUI, minimal shell, core options INTERFACE OPTIONS
  • 17. • • Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 ,or Windows Server 2008 R2 • • • Windows 8.1, Windows 8 • Enabled by default • Accessed from Server Manager, Tools menu • Windows 7, Windows Vista • Disabled by default • To enable, click Start, click Control Panel, click Programs, and then click Turn Windows features on or off.
  • 19. Server with a GUI Minimal Server Interface Server Core
  • 21. Server Core Minimal Server Interface Server with a GUI Desktop Experience Command Prompt a a a a Windows PowerShell/.NET a a a a Server Manager x a a a MMC x a a a Control Panel x x a a CPL Applets x Some a a Explorer Shell x x a a Taskbar x x a a System Tray x x a a Internet Explorer x x a a Help x x a a Themes x x x a Start screen (Metro) x x a a Metro-style apps x x x a Media Player x x x a
  • 22. • .Net Framework 4.5 • Active Directory (AD) • Active Directory Lightweight Directory Services (ADLDS) • Active Directory Certificate Services (ADCS) • DHCP Server • DNS Server • File Services • BITS Server • BranchCache • Hyper-V • Internet Information Services (IIS) • Printing Services • Streaming Media Services • iSCSI • Load Balancing • MPIO • qWave • Telnet • Unix Migration • SQL Server 2012
  • 24. Install-WindowsFeature Server-Gui-Mgmt-Infra Install-WindowsFeature Server-Gui-Shell Install-WindowsFeature Desktop-Experience Uninstall-WindowsFeature Server-GUI-Shell Uninstall-WindowsFeature Server-GUI-Shell - remove
  • 26. • Server Core installation option is created using Features on Demand
  • 27. • Files for <FeatureName> will be deleted from the windowswinsxs folder • Must use Windows PowerShell; remove is not available in Server Manager • Reinstallation sources • Location can be specified via Group Policy Uninstall-WindowsFeature <FeatureName> -Remove
  • 28. • Server Manager • Windows PowerShell Install-WindowsFeature <FeatureName> -Source <Source>
  • 30. • Windows PowerShell is a distributed automation engine with a scripting language and interactive shell(s) • Focuses on the business • Makes change safe through automation • Bridges the gap between operators and developers • Windows PowerShell 4.0 is available for the following operating systems: • Built-in • Windows Server 2012 R2 • Windows 8.1 • Downloadable for • Windows 7 SP1 • Windows Server 2008 R2 SP1
  • 32. • The challenge… • Reduce errors during configuration changes • Reduce the skill set required for authoring automation of complex solutions • Locate and import the numerous Windows PowerShell modules into each session • Reduce the syntax learning curve, especially for people new to Windows PowerShell • Bridge the gap between operators and developers • The Windows PowerShell 4.0 solution…. • Allows for use of tested scripts, reducing the number of errors that impact production environments • Improves efficiency due to the dramatic increase number of built-in cmdlets • Includes features designed to speed understanding and correct usage of syntax (Show-Command, Intellisense) • Makes excellent progress toward bridging the gap between operators and developers • Simplifies routine tasks!!
  • 34. • Get-Help • Provides a progress indicator when searching • Update-Help • With no parameters, it will use the Internet to update help for each module loaded into the current session • By default, can be used only once per day; override with –Force • Must be part of the Administrators group and Run As Administrator if updating core Windows PowerShell modules • Can be used to pull updates from the Internet or a local folder or file share • Save-Help • Downloads the help for modules and saves them to the local file or share • Organized into a single XML file accompanied by several CAB files, one for each language Update-Help -Force -Module [module name] -SourcePath -LiteralPath
  • 36. • Lets beginners run cmdlets from a dialog box • Running without parameters displays a list of available cmdlets, functions, aliases and scripts installed on the system • Can filter by module • Can search by name
  • 37. Snippets add reusable text to scripts and commands.
  • 39. Get-IseSnippet New-IseSnippet • Displays code snippets for selected commands • Enabled in ISE by selecting Start Snippets from the Edit Menu
  • 40. • Enable through the Add Roles and Features wizard in Server Manager Corporate Network Server 1 Server 2 Server 3 Web-based console user DMZ Windows PowerShell Web Access Gateway
  • 41. • Allow for reconnection to disconnected remote sessions • This example creates a new session on a remote server, stores data in that session, and then disconnects it while leaving the session running. The name of the running session is Server1Session. The local connection variable is $RemoteSession. • The following commands reconnect to the remote session (in this example, from the server where the session is still running) ↪ Enable-PSRemoting –Force ↪ $RemoteSession = New-PSSession –Name Server1Session –ComputerName Server1 ↪ Invoke-Command –Session $RemoteSession –ScriptBlock {$date = Get-Date } ↪ Disconnect-PSSession –session $RemoteSession ↪ Exit ↪ Get-PSSession –ComputerName Localhost ↪ $LocalSession = Connect-PSSession –ComputerName localhost –Name Server1Session ↪ Invoke-command –Session $LocalSession –Scriptblock { $date }
  • 42. 03 Corporate Resource Server 1 through Web-based console user DMZ Windows PowerShell Web Access Gateway
  • 43. • A set of long-running activities (in sequence or in parallel) that perform complex management tasks, such as multi-machine application provisioning • Typically started from a client computer • Like any other Windows PowerShell command, you can use Get-Command to discover them and Get-Help to learn how to use them • Authored using a Windows PowerShell script or the Visual Studio Workflow Designer (XAML) • Workflows survive system interruptions (reboots, network problems): suspend-job/ resume-job, persist state and metadata ↪ Workflow MyWorkflow {Write-Output -InputObject "Hello from Workflow!"} ↪ Get-Command –Name MyWorkflow –Syntax ↪ MyWorkflow
  • 44. • Improve management automation • Jobs execute based on triggers • Once, daily, weekly, at startup, at logon
  • 46. Automatic updates Server running Windows Server Update Services Automatic updates LAN Internet Test clients Microsoft Update website
  • 47. • Maintain operational efficiency • Overcome security vulnerabilities • Maintain stability of your production environment
  • 48. Update Management Phase 1: Assess • Set up a production environment that will support update management for routine and emergency scenarios Phase 3: Evaluate and Plan • Test updates in an environment that resembles, but is separate from, the production environment • Determine the tasks necessary to deploy updates into production, plan the update releases, build the releases, and then conduct acceptance testing of the releases Phase 4: Deploy •Approve and schedule update installations •Review the process after the deployment is complete Phase 4: Deploy • Approve and schedule update installations • Review the process after the deployment is complete Phase 2: Identify • Discover new updates in a convenient manner • Determine whether updates are relevant to the production environment Identify Evaluate and Plan Deploy Assess
  • 49. • Software requirements • Internet Information Services 6.0 or newer • Microsoft .NET Framework 2.0 or newer • Microsoft Management Console 3.0 • Microsoft Report Viewer Redistributable 2008 or newer • SQL Server 2012, SQL Server 2008, SQL Server 2005 SP2, or Windows Internal Database • Hardware requirements • 1.4 GHz or faster x64 processor • 2 GB of RAM or greater • 10 GB available disk space (40 GB or greater is recommended)
  • 50. Central patching of key hosts and management servers • Cluster-Aware Compliance – Ensures all hosts are patched to a baseline without VM downtime • WSUS – Integrates with System Center Virtual Machine Manager and Configuration Manager • Baselines – Admins define patches that are to be deployed for compliance. These baselines are assigned to hosts/servers • Scan for Compliance – Scan the hosts/management servers against baselines to determine compliance • Remediation – VMM orchestrates the patching of the servers, moving VMs as necessary with Live Migration
  • 53. Download evaluation software Download free Microsoft software trials today at the TechNet Evaluation Center. http://aka.ms/CampEval Learn more Boost your technical skills with free expert-led technical training from Microsoft Virtual Academy. http://aka.ms/CampMVAWS http://aka.ms/CampMVASC Get certified Get hired, get recognized, and get ahead with certifications from Microsoft. http://aka.ms/CampCertWS http://aka.ms/CampCertInfra Evaluate online Test Microsoft’s newest products and technologies in a virtual environment for free at the Microsoft Virtual Labs. http://aka.ms/CampVlabs
  • 55. Free product evaluations and deep technical content Expert-led, no cost, hands-on technical training events Free, expert-led, technical courses Download Microsoft software trials today. Find an IT Camp near you. Take a free online course. Technet.microsoft.com/evalcenter Technet.microsoft.com/globalitcamps microsoftvirtualacademy.com
  • 56. TechNet Evaluation Center IT Camps Microsoft Virtual Academy
  • 58. Technet.microsoft.com/evalcenter What At the TechNet Evaluation Center you can download free, trial versions of Microsoft software, with no feature limits. Dozens of trials are available – all at no cost. Learn more / Register Go to technet.microsoft.com/evalcenter Top Products/Technology • Windows Server 2012 • Office Professional Plus 2013 • Windows 8 Enterprise • Exchange Server 2012 • Windows Server 2012 • System Center 2012 SP 1 • Lync Server 2013
  • 59. Technet.microsoft.com/globalitcamps IT Camps are no cost, hands-on technical training events for IT professionals led by Microsoft experts, centered on the IT challenges you’re tackling in your environment today. • Windows Server 2012 • Windows 8 • Windows Azure • System Center 2012 SP 1 Go to technet.microsoft.com/globalitcampsNumber of IT Camps executed since July 575 Number of Students attended since July 13k What Learn more / RegisterBy the numbers (worldwide view) Covered Products/Technology