Monday, April 25, 2016

Create installation media for IFM

There are times, when installing domain controller, you may want to choose install from media option to start with, remote sites Domain Controllers installation. Perhaps bandwidth is the concern. In similar situations we will prepare IFM to use. Log into your domain controller as an administrator. Open Command prompt with your administrator credentials. Click start on the run menu type cmd.exe and press enter and accept any UAC prompt. At the Administrator command prompt Type:

  1. Ntdsutil
  2. activate instance ntds
  3. IFM
  4. create sysvol full <Drive>:\<InstallationMediaFolder>

image

image

You can use Robocopy to move IFM media to destination server to prepare install from media on windows 2012 R2 environment.

image

You can download Robocopy script from TechNet Library

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Wednesday, April 6, 2016

Create Virtual Host via PowerShell

This simple PowerShell script will assist you to configure virtual machines on your HyperV Server. Script will create virtual host , create virtual hard disks and mount the ISO file. All you have to do is , start the VM and follow install wizard to complete the settings.

image

image

 

image

image

 

<#    
.NOTES
#==============================================
# Script: Create_VM_App_Server_NR.ps1 
# Created With:ISE 3.0 
# Author: Casey Dedeal 
# Date: 04/06/2016 22:58:41 
# Organization:  ETC SOLUTIONS
# File Name: Create_VM_App_Server_NR.ps1 
# Comments:  First Version
#=============================================
.DESCRIPTION
        Create_VM_App_Server_NR.ps1
==============================================
Change these variables
$path = "A:\HyperV_" ( Change the Path )
$ISOPath = "A:\ISO\en_windows_server_2012_r2_x64_dvd_2707946.ISO"
==============================================

image

https://gallery.technet.microsoft.com/scriptcenter/PowerShell-createHyperV-59fe68cd

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Saturday, February 27, 2016

Installing Windows 2012 R2 Domain Controller Step by Step Guidelines

Purpose of this document is to demonstrate installing and configuring Windows 2012 R2 Domain Controllers into Existing Forest/Domain Environment.

1. ADDING SERVER TO DOMAIN

1. Logon to Windows 2012 R2 Server with Administrator account and provide your credentials.

2. Click start, locate PowerShell and double click on it

3. In the PowerShell window type | Hostname| and press enter

clip_image002

4. This is default Server name came with installation

5. We will rename the server and restart it with following PS command

6. On the PS window type | Rename-Computer -NewName DC4 -Restart | and press enter

clip_image004

7. Logon to Server with administrator credentials, Open PS with administrator credentials and type |Hostname| and press enter to verify the new name.

8. On the PS type | NCPA.CPL | and press enter.

9. Locate network interface card make a right click, rename it to PROD and go to properties. Un-select TCP/IPv6

10. Select TCP/IPv4, click properties, select use the following IP address and assign Static IP address

clip_image006

Note: The Primary DNS Server is set to, one of the available Domain controller in the environment.

11. Close Network interface card configuration and open PowerShell and type | Lookup |and press enter

12. Verify valid domain controller is configured.

clip_image008

13. Now it is time to add the server into domain, Server has been named so far and we have configured with static IP address and pointed to valid Domain Controller on TCP/IP Properties with Primary DNS Configuration

14. Open PowerShell and type following command, when you are asked to supply credentials, you need to provide it as Domain\Administrator and the proper password. After joining to domain, server will re-start.

$Domain = “TekPros”

Add-Computer -DomainName $DomainName -Restart

clip_image010

15. Log back into “Domain”, provide your administrator credentials

clip_image012

Now server is prepped and we can move forward adding required futures to be Domain Controller

2.PREPARING SERVER, ADDING REQUIRED FUTURES

1. Log back into Server, Open PowerShell, on the PowerShell type | ServerManager | and press enter

2. Click manage and select add roles and futures

3. Click Next | Role based or future based installation | selected and click next | Select server from pool | selected

4. Select Server from pool and click next | click add futures |

clip_image014

5. Select DNS Server and click add futures | Next| Group Policy management | selected

6. Click | Next | Next | Next | and click Install

7. Required Roles has been added, now server is ready for promotions

3.PROMOTE SERVER TO BE DOMAIN CONTROLLER

1. From recently opened ServerManager window, click on top notifications section

2. Select | Promote this server to a domain controller |

clip_image016

3. Deployment Configuration Menu, | Add a domain controller to existing domain | selected

4. Domain is also selected, Domain administrator account credentials are selected

clip_image018

5. Click Next, | Global Catalog | selected, | Site name | select AD Site you wish to place this domain controller | Type DSRM password | click Next

clip_image020

6. Click Next twice, and now you have option to select what Domain Controller you would like to replicate from

clip_image022

7. Click next

clip_image024

8. Now select the database, log files and SYSVOL location

9. Click Next twice

clip_image026

10. Click Install

11. Once the replication is completed |. DIT Database | you can open site and services by typing | Dssite.msc | and locate the domain controller.

clip_image028

You can also download a copy from below link
http://1drv.ms/1oPBQcu

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Sunday, February 14, 2016

Configure ISE Profile For More Efficient Scripting

Do you want your ISE to be more efficient, when writing scripts and getting your daily work done? If your answer is “yes” here is simple profile script to assist you. Download from TechNet Scripting Center.
https://gallery.technet.microsoft.com/scriptcenter/ISE-Profile-Setup-659ed86d
You can simply add more, make sure you replace the server names to make it fit to your environment. Download above profile script and add below adds-on.

# Connect Exchange 2010 Remote PowerShell
$psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Add(
  "Connect to Exchange 2010",
    {
        $s = New-PSSession -ConfigurationName Microsoft.Exchange `
        -ConnectionUri
http://mail1.TekPros.com/PowerShell/ `
        -Authentication Kerberos
        Import-PSSession $s
    },
  "Control+Alt+E"
)

# Connect Lync Remote PowerShell
$psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Add(
  "Connect to Lync Remote PowerShell",
    {
     $lync_S = New-PSSession -ConnectionUri
https://LyncServer.TekPros.com/ocspowershell `
               -SessionOption $lyncOptions `
               -Authentication NegotiateWithImplicitCredential `
               -Authentication Kerberos
     Import-PSSession $lync_S
    },
  "Control+Alt+L"
)

image

 

 

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Wednesday, February 10, 2016

Windows 2012 R2 Deploy Certificate Authority Step by Step Part-1

  • Log on to <Your_Windows_2012_R2_Server> as a domain administrator.
  • Click Start, | PowerShell| Type "ServerManager" , press enter 
  • Click Add roles | next | leave default

clip_image001

  • Click | Next

clip_image002

  • Select | Active Directory Certificate Services

clip_image003

  • Add required Futures | Press twice Next

clip_image004

  • Click Next again | Select Certificate Authority | CA Web Enrolment

clip_image005

  • Next | Install

clip_image006

  • Go back to Server Manager | Post Deployment Configuration

clip_image007

  • Next

clip_image008

  • Select | Certificate Authority | CA Web Enrolment

clip_image009

  • Select | Enterprise CA | Next

clip_image010

  • Select | Root CA | Next

clip_image011

  • Select | Create a new Private Key | Next

clip_image012

  • Select | RSA # Microsoft Software Key Storage Provider | Key Length 4096 | SHA256

clip_image013

  • Click Next | Accept default

clip_image014

  • Accept Default | Click Next

clip_image015

  • Accept Defaults | Click Next

clip_image016

  • Click | Configure

clip_image017

  • Results page | Click Close

clip_image018

Part 1 is completed.

MS link

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter

Friday, January 29, 2016

VMware Workstation This virtual machine appears to be in use.

If you are running your own LAB with VMWare workstation and getting the erros “ This  virtual machine apperas to be in use” here is qucik solution.

image_thumb

If you try to take the ownership of the virtual host, you will receive “Could not open virtual machine …” warnings and it will ask you if you want to remove it from library. Which for obvious reasons you would not want to do that

image_thumb2

Open the virtual machine folder and locate the folders ends wih .LCK

image_thumb3

You will need to delete them……

image_thumb4

If you try to take the ownership of the virtual host, you will receive “Could not open virtual machine …” warnings and it will ask you if you want to remove it from library. Which for obvious reasons you would not want to do that

After deletion you will noticed the Virtual host will start with no issues. What are these folders and files in them for ? The running VM machnine will lock the files to prevent conflics and consistency problems on the virtual disks, if not they could get corrupted.The lock files gets created on the same directory as VMDK files. If you like to read more here is the article.

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Sunday, January 24, 2016

Moving and Seizing FSMO Roles Via PowerShell

In Active directory forest, there are five FSMO roles that are assigned to one or more domain controllers. Two of these FSMO roles are forest wide and it can only be seen at Forest level. Three of the FSMO roles are domain wide.

Schema Master FSMO Role

Responsible for performing updates to the directory schema. Schema Master Role can process updates to the directory schema. Once the Schema update is complete, it is replicated from the schema master to all other DCs in the directory. There is only one schema master per directory.

Domain Naming Master FSMO Role

The domain naming master FSMO role holder is the DC responsible for making changes to the forest-wide domain name space of the directory. Domain Name Master DC is can add or remove a domain from the directory. It can also add or remove cross references to domains in external directories.

RID Master FSMO Role

The RID master FSMO role holder is the single DC responsible for processing RID Pool requests from all DCs within a given domain. It is also responsible for removing an object from its domain and putting it in another domain during an object move.

When a DC creates a security principal object such as a user or group, it attaches a unique Security ID (SID) to the object. This SID consists of a domain SID (the same for all SIDs created in a domain), and a relative ID (RID) that is unique for each security principal SID created in a domain.

Each Windows DC in a domain is allocated a pool of RIDs that it is allowed to assign to the security principals it creates. When a DC's allocated RID pool falls below a threshold, that DC issues a request for additional RIDs to the domain's RID master. The domain RID master responds to the request by retrieving RIDs from the domain's unallocated RID pool and assigns them to the pool of the requesting DC. There is one RID master per domain in a directory.

PDC Emulator FSMO Role

The PDC emulator is necessary to synchronize time in an enterprise. Windows includes the W32Time (Windows Time) time service that is required by the Kerberos authentication protocol. All Windows-based computers within an enterprise use a common time. The purpose of the time service is to ensure that the Windows Time service uses a hierarchical relationship that controls authority and does not permit loops to ensure appropriate common time usage.

The PDC emulator of a domain is authoritative for the domain. The PDC emulator at the root of the forest becomes authoritative for the enterprise, and should be configured to gather the time from an external source. All PDC FSMO role holders follow the hierarchy of domains in the selection of their in-bound time partner.

In a Windows domain, the PDC emulator role holder retains the following functions:

Password changes performed by other DCs in the domain are replicated preferentially to the PDC emulator.

Authentication failures that occur at a given DC in a domain because of an incorrect password are forwarded to the PDC emulator before a bad password failure message is reported to the user.

Account lockout is processed on the PDC emulator. Any lockout notification is sent to PDC immediately

Windows clients (workstations and member servers) and down-level clients that have installed the distributed services client package do not perform directory writes (such as password changes) preferentially at the DC that has advertised itself as the PDC; they use any DC for the domain.

Password changes performed by other DCs in the domain are replicated preferentially to the PDC emulator.

If a logon authentication fails at a given DC in a domain due to a bad password, the DC will forward the authentication request to the PDC emulator to validate the request against the most current password. If the PDC reports an invalid password to the DC, the DC will send back a bad password failure message to the user.

All domain controllers which receives an incorrect authentication request will poll the PDC Emulator as a “second opinion” before rejecting the user. (PDC always knows the most recently modified passwords)

Account lockout is processed on the PDC emulator. Any account lockout is immediately sent as a notification to the PDC Emulator.

Infrastructure FSMO Role

When an object in one domain is referenced by another object in another domain, it represents the reference by the GUID, the SID (for references to security principals), and the DN of the object being referenced. The infrastructure FSMO role holder is the DC responsible for updating an object's SID and distinguished name in a cross-domain object reference.

NOTE: The Infrastructure Master (IM) role should be held by a domain controller that is not a Global Catalog server(GC). If the Infrastructure Master runs on a Global Catalog server it will stop updating object information because it does not contain any references to objects that it does not hold. This is because a Global Catalog server holds a partial replica of every object in the forest. As a result, cross-domain object references in that domain will not be updated and a warning to that effect will be logged on that DC's event log.

If all the domain controllers in a domain also host the global catalog, all the domain controllers have the current data, and it is not important which domain controller holds the infrastructure master role.

 

Moving and Seizing FSMO roles:

Before exploring with PowerShell make sure you understand the difference in between moving the FSMO roles compared to Seizing them. Moving, both DC’s involved are alive and willingly to give up and accept the new role. Changes to. DIT database replicated among the domain controllers. Seizing involves the current FSMO role owner is no longer available and its role forcibly moved to another available DC. When you move forcibly FSMO roles (-Force) you cannot bring the DC back online as it would create issues.

image

PS C:\> Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole SchemaMaster

PS C:\> Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole DomainNamingMaster

PS C:\> Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole PDCEmulator

PS C:\> Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole RIDMaster

PS C:\> Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole InfrastructureMaster

Moving All FSMO Roles , is much easier

PDC Emulator – 0

RID Master – 1

Infrastructure Master – 2

Schema Master – 3

Domain Naming Master – 4

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRoles 0,1,2,3,4

clip_image002[4]

Seizing FSMO Roles:

Once last time, be very cautious when using –Force (Seizing) option

Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole PDCEmulator -Force

Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole RIDMaster -Force

Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole InfrastructureMaster -Force

Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole SchemaMaster -Force

Move-ADDirectoryServerOperationMasterRole -Identity DC2 -OperationMasterRole DomainNamingMaster -Force

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 0

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 1

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 2

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 3

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 4

Move-ADDirectoryServerOperationMasterRole -Identity DC2 –OperationMasterRole 5

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)

Active Directory Interview Questions Part 1

New year and new challenge, perhaps your current contract is not doing so well and you have decided to move on. If you are going to head up for an interview you might want to take your time and look at the questions and answers I have posted online. Purpose of these questions to improve your chance getting a new job, perhaps push you to face with reality. As I do interviews with my peers most of the time, I wanted to share few tips to help and assist with interview process. If these questions will challenge you, you must invest time on your Active Directory knowledge and make sure you are up to current. I consider most o these questions basic knowledge.

Getting to Know Your Basics

This basic guidelines, questions and answers will provide you knowledge which should assist with your interview.
You should study and get much better, deeper knowledge when it comes to Active Directory.

Pointers:
Dress up decent on your interview, look clean this always helps, promotes positive energy.

Don’t go to interview tired, you need to be fresh.

Make multiple copy of your resume and take it with you, when you sit down in the interview room, hand over your resume to people who don’t have them.

Your answers need to be brief and professional if you are calming to be Senior Engineer.

When you are asked to provide more comprehensive information, provide technical details.

It is perfectly okay to say “I do not know” I will look it up and get back to you. Do not “BS” Most likely the person who is asking you the question do know the correct answer.

If you are asked to rate your skill set, scale from 1 to 10, 1 being weak, and 10 is strong” rate yourself always in humble way. Most experience and smart administrators and Engineers will rate themselves solid 7, instead of 10.

At the end of the interview, when you are asked, “Do you have any questions to us” you must show some interest and ask questions if you want the job

Good Luck with your interview and here is the download link for Interview Questions

clip_image002

As professional courtesy, please leave your comments and once again good luck with your interview.

Oz Casey, Dedeal (MVP North America)
MCITP (EMA), MCITP (SA)
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)
https://twitter.com/Message_Talk (Twitter)