Skip to main content

Posts

windows-7-medal-of-honor-allied-assault-crashes-to-the-desktop

When you run Mohaa.exe the screen goes blank and display error message “ Medal of Honor   Allied Assault(TM) has stopped working .” I tried to run Mohaa.exe with different windows compatibility mode but not success. The only solution which worked is listed below: 1:   download zip file  opengl32  , extract it and place in Mohaa main directory. (Check now the game if still doesn't work then follow point 2) 2: Apply DirectX 9.0c (Jun 10) using this  link  or you can find any other by searching in google.com. This solution has been verified by many other PC users and it works fine on Windows 7,8,10 .
Recent posts

How to check your laptop battery health

If you are not sure if Laptop is functioning properly or it need to be replaced, this can easily be identified by following below steps. 1: Open Windows PowerShell (Run as Administrator) 2: Execute below command           powercfg /batteryreport /output "C:\batteryHealth.html" You can conclude if battery need to be replaced or not by checking section " Battery Capacity History "

The following Error happen when opening the remote Runspace: System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

 This error appears if you have disabled TLS 1.0 & 1.1 on the server & client protocol on the machine. Full error description is listed below under the image. Make sure your application is enforce to send communication via Tls1.2 protocol only. Error description: The following Error happen when opening the remote Runspace: System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host    at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult)    at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult)    --- End of inner exception stack trace ---    at System.Net.TlsStream.EndWrit

How to connect to MS 365 using Windows PowerShell

 Below are the steps that can be used to connect Microsoft Office 365 easily. Run Windows PowerShell (run as administrator) Execute below commands: 1:  $Cred = Get-Credential This will open a pop-up window insert your Office365 account credentials 2:  $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic -AllowRedirection 3:  Import-PSSession $Session Now you shall able to execute any command depends on the provided account credentials privileges.

How to check which .NET Framework version are installed

  You can easily determine which .net version is installed on any Windows Operating system by executing below command in command prompt (cmd)   reg query "HKLM\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4" /s Sample Output

How to generate a self-signed SSL certificate for an IP address

This guide targeting how to connect remote Active Directory using secure LDAP-s Protocol. It is very common and easy that you can setup generate self sign certificate against any common name but challenge appears if you want to have certificate for internal IP address as common name. Please check and follow step by step instructions of below video to achieve this objective. Feel free to message me if you need any assistance. Thank you