Entradas

Complete remove Exchange 2010/2013 using ADSIEdit

Thanks to:  https://blog.dargel.at/ The need to remove an Exchange 2013 server using ADSIEdit could have several reasons. The method using ADSIEdit to remove an Exchange server should only be used carefully. The most common reasons are listed below: The deinstallation didn’t finish properly and left attributes or entries in Active Directory The Exchange server is permanent offline and Exchange should be removed An Exchange installation didn’t finish properly and the attributes and entries should be removed To remove the server open ADSI-Edit and go to configuration Navigate to this path: CN=Configuration,DC=DOMAIN,DC=LOCAL CN=Services ->; DELETE CN=Microsoft Exchange CN=Microsoft Exchange Autodiscover CN=Default naming context,DC=DOMAIN,DC=LOCAL ->; DELETE CN=Microsoft Exchange Security Groups CN=Microsoft Exchange Security Objects Additional steps: Hard Disk: On the server’s hard disk you’ve to DELETE the Exchange Server...

Change the default location for Exchange 2016 Queue Database

Imagen
Thanks to:  http://www.thatlazyadmin.com/ The default location for the Exchange Queue Database is in the Exchange install directory under TransportRoles. The location of the queue database and the queue database transaction logs is controlled by keys in the %ExchangeInstallPath%Bin\EdgeTransport.exe.config XML application configuration file. This file is associated with the Exchange Transport service. How do you change the location of the queue database and queue database transaction logs? To modify the default location, the EdgeTransport.exe.config xml file needs to be modified. Launch command prompt as administrator and run the following to open the edgetransport config file. 1 Notepad % ExchangeInstallPath % Bin \ EdgeTransport . exe . config Scroll down till you get to  “<appSettings>”  and modify the following keys. 1 2 3 < add key = "QueueDatabasePath" value = "<LocalPath>" / > ...

Convert User Mailbox to Shared Mailbox in Exchange 2016

Imagen
Thank to:  http://www.mustbegeek.com/ Log on to  Exchange 2016  and open  Exchange Management Shell (EMS) . Type following cmdlet to convert a user mailbox to shared mailbox. [PS] C:\Windows\system32>Set-Mailbox AJones -Type shared To view the shared mailbox, log on to EAC. Go to recipients > shared. Now, open the properties of the shared mailbox by double-clicking it and assign permission to users. After assigning permission click save. In this way you can convert a user mailbox to shared mailbox. Now, if you open  Active Directory Users and Computers  snap-in, you will see the user  AJones  is now disabled. That’s because shared mailbox have disabled user account and you can’t login to it directly. You can also convert shared mailbox back to user mailbox. Type following cmdlet in EMS. [PS] C:\Windows\system32>Set-Mailbox AJones -Type regular You may have to reset user password before you enter above cmdlet if you ar...

Configure Legal Notices On Domain Computers Using Group Policy

Imagen
Thanks to:  https://www.prajwaldesai.com/ In this post we will use group policy to configure the legal notices on the domain computers. It is possible to configure Windows Server to display a message to users when they log on. When you configure legal notice, the legal notice message appears when the user hits CTRL+ALT+DEL. While I was working as system admin, I got the task to configure a logon banner. This was for  Windows Server 2008 R2  and I am sure the steps covered in this post should work with next versions of server releases. Most of all you can configure legal notices on domain computers in two ways :- You can write a fancy script and execute it at the every logon Configure legal notice using a group policy. In my opinion the second method is very easy. You can use the message display functionality to personalize the logon process, provide news or  information , and for other similar purposes. The message appears after the user presses CTRL+ALT...

Modify Group Policy Refresh Interval For Windows Computers

Imagen
Thanks to:  https://www.prajwaldesai.com/ In this post I will show you the steps to modify the Group Policy refresh interval for windows computers. By default the GP refresh interval is 90 minutes. This steps covered in this post is especially relevant to system admins. However if you want to change or modify this refresh interval time then you can do it via  group policy . The policy setting to change the group policy refresh interval time is available for both users and computers. You don’t have to configure it both rather you can modify just one of them. I am talking about the policy setting “ Set Group Policy refresh interval for computers “. This policy setting specifies how often Group Policy for computers is updated while the computer is in use (in the background). This setting also specifies a background update rate only for Group Policies in the Computer Configuration folder. The  Group Policy refresh interval  for computers policy also lets you spe...