User Profile
cengizyilmaz
MCT
Joined Dec 01, 2020
User Widgets
Recent Discussions
Re: Get-MessageTrackingLog showing no results - Exchange 2013
anhtnt You say the recordings are in the file, and Tracking Log doesn't find them. This is very interesting. As a workaround, change the location of the message tracking log and restart Microsoft Exchange Active Directory Topology service.5.4KViews0likes1CommentRe: Get-MessageTrackingLog showing no results - Exchange 2013
anhtnt anhtnt Try Get-TransportServer | select MessageTracking* to see what the path is for you. Get-TransportServer | select MessageTracking* Have you restart your Exchange service and try to get the logs again? Try to restart the Microsoft Exchange Transport Log Search service and Microsoft Exchange Active Directory Topology service manually.5.7KViews0likes6CommentsRe: Exchange 2016 change time and date into future
reaper111 Hello, What is the version of CU? Can the system run on a VM and sync the clock update from there? Did you do GPO checks on the domain? If you are running on VMware, you need to do a right click on VMware tools. You have the" Synchronize Guest time with host " setting. If the box is checked, please remove this mark and try it. I want to help you. I had a problem similar to the problem you had when I was using Windows Server 2012 R2. I solved the problem with the commands I mentioned below. https://cengizyilmaz.net/domain-controller-ve-clientlar-arasinda-saat-senkronizasyonu/ If there is a time synchronization problem between DC and clients, you can solve the problem by following these steps. First, you need to find a PDC emulator. You can find PDC emulator with the following command. dsquery server -hasfsmo pdc Then follow the following command in PDC emulator. w32tm /config /update /syncfromflags:MANUAL /manualpeerlist:time.windows.com,0×1 In clients, you can also ensure synchronization by applying the following command. w32tm /resync /rediscover If the above does not work, try the following commands in PDC emulator. NET TIME /SETSNTP:time.windows.com NET STOP W32TIME NET START W32TIME W32TM /config /reliable:YES W32TM /resync /rediscover3.7KViews0likes2CommentsRe: Outlook Templates with Pictures
What is your Mail server? On-Prem Exchange, Exchange Online or Office 365? If you have heavy mail traffic, it is useful to use the help desk software for this process and you can get a detailed help desk report at the end of the month. If you have a budget problem, you can solve it with open Source software. But if you want to solve with outlook. First, you need to set up your mail groups and the necessary Title Information well. You need to plan which group and which title will give an automatic response. I think first create a topology. I can help you.3.9KViews0likes2CommentsRe: Force users to change their AD password
Marvin Oco Can you explain your problem a little more? Do they change it to Local, or do they become m login with SSLVPN? If you want to apply to a single user Set-ADUser -Identity -ChangePasswordAtLogon $true To apply for the OU you specify Import-Module ActiveDirectory Get-ADUser -Filter * -SearchBase “OU=TestOU,DC=TestDomain,DC=Local” | Set-ADUser -ChangePasswordAtLogon:$True If you want to make a batch, you can prepare a file such as the attached csv file and use the ps code below Import-Module ActiveDirectory Import-Csv “C:\Scripts\ADUsers.csv” | ForEach-Object {$samAccountName =$_.”samAccountName” Get-ADUser -Identity $samAccountName | Set-ADUser -ChangePasswordAtLogon:$True}21KViews1like0Comments
Recent Blog Articles
No content to show