Awesome job on MQNext - looks very promising(especially
Lua).
Migration works splendidly on
Windows 10. Thumbs up!
Windows 8 - has a problem with NuGet based Migration tool.
Microsoft at some point changed requirement for TLS to 1.2 which fails on older Windows.
Solution: Download Migrator manually from:
https://www.redguides.com/community/threads/macroquest-migrator.78104/
Then open Powershell in administrator and navigate to wherever you extracted Migrator script (I have it C:\scripts) and set TLS requirement manually -(One could also add this to the .ps1 script)
[CODE title="Powershell"]PS C:\scripts> [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
PS C:\scripts Install-PackageProvider NuGet -Force
PS C:\scripts> .\MacroQuestMigrator.ps1[/CODE]
Thanks:
https://stackoverflow.com/questions...uget-provider-for-powershell-on-a-unconnected
Windows 7 migration is even worse -
You have to do the Windows 8 workaround above then you get the dreaded missing .dll message:
[CODE title="DLL ERROR"]---------------------------
AutoLogin Profile Import/Export: MacroQuest.exe - System Error
---------------------------
The program can't start because api-ms-win-core-path-l1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem.
---------------------------
OK
---------------------------[/CODE]
I tried installing official VC redistributables from 2015 onwards with no luck.
Finally gave up and got the non-official .dll from
https://www.dll-files.com/api-ms-win-core-path-l1-1-0.dll.html (safety not guaranteed, but they have been around for a long time)
It is 32bit dll, apparently we need to copy it into two places at once on 64bit Windows
Copied api-ms-win-core-path-l1-1-0.dll into -
Code:
C:\Windows\SysWOW64
C:\Windows\System32
After much
Shaving of the Yak MQNext is now running on Windows 7- but I lost option to migrate mq2autologin Profiles...
Any way to manually trigger Profile transfer for mq2autologin?
EDIT: I ended up doing manual autologin profile Export then Import as an interim solution.