Possibly not the answer though I'll throw my 2c worth in anyway,immortality wrote: ↑Mon May 20, 2024 10:05 amCan you link the download you are using please?
I don't see a specific Win 7 x64 except for the Signed driver and that's installing fine as the device manager is recognising the programmer with the updated driver installed.
I've run through it again, launch as administrator etc but it installs as x86 but no go. Even disabled Avast before installing to ensure that's not the issue.
Some control panel apps I compiled some time ago were working on all systems I'd run them on, til some time after a windows
update session put and end to them working, rather than working out which update is was, I worked out how to make them work
again, adding a manifest with the application compatibility entry is what did the job.
A regedit.cpl I made had this added to work or even be seen in control panel again.
Code: Select all
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
name="Microsoft.Windows.Regedit"
processorArchitecture="x86"
version="5.0.0.0"
type="win32" />
<description>Registry Editor</description>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
</application>
</compatibility>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
I'd right click on the .cpl and attempt to open with control panel, it wouldn't open til that manifest was added.