Talk about SyMenu or post suggestions, requests, or how-to questions
[Request] 64-bit version of SyMenu
SyMUser Posts: 7
28/04/2024
|
Is there a 64-bit version of SyMenu planned for release?
|
|
link
|
Gianluca Administrator Posts: 1313
30/04/2024
|
This is a new one but there is an easy workaround.
If I understand well, your problem is that from a 32 bit shell Windows launches 32 bit executables. But this is not an intrinsic limit of the 32 bit shell, it's only a problem in the resolution of the executable path.
Let's take the first one: powershell.
In SyMenu configuration create a program element (not a Windows command one). In the path field write: powershell.exe Execute it In the opened shell write: [Environment]::Is64BitProcess It replies False because your PS is the 32 bit version.
Now do again all the previous steps but in the path field write: %SystemRoot%\sysnative\WindowsPowerShell\v1.0\powershell.exe It's the x64 version of PS. Now write the usual command: [Environment]::Is64BitProcess and you get True.
Does this workaround solve your issues?
|
|
+1
link
|