SlideShare ist ein Scribd-Unternehmen logo
1 von 42
Downloaden Sie, um offline zu lesen
Frokost seminar




Olav Tvedt
Consigliore
STEP Member, MVP Setup & Deployment
Agenda
•   Nyheter:
    - Hvor er det mest å hente
    - Hvor får du raskest utbytte
•   Windows Server 2012 og Windows 8 klienter
    - Direct Access
    - Tablet
    - Hvordan forbedre IT hverdagen for bruker og IT-avdeling
•   Er du klar for oppgradering
    - Hva må du tenke på
    - Er du kompatibel?
Nyheter i Windows Server 2012
Active Directory nyheter

• Slutt på Dcpromo og Adprep
• Forenklet management
• Active Directory Windows PowerShell History
  Viewer
• Virtualiserings støtte
   - Kloning
   - GenerationID

             http://technet.microsoft.com/en-us/library/hh831477.aspx
Active Directory nyheter

• Active Directory-based Activation (AD BA)
• Dynamic Access Control (DAC)
• Recycle Bin User Interface
• Fine-Grained Password Policy



             http://technet.microsoft.com/en-us/library/hh831477.aspx
DHCP nyheter

• DHCP failover
• PBA (Policy based assignment)
• Poweshell
  - 103 cmdlets

           http://technet.microsoft.com/en-us/library/jj200226.aspx
DHCP Powershell eksempler
IP Address Management (IPAM)

Discovers:
- Domain Controllers
- DHCP Servers
- DNS Servers


            http://technet.microsoft.com/en-us/library/jj200214.aspx
IP Address Management (IPAM)




            http://technet.microsoft.com/en-us/library/jj200214.aspx
Management
• Remote Management
• Multiserver View
• Role and feature deployment
• Powershell (2,400 cmdlets)
• Task Manager
  - Tabs
  - Search Online
  - Monitor and Control
• Nic Teaming
Management
Storage Changes
- Faster and more reliable
- Disk De-Duplication
- ODX (Offline Data Transfer)
- Storage Spaces and Storage Pools
- Check Disk runs FAST
- Bitlocker on clusted disks

DirectAccess
- Support for non-IPv6 server resources
- Don’t require PKI
Management av Windows Server 2008 og 2008 R2

• .NET Framework 4
• Windows Management Framework 3.0
• Knowledge Base article 2682011
  - For å hente ytelses data
http://technet.microsoft.com/en-us/library/hh831456.aspx
Fil server nyheter

• Disk deduplisering
• SMB 3.0




                     http://support.microsoft.com/kb/2709568
Hyper-V nyheter

MTUG Torsdag kl 17:00




            http://technet.microsoft.com/en-us/library/hh831410.aspx
1                   2                3                   4             5

Hyper-V              Shared-                              Cluster
Network              nothing live        Massive          enhancemen          Hyper-V
Virtualization       migration           scale            ts                  Replica


                 6                   7                8                   9             10

                                                          Runtime             Hyper-V
Hardware             Virtual Fibre       Guest NUMA       memory              network
offloading           Channel             support          configuration       switch
Maximum number
                                                                        Improveme
                                           Windows 2008   Windows
System    Resource                         R2             Server 2012
                                                                         nt factor

          Logical processors on hardware   64             320              5×
          Physical memory                  1 TB           4 TB             4×
Host      Virtual processors per host      512            1,024            2×
          Virtual processors per virtual
          machine
                                           4              64              16×
          Memory per virtual machine       64 GB          1 TB            16×

Virtual
          Active virtual machines          384            1,024           2.7×
machine   Virtual disk size                2 TB           64 TB           32×
          Nodes                            16             64               4×
Cluster   Virtual machines                 1,000          4,000            4×
Windows Server 2012 og Windows 8 klienter
Selecting the version you need

• Windows RT
• Windows 8
• Windows 8 Pro
• Windows 8 Enterprise
  - Volume License only!
            http://en.wikipedia.org/wiki/Windows_8_editions
Windows 8 Enterprise

Only available in Enterprise version
- AppLocker
- Windows To Go
- DirectAccess
- BranchCache

           http://en.wikipedia.org/wiki/Windows_8_editions
Hvorfor Bruke Windows 8 Tablet?
       •   Security
       •   Active Directory
       •   Patching
       •   Antivirus
       •   Firewall
       •   Management
       •   Active Directory
       •   Group Policy
       •   System Center suite
       •   User Experience
       •   Metro Style
       •   DirectAccess
       •   Local Apps/Virtual App
Group Policy

Control with WMI
Policies
Preferences
Helpful WMI Strings
Windows 8
select * from Win32_OperatingSystem WHERE Version like '6.2%' AND
ProductType='1'

Windows 7
select * from Win32_OperatingSystem WHERE Version like '6.1%' AND
ProductType='1'

32 Bit OS
SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth = '32'

64 Bit OS
SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth ='64'

           http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
Helpful WMI Strings
Only 32 Bit Windows 8
select * from Win32_OperatingSystem WHERE Version like '6.2%' AND
ProductType='1' AND AddressWidth = '32'

Only 64 Bit Windows 8
select * from Win32_OperatingSystem WHERE Version like '6.2%' AND
ProductType='1' AND AddressWidth = '64'

Lenovo Windows 8 computers
select * from Win32_OperatingSystem WHERE Version like ‘6.2%’ AND
ProductType=‘1’ AND Manufacturer = ‘LENOVO’


           http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
Helpful WMI Strings
Only Windows Clients
select * from Win32_OperatingSystem WHERE ProductType='1'

Only Windows Servers (No Domain Controllers)
Select * from WIN32_OperatingSystem where ProductType='3'

Only Domain Controllers
Select * from WIN32_OperatingSystem where ProductType='2'

Windows Servers And Domain Controllers
Select * from WIN32_OperatingSystem where ProductType='2' and ProductType='3'

           http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
Helpful WMI Strings
Kun bærbare:
select * from Win32_ComputerSystem WHERE PCSystemType= 2
Og
Select * from Win32_OperatingSystem WHERE (ProductType = 3) OR (Version LIKE
'6.2%' AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR
OperatingSystemSKU = 72 OR OperatingSystemSKU = 84)) OR (Version LIKE '6.1%'
AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR OperatingSystemSKU
= 70 OR OperatingSystemSKU = 1 OR OperatingSystemSKU = 28 OR
OperatingSystemSKU = 71))




           http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
Group Policy For The IT Department

• Block access to Store
• Change password on local Administrator
• BGinfo
Group Policy For The Users

• Shortcuts on desktop
• Internet Explorer
• File History
• Printer
• Stations
Er du klar for oppgradering?
Microsoft Assessment and Planning Toolkit
• Inventory
• Assessment
• Reporting
MAP Client Firewall Configuration
• GP Setting:
• “Computer ConfigurationPoliciesConfigurationAdministrative TemplatesNetworkNetwork
  ConnectionsWindows FirewallDomain ProfileWindows Firewall: Allow remote administration exception”
• GP Value:
• “Enabled”




     http://social.technet.microsoft.com/wiki/contents/articles/8657.map-prepare-the-environment-
     wmi.aspx
MAP Client Firewall Configuration


   GP Setting:
   “Computer ConfigurationPoliciesWindows SettingsSecurity SettingsLocal PoliciesNetwork
   access: Sharing and security model for local accounts”
   GP Value:
   “Classic – local users authenticate as themselves”




   http://social.technet.microsoft.com/wiki/contents/articles/8657.map-prepare-the-environment-
   wmi.aspx
Generelt

• Nyinstallasjon ikke oppgrader
• Applikasjon support?
• IIS 8
• IP addresse

   http://www.windowsservercatalog.com/
   http://www.microsoft.com/en-us/download/details.aspx?id=27416
Active Directory

• Active Directory nivå er relatert til DC’er
• Rydd før oppgradering!!!
• Sjekk etter tjenester som peker mot DC’er
• DHCP Export/Import kun fra 2008
WORKSHOPS – DESIGN – RÅDGIVING - KOM I GANG – TOTAL PAKKE




Olav Tvedt
Consigliore
STEP Member, MVP Setup & Deployment

Weitere ähnliche Inhalte

Was ist angesagt?

Accelerating Data Management - Dave Fellinger - RDAP12
Accelerating Data Management - Dave Fellinger - RDAP12 Accelerating Data Management - Dave Fellinger - RDAP12
Accelerating Data Management - Dave Fellinger - RDAP12 ASIS&T
 
Windows server 8 and hyper v
Windows server 8 and hyper vWindows server 8 and hyper v
Windows server 8 and hyper vSusantha Silva
 
Microsoft Windows Server 2012 R2 Hyper V server overview
Microsoft Windows Server 2012 R2 Hyper V server overviewMicrosoft Windows Server 2012 R2 Hyper V server overview
Microsoft Windows Server 2012 R2 Hyper V server overviewaboobakar sanjar
 
Hyper-V Virtual Machine Mobility
Hyper-V Virtual Machine MobilityHyper-V Virtual Machine Mobility
Hyper-V Virtual Machine MobilityPaulo Freitas
 
Virtualization Seminar Beekelaar Dublin 18jan2007
Virtualization Seminar Beekelaar Dublin 18jan2007Virtualization Seminar Beekelaar Dublin 18jan2007
Virtualization Seminar Beekelaar Dublin 18jan2007rajsri
 
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...Codemotion
 
гибридная облачная модель на базе System center 2012 sp1
гибридная облачная модель на базе System center 2012 sp1гибридная облачная модель на базе System center 2012 sp1
гибридная облачная модель на базе System center 2012 sp1Expolink
 
Using Microsoft Virtualization Technologies: Today and ...
Using Microsoft Virtualization Technologies: Today and ...Using Microsoft Virtualization Technologies: Today and ...
Using Microsoft Virtualization Technologies: Today and ...webhostingguy
 
Openstorage with OpenStack, by Bradley
Openstorage with OpenStack, by BradleyOpenstorage with OpenStack, by Bradley
Openstorage with OpenStack, by BradleyHui Cheng
 
Top 15 Tips for vGPU Success - Part 3-3
Top 15 Tips for vGPU Success - Part 3-3Top 15 Tips for vGPU Success - Part 3-3
Top 15 Tips for vGPU Success - Part 3-3Lee Bushen
 
Top Troubleshooting Tips and Techniques for Citrix XenServer Deployments
Top Troubleshooting Tips and Techniques for Citrix XenServer DeploymentsTop Troubleshooting Tips and Techniques for Citrix XenServer Deployments
Top Troubleshooting Tips and Techniques for Citrix XenServer DeploymentsDavid McGeough
 
Citrix PVS Advanced memory and storage considerations for provisioning services
Citrix PVS Advanced memory and storage considerations for provisioning servicesCitrix PVS Advanced memory and storage considerations for provisioning services
Citrix PVS Advanced memory and storage considerations for provisioning servicesNuno Alves
 
E2E PVS Technical Overview Stephane Thirion
E2E PVS Technical Overview Stephane ThirionE2E PVS Technical Overview Stephane Thirion
E2E PVS Technical Overview Stephane Thirionsthirion
 
Building Blocks of the Private Cloud - Compute
Building Blocks of the Private Cloud - ComputeBuilding Blocks of the Private Cloud - Compute
Building Blocks of the Private Cloud - ComputeDaniel Mar
 

Was ist angesagt? (18)

Accelerating Data Management - Dave Fellinger - RDAP12
Accelerating Data Management - Dave Fellinger - RDAP12 Accelerating Data Management - Dave Fellinger - RDAP12
Accelerating Data Management - Dave Fellinger - RDAP12
 
Windows server 8 and hyper v
Windows server 8 and hyper vWindows server 8 and hyper v
Windows server 8 and hyper v
 
Microsoft Windows Server 2012 R2 Hyper V server overview
Microsoft Windows Server 2012 R2 Hyper V server overviewMicrosoft Windows Server 2012 R2 Hyper V server overview
Microsoft Windows Server 2012 R2 Hyper V server overview
 
Hyper-V Virtual Machine Mobility
Hyper-V Virtual Machine MobilityHyper-V Virtual Machine Mobility
Hyper-V Virtual Machine Mobility
 
OpenDBCamp Virtualization
OpenDBCamp VirtualizationOpenDBCamp Virtualization
OpenDBCamp Virtualization
 
Virtualization Seminar Beekelaar Dublin 18jan2007
Virtualization Seminar Beekelaar Dublin 18jan2007Virtualization Seminar Beekelaar Dublin 18jan2007
Virtualization Seminar Beekelaar Dublin 18jan2007
 
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
 
Improvements in Failover Clustering in Windows Server 2012
Improvements in Failover Clustering in Windows Server 2012Improvements in Failover Clustering in Windows Server 2012
Improvements in Failover Clustering in Windows Server 2012
 
гибридная облачная модель на базе System center 2012 sp1
гибридная облачная модель на базе System center 2012 sp1гибридная облачная модель на базе System center 2012 sp1
гибридная облачная модель на базе System center 2012 sp1
 
Using Microsoft Virtualization Technologies: Today and ...
Using Microsoft Virtualization Technologies: Today and ...Using Microsoft Virtualization Technologies: Today and ...
Using Microsoft Virtualization Technologies: Today and ...
 
Openstorage with OpenStack, by Bradley
Openstorage with OpenStack, by BradleyOpenstorage with OpenStack, by Bradley
Openstorage with OpenStack, by Bradley
 
Windows Azure IaaS
Windows Azure IaaSWindows Azure IaaS
Windows Azure IaaS
 
Top 15 Tips for vGPU Success - Part 3-3
Top 15 Tips for vGPU Success - Part 3-3Top 15 Tips for vGPU Success - Part 3-3
Top 15 Tips for vGPU Success - Part 3-3
 
Top Troubleshooting Tips and Techniques for Citrix XenServer Deployments
Top Troubleshooting Tips and Techniques for Citrix XenServer DeploymentsTop Troubleshooting Tips and Techniques for Citrix XenServer Deployments
Top Troubleshooting Tips and Techniques for Citrix XenServer Deployments
 
Citrix PVS Advanced memory and storage considerations for provisioning services
Citrix PVS Advanced memory and storage considerations for provisioning servicesCitrix PVS Advanced memory and storage considerations for provisioning services
Citrix PVS Advanced memory and storage considerations for provisioning services
 
E2E PVS Technical Overview Stephane Thirion
E2E PVS Technical Overview Stephane ThirionE2E PVS Technical Overview Stephane Thirion
E2E PVS Technical Overview Stephane Thirion
 
Introduction
IntroductionIntroduction
Introduction
 
Building Blocks of the Private Cloud - Compute
Building Blocks of the Private Cloud - ComputeBuilding Blocks of the Private Cloud - Compute
Building Blocks of the Private Cloud - Compute
 

Andere mochten auch

Microsoft Days Bergen: Cloud experience
Microsoft Days Bergen: Cloud experienceMicrosoft Days Bergen: Cloud experience
Microsoft Days Bergen: Cloud experienceOlav Tvedt
 
Windows 8 news for the enterprise
Windows 8 news for the enterpriseWindows 8 news for the enterprise
Windows 8 news for the enterpriseOlav Tvedt
 
Whats new in microsoft desktop optimization package
Whats new in microsoft desktop optimization packageWhats new in microsoft desktop optimization package
Whats new in microsoft desktop optimization packageOlav Tvedt
 
Win 10 frokost seminar
Win 10 frokost seminarWin 10 frokost seminar
Win 10 frokost seminarOlav Tvedt
 
Frokost seminar windows 8 februar 2013
Frokost seminar   windows 8 februar 2013Frokost seminar   windows 8 februar 2013
Frokost seminar windows 8 februar 2013Olav Tvedt
 
Nic going totally cloud
Nic going totally cloudNic going totally cloud
Nic going totally cloudOlav Tvedt
 
IT Puls Tromsø - Windows Server 2012 Og Windows 8
IT Puls Tromsø - Windows Server 2012 Og Windows 8IT Puls Tromsø - Windows Server 2012 Og Windows 8
IT Puls Tromsø - Windows Server 2012 Og Windows 8Olav Tvedt
 
#EVRYWhatsNext EMS Slide Deck
#EVRYWhatsNext EMS Slide Deck#EVRYWhatsNext EMS Slide Deck
#EVRYWhatsNext EMS Slide DeckOlav Tvedt
 

Andere mochten auch (9)

Microsoft Days Bergen: Cloud experience
Microsoft Days Bergen: Cloud experienceMicrosoft Days Bergen: Cloud experience
Microsoft Days Bergen: Cloud experience
 
Windows 8 news for the enterprise
Windows 8 news for the enterpriseWindows 8 news for the enterprise
Windows 8 news for the enterprise
 
Whats new in microsoft desktop optimization package
Whats new in microsoft desktop optimization packageWhats new in microsoft desktop optimization package
Whats new in microsoft desktop optimization package
 
Win 10 frokost seminar
Win 10 frokost seminarWin 10 frokost seminar
Win 10 frokost seminar
 
Frokost seminar windows 8 februar 2013
Frokost seminar   windows 8 februar 2013Frokost seminar   windows 8 februar 2013
Frokost seminar windows 8 februar 2013
 
Nic going totally cloud
Nic going totally cloudNic going totally cloud
Nic going totally cloud
 
IT Puls Tromsø - Windows Server 2012 Og Windows 8
IT Puls Tromsø - Windows Server 2012 Og Windows 8IT Puls Tromsø - Windows Server 2012 Og Windows 8
IT Puls Tromsø - Windows Server 2012 Og Windows 8
 
Bsm mw10
Bsm mw10Bsm mw10
Bsm mw10
 
#EVRYWhatsNext EMS Slide Deck
#EVRYWhatsNext EMS Slide Deck#EVRYWhatsNext EMS Slide Deck
#EVRYWhatsNext EMS Slide Deck
 

Ähnlich wie Frokost seminar windows server 2012

Microsoft dagen windows server 2012
Microsoft dagen   windows server 2012Microsoft dagen   windows server 2012
Microsoft dagen windows server 2012Olav Tvedt
 
Private cloud server virtualization
Private cloud server virtualization Private cloud server virtualization
Private cloud server virtualization Pierre-Juan Labeyrie
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical OverviewAmit Gatenyo
 
System Center 2012 SP1 - Overview - EPC Group
System Center 2012 SP1 - Overview - EPC GroupSystem Center 2012 SP1 - Overview - EPC Group
System Center 2012 SP1 - Overview - EPC GroupEPC Group
 
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012Harold Wong
 
Are you ready for Windows 8 - Nicconf 2013
Are you ready for Windows 8 - Nicconf 2013Are you ready for Windows 8 - Nicconf 2013
Are you ready for Windows 8 - Nicconf 2013Olav Tvedt
 
The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012Lai Yoong Seng
 
Hyper-V Infrastructure
Hyper-V InfrastructureHyper-V Infrastructure
Hyper-V InfrastructurePaulo Freitas
 
Windows 8 fuzz
Windows 8 fuzzWindows 8 fuzz
Windows 8 fuzzOlav Tvedt
 
2015 02-10 xen server master class
2015 02-10 xen server master class2015 02-10 xen server master class
2015 02-10 xen server master classCitrix
 
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009eLiberatica
 
Nutanix Technology Bootcamp
Nutanix Technology BootcampNutanix Technology Bootcamp
Nutanix Technology BootcampICT-Partners
 
Windows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro'sWindows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro'sAmit Gatenyo
 
Virtualizacao de Servidores - Windows
Virtualizacao de Servidores - WindowsVirtualizacao de Servidores - Windows
Virtualizacao de Servidores - WindowsSergio Maia
 
Server Virtualization using Hyper-V
Server Virtualization using Hyper-VServer Virtualization using Hyper-V
Server Virtualization using Hyper-VMd Yousup Faruqu
 
VMWARE VS MS-HYPER-V
VMWARE VS MS-HYPER-VVMWARE VS MS-HYPER-V
VMWARE VS MS-HYPER-VDavid Ramirez
 
Microsoft Server Virtualization and Private Cloud
Microsoft Server Virtualization and Private CloudMicrosoft Server Virtualization and Private Cloud
Microsoft Server Virtualization and Private CloudMd Yousup Faruqu
 
What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2Aidan Finn
 

Ähnlich wie Frokost seminar windows server 2012 (20)

Microsoft dagen windows server 2012
Microsoft dagen   windows server 2012Microsoft dagen   windows server 2012
Microsoft dagen windows server 2012
 
Server 2016 sneak peek
Server 2016 sneak peekServer 2016 sneak peek
Server 2016 sneak peek
 
Private cloud server virtualization
Private cloud server virtualization Private cloud server virtualization
Private cloud server virtualization
 
Windows 2012 Technical Overview
Windows 2012 Technical OverviewWindows 2012 Technical Overview
Windows 2012 Technical Overview
 
System Center 2012 SP1 - Overview - EPC Group
System Center 2012 SP1 - Overview - EPC GroupSystem Center 2012 SP1 - Overview - EPC Group
System Center 2012 SP1 - Overview - EPC Group
 
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012
Upgrading from Windows Server 2008 / 2008 R2 to Windows Server 2012
 
Are you ready for Windows 8 - Nicconf 2013
Are you ready for Windows 8 - Nicconf 2013Are you ready for Windows 8 - Nicconf 2013
Are you ready for Windows 8 - Nicconf 2013
 
Bcit win8 ws2012 session
Bcit win8 ws2012 sessionBcit win8 ws2012 session
Bcit win8 ws2012 session
 
The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012
 
Hyper-V Infrastructure
Hyper-V InfrastructureHyper-V Infrastructure
Hyper-V Infrastructure
 
Windows 8 fuzz
Windows 8 fuzzWindows 8 fuzz
Windows 8 fuzz
 
2015 02-10 xen server master class
2015 02-10 xen server master class2015 02-10 xen server master class
2015 02-10 xen server master class
 
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009
"Clouds on the Horizon Get Ready for Drizzle" by David Axmark @ eLiberatica 2009
 
Nutanix Technology Bootcamp
Nutanix Technology BootcampNutanix Technology Bootcamp
Nutanix Technology Bootcamp
 
Windows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro'sWindows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro's
 
Virtualizacao de Servidores - Windows
Virtualizacao de Servidores - WindowsVirtualizacao de Servidores - Windows
Virtualizacao de Servidores - Windows
 
Server Virtualization using Hyper-V
Server Virtualization using Hyper-VServer Virtualization using Hyper-V
Server Virtualization using Hyper-V
 
VMWARE VS MS-HYPER-V
VMWARE VS MS-HYPER-VVMWARE VS MS-HYPER-V
VMWARE VS MS-HYPER-V
 
Microsoft Server Virtualization and Private Cloud
Microsoft Server Virtualization and Private CloudMicrosoft Server Virtualization and Private Cloud
Microsoft Server Virtualization and Private Cloud
 
What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2
 

Mehr von Olav Tvedt

MVP Dagen 2021 - Money for nothing
MVP Dagen 2021 - Money for nothingMVP Dagen 2021 - Money for nothing
MVP Dagen 2021 - Money for nothingOlav Tvedt
 
Brk30010 - With so many different ways to secure data across the Office 365 p...
Brk30010 - With so many different ways to secure data across the Office 365 p...Brk30010 - With so many different ways to secure data across the Office 365 p...
Brk30010 - With so many different ways to secure data across the Office 365 p...Olav Tvedt
 
SharePoint Conference - Secure the data, not the device
SharePoint Conference - Secure the data, not the deviceSharePoint Conference - Secure the data, not the device
SharePoint Conference - Secure the data, not the deviceOlav Tvedt
 
NIC - Securing one drive and its content
NIC - Securing one drive and its contentNIC - Securing one drive and its content
NIC - Securing one drive and its contentOlav Tvedt
 
NIC - Lets put the business into one drive
NIC - Lets put the business into one driveNIC - Lets put the business into one drive
NIC - Lets put the business into one driveOlav Tvedt
 
Securing the weakest link adding security layers while keeping the use
Securing the weakest link adding security layers while keeping the useSecuring the weakest link adding security layers while keeping the use
Securing the weakest link adding security layers while keeping the useOlav Tvedt
 
The Windows 10 tips you wished you knew last week
The Windows 10 tips you wished you knew last weekThe Windows 10 tips you wished you knew last week
The Windows 10 tips you wished you knew last weekOlav Tvedt
 
What’s new for SMBs in fall creators update
What’s new for SMBs in fall creators updateWhat’s new for SMBs in fall creators update
What’s new for SMBs in fall creators updateOlav Tvedt
 
Let's put the business into onedrive for business
Let's put the business into onedrive for businessLet's put the business into onedrive for business
Let's put the business into onedrive for businessOlav Tvedt
 
Security As A Service
Security As A ServiceSecurity As A Service
Security As A ServiceOlav Tvedt
 
MTUG - På tide med litt oversikt og kontroll?
MTUG - På tide med litt oversikt og kontroll?MTUG - På tide med litt oversikt og kontroll?
MTUG - På tide med litt oversikt og kontroll?Olav Tvedt
 
ALSO Roadshow - Azure and EMS presentation
ALSO Roadshow - Azure and EMS presentation ALSO Roadshow - Azure and EMS presentation
ALSO Roadshow - Azure and EMS presentation Olav Tvedt
 
Microsoft Windows 10 Bootcamp - Windows as a service
Microsoft Windows 10 Bootcamp - Windows as a serviceMicrosoft Windows 10 Bootcamp - Windows as a service
Microsoft Windows 10 Bootcamp - Windows as a serviceOlav Tvedt
 
Microsoft Windows 10 Bootcamp - MDT Offline media
Microsoft Windows 10 Bootcamp - MDT Offline mediaMicrosoft Windows 10 Bootcamp - MDT Offline media
Microsoft Windows 10 Bootcamp - MDT Offline mediaOlav Tvedt
 
Microsoft Windows 10 Bootcamp - Active directory
Microsoft Windows 10 Bootcamp - Active directoryMicrosoft Windows 10 Bootcamp - Active directory
Microsoft Windows 10 Bootcamp - Active directoryOlav Tvedt
 
Modern Workplace Summit 2015 - Management
Modern Workplace Summit 2015 - ManagementModern Workplace Summit 2015 - Management
Modern Workplace Summit 2015 - ManagementOlav Tvedt
 
Modern Workplace Summit 2015 - Surface and offline media
Modern Workplace Summit 2015 - Surface and offline mediaModern Workplace Summit 2015 - Surface and offline media
Modern Workplace Summit 2015 - Surface and offline mediaOlav Tvedt
 
Ms @ evry rs june 2015 slidehide
Ms @ evry rs june 2015 slidehideMs @ evry rs june 2015 slidehide
Ms @ evry rs june 2015 slidehideOlav Tvedt
 
Ignite - The 15 minute deploying surface (pro) guide
Ignite - The 15 minute deploying surface (pro) guideIgnite - The 15 minute deploying surface (pro) guide
Ignite - The 15 minute deploying surface (pro) guideOlav Tvedt
 

Mehr von Olav Tvedt (20)

MVP Dagen 2021 - Money for nothing
MVP Dagen 2021 - Money for nothingMVP Dagen 2021 - Money for nothing
MVP Dagen 2021 - Money for nothing
 
Brk30010 - With so many different ways to secure data across the Office 365 p...
Brk30010 - With so many different ways to secure data across the Office 365 p...Brk30010 - With so many different ways to secure data across the Office 365 p...
Brk30010 - With so many different ways to secure data across the Office 365 p...
 
SharePoint Conference - Secure the data, not the device
SharePoint Conference - Secure the data, not the deviceSharePoint Conference - Secure the data, not the device
SharePoint Conference - Secure the data, not the device
 
NIC - Securing one drive and its content
NIC - Securing one drive and its contentNIC - Securing one drive and its content
NIC - Securing one drive and its content
 
NIC - Lets put the business into one drive
NIC - Lets put the business into one driveNIC - Lets put the business into one drive
NIC - Lets put the business into one drive
 
Securing the weakest link adding security layers while keeping the use
Securing the weakest link adding security layers while keeping the useSecuring the weakest link adding security layers while keeping the use
Securing the weakest link adding security layers while keeping the use
 
The Windows 10 tips you wished you knew last week
The Windows 10 tips you wished you knew last weekThe Windows 10 tips you wished you knew last week
The Windows 10 tips you wished you knew last week
 
What’s new for SMBs in fall creators update
What’s new for SMBs in fall creators updateWhat’s new for SMBs in fall creators update
What’s new for SMBs in fall creators update
 
Let's put the business into onedrive for business
Let's put the business into onedrive for businessLet's put the business into onedrive for business
Let's put the business into onedrive for business
 
Security As A Service
Security As A ServiceSecurity As A Service
Security As A Service
 
Hackcon 2017
Hackcon 2017Hackcon 2017
Hackcon 2017
 
MTUG - På tide med litt oversikt og kontroll?
MTUG - På tide med litt oversikt og kontroll?MTUG - På tide med litt oversikt og kontroll?
MTUG - På tide med litt oversikt og kontroll?
 
ALSO Roadshow - Azure and EMS presentation
ALSO Roadshow - Azure and EMS presentation ALSO Roadshow - Azure and EMS presentation
ALSO Roadshow - Azure and EMS presentation
 
Microsoft Windows 10 Bootcamp - Windows as a service
Microsoft Windows 10 Bootcamp - Windows as a serviceMicrosoft Windows 10 Bootcamp - Windows as a service
Microsoft Windows 10 Bootcamp - Windows as a service
 
Microsoft Windows 10 Bootcamp - MDT Offline media
Microsoft Windows 10 Bootcamp - MDT Offline mediaMicrosoft Windows 10 Bootcamp - MDT Offline media
Microsoft Windows 10 Bootcamp - MDT Offline media
 
Microsoft Windows 10 Bootcamp - Active directory
Microsoft Windows 10 Bootcamp - Active directoryMicrosoft Windows 10 Bootcamp - Active directory
Microsoft Windows 10 Bootcamp - Active directory
 
Modern Workplace Summit 2015 - Management
Modern Workplace Summit 2015 - ManagementModern Workplace Summit 2015 - Management
Modern Workplace Summit 2015 - Management
 
Modern Workplace Summit 2015 - Surface and offline media
Modern Workplace Summit 2015 - Surface and offline mediaModern Workplace Summit 2015 - Surface and offline media
Modern Workplace Summit 2015 - Surface and offline media
 
Ms @ evry rs june 2015 slidehide
Ms @ evry rs june 2015 slidehideMs @ evry rs june 2015 slidehide
Ms @ evry rs june 2015 slidehide
 
Ignite - The 15 minute deploying surface (pro) guide
Ignite - The 15 minute deploying surface (pro) guideIgnite - The 15 minute deploying surface (pro) guide
Ignite - The 15 minute deploying surface (pro) guide
 

Kürzlich hochgeladen

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Kürzlich hochgeladen (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

Frokost seminar windows server 2012

  • 1. Frokost seminar Olav Tvedt Consigliore STEP Member, MVP Setup & Deployment
  • 2. Agenda • Nyheter: - Hvor er det mest å hente - Hvor får du raskest utbytte • Windows Server 2012 og Windows 8 klienter - Direct Access - Tablet - Hvordan forbedre IT hverdagen for bruker og IT-avdeling • Er du klar for oppgradering - Hva må du tenke på - Er du kompatibel?
  • 3. Nyheter i Windows Server 2012
  • 4. Active Directory nyheter • Slutt på Dcpromo og Adprep • Forenklet management • Active Directory Windows PowerShell History Viewer • Virtualiserings støtte - Kloning - GenerationID http://technet.microsoft.com/en-us/library/hh831477.aspx
  • 5. Active Directory nyheter • Active Directory-based Activation (AD BA) • Dynamic Access Control (DAC) • Recycle Bin User Interface • Fine-Grained Password Policy http://technet.microsoft.com/en-us/library/hh831477.aspx
  • 6.
  • 7. DHCP nyheter • DHCP failover • PBA (Policy based assignment) • Poweshell - 103 cmdlets http://technet.microsoft.com/en-us/library/jj200226.aspx
  • 8.
  • 10. IP Address Management (IPAM) Discovers: - Domain Controllers - DHCP Servers - DNS Servers http://technet.microsoft.com/en-us/library/jj200214.aspx
  • 11. IP Address Management (IPAM) http://technet.microsoft.com/en-us/library/jj200214.aspx
  • 12. Management • Remote Management • Multiserver View • Role and feature deployment • Powershell (2,400 cmdlets) • Task Manager - Tabs - Search Online - Monitor and Control • Nic Teaming
  • 13. Management Storage Changes - Faster and more reliable - Disk De-Duplication - ODX (Offline Data Transfer) - Storage Spaces and Storage Pools - Check Disk runs FAST - Bitlocker on clusted disks DirectAccess - Support for non-IPv6 server resources - Don’t require PKI
  • 14. Management av Windows Server 2008 og 2008 R2 • .NET Framework 4 • Windows Management Framework 3.0 • Knowledge Base article 2682011 - For å hente ytelses data
  • 16. Fil server nyheter • Disk deduplisering • SMB 3.0 http://support.microsoft.com/kb/2709568
  • 17. Hyper-V nyheter MTUG Torsdag kl 17:00 http://technet.microsoft.com/en-us/library/hh831410.aspx
  • 18. 1 2 3 4 5 Hyper-V Shared- Cluster Network nothing live Massive enhancemen Hyper-V Virtualization migration scale ts Replica 6 7 8 9 10 Runtime Hyper-V Hardware Virtual Fibre Guest NUMA memory network offloading Channel support configuration switch
  • 19. Maximum number Improveme Windows 2008 Windows System Resource R2 Server 2012 nt factor Logical processors on hardware 64 320 5× Physical memory 1 TB 4 TB 4× Host Virtual processors per host 512 1,024 2× Virtual processors per virtual machine 4 64 16× Memory per virtual machine 64 GB 1 TB 16× Virtual Active virtual machines 384 1,024 2.7× machine Virtual disk size 2 TB 64 TB 32× Nodes 16 64 4× Cluster Virtual machines 1,000 4,000 4×
  • 20.
  • 21. Windows Server 2012 og Windows 8 klienter
  • 22. Selecting the version you need • Windows RT • Windows 8 • Windows 8 Pro • Windows 8 Enterprise - Volume License only! http://en.wikipedia.org/wiki/Windows_8_editions
  • 23. Windows 8 Enterprise Only available in Enterprise version - AppLocker - Windows To Go - DirectAccess - BranchCache http://en.wikipedia.org/wiki/Windows_8_editions
  • 24. Hvorfor Bruke Windows 8 Tablet? • Security • Active Directory • Patching • Antivirus • Firewall • Management • Active Directory • Group Policy • System Center suite • User Experience • Metro Style • DirectAccess • Local Apps/Virtual App
  • 25. Group Policy Control with WMI Policies Preferences
  • 26. Helpful WMI Strings Windows 8 select * from Win32_OperatingSystem WHERE Version like '6.2%' AND ProductType='1' Windows 7 select * from Win32_OperatingSystem WHERE Version like '6.1%' AND ProductType='1' 32 Bit OS SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth = '32' 64 Bit OS SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth ='64' http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
  • 27. Helpful WMI Strings Only 32 Bit Windows 8 select * from Win32_OperatingSystem WHERE Version like '6.2%' AND ProductType='1' AND AddressWidth = '32' Only 64 Bit Windows 8 select * from Win32_OperatingSystem WHERE Version like '6.2%' AND ProductType='1' AND AddressWidth = '64' Lenovo Windows 8 computers select * from Win32_OperatingSystem WHERE Version like ‘6.2%’ AND ProductType=‘1’ AND Manufacturer = ‘LENOVO’ http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
  • 28. Helpful WMI Strings Only Windows Clients select * from Win32_OperatingSystem WHERE ProductType='1' Only Windows Servers (No Domain Controllers) Select * from WIN32_OperatingSystem where ProductType='3' Only Domain Controllers Select * from WIN32_OperatingSystem where ProductType='2' Windows Servers And Domain Controllers Select * from WIN32_OperatingSystem where ProductType='2' and ProductType='3' http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
  • 29. Helpful WMI Strings Kun bærbare: select * from Win32_ComputerSystem WHERE PCSystemType= 2 Og Select * from Win32_OperatingSystem WHERE (ProductType = 3) OR (Version LIKE '6.2%' AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR OperatingSystemSKU = 72 OR OperatingSystemSKU = 84)) OR (Version LIKE '6.1%' AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR OperatingSystemSKU = 70 OR OperatingSystemSKU = 1 OR OperatingSystemSKU = 28 OR OperatingSystemSKU = 71)) http://olavtvedt.blogspot.no/2011/10/controlling-your-group-policies-with.html
  • 30.
  • 31. Group Policy For The IT Department • Block access to Store • Change password on local Administrator • BGinfo
  • 32.
  • 33. Group Policy For The Users • Shortcuts on desktop • Internet Explorer • File History • Printer • Stations
  • 34.
  • 35. Er du klar for oppgradering?
  • 36. Microsoft Assessment and Planning Toolkit • Inventory • Assessment • Reporting
  • 37. MAP Client Firewall Configuration • GP Setting: • “Computer ConfigurationPoliciesConfigurationAdministrative TemplatesNetworkNetwork ConnectionsWindows FirewallDomain ProfileWindows Firewall: Allow remote administration exception” • GP Value: • “Enabled” http://social.technet.microsoft.com/wiki/contents/articles/8657.map-prepare-the-environment- wmi.aspx
  • 38. MAP Client Firewall Configuration GP Setting: “Computer ConfigurationPoliciesWindows SettingsSecurity SettingsLocal PoliciesNetwork access: Sharing and security model for local accounts” GP Value: “Classic – local users authenticate as themselves” http://social.technet.microsoft.com/wiki/contents/articles/8657.map-prepare-the-environment- wmi.aspx
  • 39.
  • 40. Generelt • Nyinstallasjon ikke oppgrader • Applikasjon support? • IIS 8 • IP addresse http://www.windowsservercatalog.com/ http://www.microsoft.com/en-us/download/details.aspx?id=27416
  • 41. Active Directory • Active Directory nivå er relatert til DC’er • Rydd før oppgradering!!! • Sjekk etter tjenester som peker mot DC’er • DHCP Export/Import kun fra 2008
  • 42. WORKSHOPS – DESIGN – RÅDGIVING - KOM I GANG – TOTAL PAKKE Olav Tvedt Consigliore STEP Member, MVP Setup & Deployment