Jump to content

COMCTL32.dll error when installing software


Recommended Posts

Posted

My Windows 7 machine has suddenly started displaying an error message when I try to install software. Doesnt happen on all software but a few recently.

 

I have even re-imaged my machine. Windows updates are installed and up to date.

 

Any ideas please?

 

System Error.jpg

Posted

*bump*

Has no one come across something like this? I have tried all the stuff that a Google Search comes up with and I still have the issue.

Posted (edited)

Any ideas what 'mirroring360_win.exe' is?? Is that app throwing the error?

 

Edit: Possibly related to a SplashTop (remote control/screen sharing app). Try uninstalling that then see if other software installs work okay.

Edited by mrwoberts
Posted
Any ideas what 'mirroring360_win.exe' is?? Is that app throwing the error?

 

Edit: Possibly related to a SplashTop (remote control/screen sharing app). Try uninstalling that then see if other software installs work okay.

That just happened to be an application I was trying to install, it happens with various applications. Some install fine. Latest one was the Unifi Controller software. So it's not directly related to mirroring360.
Posted
I do know what you're saying I was just referencing the dll file which is common with all applications that require that file :)
  • Thanks 1
Posted
it happens with various applications.

If you want a quick way of finding out which Visual C++ Redistributable(s) an application needs, use the first script below to download and install all of them on your PC or a VM. Then run the second script to display a list of the versions for each application.

 

As you can see below, Mirroring360 requires v7.0 and v12.0 which are the 2005 and 2013 redistributables respectably. :)

 

# https://docs.stealthpuppy.com/vcredist

Install-Module VcRedist
Import-Module VcRedist

$DownloadFolder = "C:\VcRedist"
If (!(Test-Path -Path "$DownloadFolder")) { New-Item -ItemType Directory -Path "$DownloadFolder" }

$VcList = Get-VcList -Export All | Get-VcRedist -Path "$DownloadFolder"
$VcList | Install-VcRedist -Path "$DownloadFolder"

 

# Based on: http://www.theexperienceblog.com/2017/03/17/checking-win32-application-runtime-dependencies-in-windows-10/

$Programs = Get-WMIObject Win32_InstalledWin32Program | Select-Object Name,ProgramID
$Result = ForEach ($Program in $Programs) {

   $Name = $Program.Name
   $ProgramID = $Program.ProgramID
   $FMapp = Get-WMIObject Win32_InstalledProgramFramework -Filter "ProgramID = '$ProgramID'"

   ForEach ($FM in $FMapp) {
       [PSCustomObject]@{
           'Name'               = $Name
           'ProgramID'          = $ProgramID
           'FrameworkPublisher' = $FM.FrameworkPublisher
           'FrameworkName'      = $FM.FrameworkName
           'FrameworkVersion'   = $FM.FrameworkVersion
       }
   }
}

$Result | Out-GridView

 

DtJLgY.png

 

qzWPj5.png

  • Thanks 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...