SlideShare a Scribd company logo
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
Ad

More Related Content

What's hot (20)

MCSA 70-412 Chapter 12
MCSA 70-412 Chapter 12MCSA 70-412 Chapter 12
MCSA 70-412 Chapter 12
Computer Networking
 
MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05
Computer Networking
 
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLAKoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
Tobias Koprowski
 
Liberty Deep Dive
Liberty Deep DiveLiberty Deep Dive
Liberty Deep Dive
WASdev Community
 
Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07
gameaxt
 
Liberty management
Liberty managementLiberty management
Liberty management
WASdev Community
 
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
Gabriella Davis
 
MCSA 70-412 Chapter 10
MCSA 70-412 Chapter 10MCSA 70-412 Chapter 10
MCSA 70-412 Chapter 10
Computer Networking
 
Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11
gameaxt
 
Active Directory Upgrade
Active Directory UpgradeActive Directory Upgrade
Active Directory Upgrade
Spiffy
 
20410 b 00
20410 b 0020410 b 00
20410 b 00
Bradley Higgins
 
MCSA 70-412 Chapter 11
MCSA 70-412 Chapter 11MCSA 70-412 Chapter 11
MCSA 70-412 Chapter 11
Computer Networking
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12
gameaxt
 
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
WASdev Community
 
MCSA 70-412 Chapter 09
MCSA 70-412 Chapter 09MCSA 70-412 Chapter 09
MCSA 70-412 Chapter 09
Computer Networking
 
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
Information Technology
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections Upgrade
Gabriella Davis
 
Software Distribution
Software DistributionSoftware Distribution
Software Distribution
Dell 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 Group
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
David McGeough
 
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLAKoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
KoprowskiT_SQLSat152_Bulgaria_HighAvailabilityOfSQLintheContextOfSLA
Tobias Koprowski
 
Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07
gameaxt
 
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
Gabriella Davis
 
Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11Microsoft Offical Course 20410C_11
Microsoft Offical Course 20410C_11
gameaxt
 
Active Directory Upgrade
Active Directory UpgradeActive Directory Upgrade
Active Directory Upgrade
Spiffy
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12
gameaxt
 
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
WASdev 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 Delhi
Information Technology
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections Upgrade
Gabriella Davis
 
Software Distribution
Software DistributionSoftware Distribution
Software Distribution
Dell 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 Group
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
David McGeough
 

Viewers also liked (20)

Wsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For BeginnersWsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For Beginners
jsnover1
 
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
jsnover1
 
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
Shane Hoey
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical Overview
Amit Gatenyo
 
Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2
Michael Rüefli
 
windows server 2012 internal monitoring tools
windows server 2012 internal monitoring toolswindows server 2012 internal monitoring tools
windows server 2012 internal monitoring tools
24x7 server monitoring
 
Windows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvementsWindows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvements
Susantha Silva
 
Storage Options in Windows Server 2012
Storage Options in Windows Server 2012Storage Options in Windows Server 2012
Storage Options in Windows Server 2012
Lai Yoong Seng
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012
Aidan 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 platform
Motty 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 2012
Alex 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 Endpoints
Chris 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 R2
Tarek Amer
 
Introduction To Windows Power Shell
Introduction To Windows Power ShellIntroduction To Windows Power Shell
Introduction To Windows Power Shell
Microsoft 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 Atidan
David 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 Traps
Jeffery Hicks
 
Building an Empire with PowerShell
Building an Empire with PowerShellBuilding an Empire with PowerShell
Building an Empire with PowerShell
Will Schroeder
 
Introduction To Power Shell
Introduction To Power ShellIntroduction To Power Shell
Introduction To Power Shell
Ivan Suhinin
 
Wsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For BeginnersWsv315 Windows Power Shell For Beginners
Wsv315 Windows Power Shell For Beginners
jsnover1
 
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
jsnover1
 
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
Shane Hoey
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical Overview
Amit Gatenyo
 
Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2Storage Enhancements in Windows 2012 R2
Storage Enhancements in Windows 2012 R2
Michael Rüefli
 
windows server 2012 internal monitoring tools
windows server 2012 internal monitoring toolswindows server 2012 internal monitoring tools
windows server 2012 internal monitoring tools
24x7 server monitoring
 
Windows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvementsWindows 2012 Storage & HYPER-V improvements
Windows 2012 Storage & HYPER-V improvements
Susantha Silva
 
Storage Options in Windows Server 2012
Storage Options in Windows Server 2012Storage Options in Windows Server 2012
Storage Options in Windows Server 2012
Lai Yoong Seng
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012
Aidan 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 platform
Motty 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 2012
Alex 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 Endpoints
Chris 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 R2
Tarek Amer
 
Introduction To Windows Power Shell
Introduction To Windows Power ShellIntroduction To Windows Power Shell
Introduction To Windows Power Shell
Microsoft 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 Atidan
David 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 Traps
Jeffery Hicks
 
Building an Empire with PowerShell
Building an Empire with PowerShellBuilding an Empire with PowerShell
Building an Empire with PowerShell
Will Schroeder
 
Introduction To Power Shell
Introduction To Power ShellIntroduction To Power Shell
Introduction To Power Shell
Ivan Suhinin
 
Ad

Similar to 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
Sarah Dutkiewicz
 
Using Nano Server for Hyper-V Training 0
Using Nano Server for Hyper-V Training 0Using Nano Server for Hyper-V Training 0
Using Nano Server for Hyper-V Training 0
Mike Mihm
 
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
Sarah Dutkiewicz
 
Patterns
Patterns Patterns
Patterns
Prolifics
 
Bcit win8 ws2012 session
Bcit win8 ws2012 sessionBcit win8 ws2012 session
Bcit win8 ws2012 session
Information and Communications Technology Council
 
IUG ATL PC 9.5
IUG ATL PC 9.5IUG ATL PC 9.5
IUG ATL PC 9.5
Rizwan Mohammed
 
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
Nordic Infrastructure Conference
 
PowerShell Plus v4.7 Overview
PowerShell Plus v4.7 OverviewPowerShell Plus v4.7 Overview
PowerShell Plus v4.7 Overview
Richard 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 Server
WinOps Conf
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the Basics
Ulrich Krause
 
System center seminar presentation
System center seminar presentationSystem center seminar presentation
System center seminar presentation
C/D/H Technology Consultants
 
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
Denis 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 Audit
ncspa
 
Serena Release Management approach and solutions
Serena Release Management approach and solutionsSerena Release Management approach and solutions
Serena Release Management approach and solutions
Softmart
 
PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopers
Bryan Cafferky
 
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
Fernando Tomlinson, CISSP, MBA
 
Datasheet was pluginforrd
Datasheet was pluginforrdDatasheet was pluginforrd
Datasheet was pluginforrd
MidVision
 
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
Andrew 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 Deploy
Claudia Ring
 
A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0A Lap Around PowerShell 3.0
A Lap Around PowerShell 3.0
Sarah Dutkiewicz
 
Using Nano Server for Hyper-V Training 0
Using Nano Server for Hyper-V Training 0Using Nano Server for Hyper-V Training 0
Using Nano Server for Hyper-V Training 0
Mike Mihm
 
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
Sarah 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 configuration
Nordic Infrastructure Conference
 
PowerShell Plus v4.7 Overview
PowerShell Plus v4.7 OverviewPowerShell Plus v4.7 Overview
PowerShell Plus v4.7 Overview
Richard 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 Server
WinOps Conf
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the Basics
Ulrich 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 alternative
Denis 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 Audit
ncspa
 
Serena Release Management approach and solutions
Serena Release Management approach and solutionsSerena Release Management approach and solutions
Serena Release Management approach and solutions
Softmart
 
PowerShellForDBDevelopers
PowerShellForDBDevelopersPowerShellForDBDevelopers
PowerShellForDBDevelopers
Bryan Cafferky
 
Datasheet was pluginforrd
Datasheet was pluginforrdDatasheet was pluginforrd
Datasheet was pluginforrd
MidVision
 
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
Andrew 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 Deploy
Claudia Ring
 
Ad

Recently uploaded (20)

FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 
Not So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java WebinarNot So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java Webinar
Tier1 app
 
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
Andre Hora
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
ssuserb14185
 
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
F-Secure Freedome VPN 2025 Crack Plus Activation  New VersionF-Secure Freedome VPN 2025 Crack Plus Activation  New Version
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
saimabibi60507
 
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software DevelopmentSecure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Shubham Joshi
 
Adobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest VersionAdobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest Version
kashifyounis067
 
Exploring Code Comprehension in Scientific Programming: Preliminary Insight...
Exploring Code Comprehension  in Scientific Programming:  Preliminary Insight...Exploring Code Comprehension  in Scientific Programming:  Preliminary Insight...
Exploring Code Comprehension in Scientific Programming: Preliminary Insight...
University of Hawai‘i at Mānoa
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRYLEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
NidaFarooq10
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)
sh607827
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdfMicrosoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
TechSoup
 
Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
steaveroggers
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 
FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 
Not So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java WebinarNot So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java Webinar
Tier1 app
 
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
What Do Contribution Guidelines Say About Software Testing? (MSR 2025)
Andre Hora
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
ssuserb14185
 
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
F-Secure Freedome VPN 2025 Crack Plus Activation  New VersionF-Secure Freedome VPN 2025 Crack Plus Activation  New Version
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
saimabibi60507
 
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software DevelopmentSecure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Shubham Joshi
 
Adobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest VersionAdobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest Version
kashifyounis067
 
Exploring Code Comprehension in Scientific Programming: Preliminary Insight...
Exploring Code Comprehension  in Scientific Programming:  Preliminary Insight...Exploring Code Comprehension  in Scientific Programming:  Preliminary Insight...
Exploring Code Comprehension in Scientific Programming: Preliminary Insight...
University of Hawai‘i at Mānoa
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRYLEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
LEARN SEO AND INCREASE YOUR KNOWLDGE IN SOFTWARE INDUSTRY
NidaFarooq10
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)
sh607827
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdfMicrosoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
TechSoup
 
Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
steaveroggers
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 

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