Category Archives: My Windows

NETLOGON event 5807

The Ugly A routine check of the system log advised warnings related to the NETLOGON service. As this service is related to all remote network accesses to the DC servers, such an event must be carefully investigated. There is a … Continue reading

Posted in windows | Comments Off on NETLOGON event 5807

Windows Server – How to identify which domain controller authenticated a user

Have the logged on user launch the command prompt on the target computer. Type Set Logonserver the name of the domain controller that authenticated the user will be returned. See the figure below. Using echo %username% will allow you create a script to identify the authenticating … Continue reading

Posted in Active Directory, windows | Comments Off on Windows Server – How to identify which domain controller authenticated a user

sCONFIG

from cmd then type sconfig that will bring other small windows for server configuration

Posted in core | Comments Off on sCONFIG

windows resync time

Make sure that the Windows Time service is set to Automatic and that it is running. To sync the time with the domain controller, run the following commands in an administrative command window: w32tm /resync net time \\DC /set Where DC is the full domain name of the … Continue reading

Posted in command line of windows, My Windows | Comments Off on windows resync time

Exchange PowerShell Command Line

Check the free space available in the database Get-MailboxDatabase -Status | select Name, DatabaseSize, AvailableNewMailboxSpace Check for the stopped Exchange Server services Get-Service | Where-Object {$_.Name -Like ‘MSExchange*’ -and $_.Status -eq ‘Stopped’} Check mail flow –> Get-Queue

Posted in Exchange, PowerShell | Comments Off on Exchange PowerShell Command Line