November 2024
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

Categories

November 2024
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

WHAT IS STORAGE SPACES DIRECT IN WINDOWS 2016?

WHAT IS STORAGE SPACES DIRECT IN WINDOWS 2016?

Windows 2016 will continue to focus on Software Defined Storage. In Windows 2012 Storage spaces was introduced as a tool that would allow pooling together disk resources to create a large and redundant pool of disk space (Similar to Raid but without certain limitations-Such as all disks […]

powershell commands

PowerShell is the command line included with Windows. It is a very handy tool for doing simple tasks without the GUI. In this guide, Getting a Process Rather than using the Task Manager or a similar tool, you can use PowerShell to retrieve information about a specific process and kill it, if needed. This will […]

Windows Server 2012 R2 between Core and Full Installations

Windows Server 2012 changes all of that. We now can switch between core and full installation, and we can do so on-the-fly. There’s really no more reason why, you should be using a full installation for a server, unless it’s due to an installed application’s or role’s requirements. Unfortunately, there are still a few roles […]

Installing Exchange Server 2016

The following section describes a step-by-step guide for the installation of Microsoft® Exchange Server 2016. The installation considers a single server deployment of Exchange Server 2016 with the Mailbox role. Additional details of the topology and architecture of the lab environment which was used in the installation is described here;

 

1. Operating System […]

Adding Windows Server 2012 DC in an existing Windows Server 2012

Adding Windows Server 2012 DC in an existing Windows Server 2012

As part of the series of Windows Server 2012 deployment, I will be showing us how to promote a Windows Server 2012 member server into a domain controller in an existing Windows Server 2012 R2 domain. Lets begin the journey 🙂 Exciting.

Requirements:

– […]

Install 2012 r2 domain controller

Install 2012 r2 domain controller # # Windows PowerShell script for AD DS Deployment #

Import-Module ADDSDeployment Install-ADDSForest ` -CreateDnsDelegation:$false ` -DatabasePath “C:\Windows\NTDS” ` -DomainMode “Win2012R2” ` -DomainName “rmohan.com” ` -DomainNetbiosName “RMOHAN” ` -ForestMode “Win2012R2” ` -InstallDns:$true ` -LogPath “C:\Windows\NTDS” ` -NoRebootOnCompletion:$false ` -SysvolPath “C:\Windows\SYSVOL” ` -Force:$true

[…]

Reset A Forgotten Windows Host Administrator Password

Reset A Forgotten Windows Host Administrator Password

 

Introduction

In this how-to we will walk you through Resetting your Forgotten Windows Host Administrator Password. With so many different passwords that we use on a daily basis, email, desktop, servers, etc., we tend to forget some of the important ones that are crucial. People pay […]

Install oracle 12c on 2012 server

[…]

Install Tomcat 8 , IIS 8 on 2012 Server

Change windows hostname from command line

cmd (command): netdom renamecomputer %COMPUTERNAME% /Newname “NEW-NAME”

powershell (windows 2008/2012): netdom renamecomputer “$env:COMPUTERNAME” /Newname “NEW-NAME”

After you have downloaded and installed the Java Development Kit (JDK) in Windows, you must set the JAVA_HOME environment variable to point to the JDK installation directory.

You must follow these steps to […]

How to Delete a Windows Service

Deleting a Service

The first thing you’ll need to do is identify the name of the service, so open up Services through the start menu or control panel, and then find the service in the list that you want to delete.

 

You’ll want to open up the properties by double-clicking on the service name, […]