How To Fix Microsoft Office Error 0xc0000005 in Windows

In this article will see some workarounds to fix error code, “0xc0000005”, which you may encounter with Microsoft Office product including Outlook for Windows. Error Message: This application was unable to start correctly (0xc0000005). Click OK to close the application. Generally, the application error code, “0xc0000005” indicates a memory access violation that means when your … Read more

PowerShell Script to List Installed Software

Open PowerShell and copy paste the below command: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize The above script will provide you a list of all your programs, complete with the version, name of the developer, and even the date you installed it. Check the below screen-shot. In order to export this … Read more

How to Fix Windows Error Code 0x80070005

In this article will see how to fix windows error code 0x80070005. The article divided into three parts as all three are related to windows error code 0x80070005 and their solutions, those are: Windows Update Error Code 0x80070005 Error code: 0x80070005 – “Something happened and this app couldn’t be installed. Please try again. Error code: … Read more

How to Solve – DcGetDcName(TIME_SERVER) call failed, error 1355

There can be two reason for this either Sysvol/Netlogon is missing or windows time service is not started. Quick resolution is changing time server: Open Registry Editor (regedit.exe) and configure the following registry entries: HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\Type How to configure an authoritative time server in Windows Server: https://support.microsoft.com/en-in/help/816042/how-to-configure-an-authoritative-time-server-in-windows-server This happens due to underlying communication problem between the … Read more

How to Check and Change the Domain and Forest Functional Level

You can easily check the domain and forest functional levels using bellow steps. Admin Tools Powershell Command Step 1. From Admin Tools Open the “Administrative Tools” under the menu you have to select “Active Directory Domains and Trusts” or “Active Directory Users and Computers“. Then right-click the root domain, and choose “Properties“. Under the “General” … Read more

How to Fix Error Code ‘0x800706ba’

Error code 0x800706ba is quite popular in windows 10. This can be seen in different situations like; When updating windows 10 RPC server is not available When a request is made to COM+ RPC server isn’t available in windows 10 backup When system can’t print to any device Major Causes of Error code 0x800706ba Corrupt … Read more

How to Fix Error Code ‘0x80004005’

Here we see some basic configuration changes that will usually solve ‘0x80004005’ error. However, I suggest you to follow the below method, and check if that helps. Check if the SMB 1.0 Feature is Enabled Start -> Control Panel -> Programs and Features Click “Turn Windows features on or off” Then scroll down to SMB … Read more

Solution for Error – Event ID 10016 – DistributedCOM

The following events logged on the system event logs running windows. In this article will see how to fix this issue. Source: Microsoft-Windows-DistributedCOM Event ID: 10016 Description: The machine-default permission settings do not grant Local Activation permission for the COM Server application with CLSID {C2F03A33-21F5-47FA-B4BB-156362A2F239} and APPID {316CDED5-E4AE-4B15-9113-7055D84DCC97} Source: Microsoft-Windows-DistributedCOM Event ID: 10016 Description: The … Read more

How to Audit Certificate services

Follow the below steps to Audit Certification Services: 1. On the CA server, you have to open the CA Properties and check all the options or some options according to our needs. For reference check the below image: 2. After that on the DC (Domain Controller), open Default Domain Policy object and enable the below … Read more

Using CMD & PowerShell to Find Last Boot Time Remotely

Here is a simple and short command that will help you tell the last boot time. CMD: SystemInfo /S $Server | find /i “Boot Time” Powershell Script: $Server = Read-Host -Prompt ‘Input the server name’ SystemInfo /S $Server | find /i “Boot Time” > C:\Users\$env:username\Desktop\Last_Boot-$Server.txt The above Powershell script will pop up and prompt you … Read more