Recent content by gdgsupport

  1. gdgsupport

    ERROR Application was not signed, an error occurred: The EXE file was not found: please first compile the workbook.

    Good news first: the earlier "EXE not found" is gone, your build now produces the .exe, so we are past that. What is failing now is the Azure signing step itself, and the line in your log is the key: Microsoft.Identity.Client.Extensions.Msal.MsalCachePersistenceException: Persistence check...
  2. gdgsupport

    How to remove all registry entries during the uninstall process

    For a repeatable test loop, the tool that fits your goal best is not registry deletion at all, it is a disposable environment. Two good options, easiest first: Windows Sandbox (a free feature on Windows Pro and Enterprise). It gives you a clean, throwaway Windows session. Install your Paquet...
  3. gdgsupport

    Understanding the integration of PadLock's "Get Key Online" feature and the WooCommerce Integration Kit

    Let us separate the pieces, because the "capture and display the key so the user can copy it" step is the part sending you down the wrong path. The 405. The /getactivation/ route only accepts POST. Opening it in a browser is a GET, so the kit correctly answers 405 Method Not Allowed. That is...
  4. gdgsupport

    WooCommerce Kit installed, but struggling with Trial Version and activation

    You are reading it correctly. If "End users must enter an activation key in order to use the protected workbook" is left unchecked, the compiled app has no licensing at all and runs indefinitely. There is no separate keyless "trial period" switch that later flips the app into requiring...
  5. gdgsupport

    Once compile to exe and run "The operating system is not configured to run this application"

    Before anything else, please check one thing, because it decides the rest: the processor architecture of the machine. XLS Padlock protected applications require 64-bit Windows on an Intel or AMD (x64) processor. They do not currently support Windows on ARM, and on an ARM machine the protection...
  6. gdgsupport

    Is .exe work on MAC?

    XLS Padlock compiles your Excel workbook into a native 64-bit Windows application (a Windows .exe). That format runs on Windows only, so the compiled .exe will not run directly on macOS, even when the project has no external links or DLLs. This is by design: the protection layer and the embedded...
  7. gdgsupport

    🔥 Announcing XLS Padlock 2026.1 - July 15, 2026

    XLS Padlock 2026.1 is now available We have released XLS Padlock 2026.1, a maintenance update for the 2026.0 version shipped last month. It clears up a few issues reported in protected applications built with 2026.0, makes the Web Update feature noticeably more dependable, and irons out several...
  8. gdgsupport

    ERROR Application was not signed, an error occurred: The EXE file was not found: please first compile the workbook.

    "Sign EXE File Now" only signs an .exe that already exists in your project's output folder. It does not build it. The message "The EXE file was not found: please first compile the workbook" means XLS Padlock did not find a compiled .exe there when you clicked Sign. Two checks, in order: Build...
  9. gdgsupport

    Paquet Builder 2026.2 - 'Restart Computer' action fails

    Confirmed: this is a regression introduced in Paquet Builder 2026.2. The "Restart Computer" custom action stops rebooting after a rebuild in 2026.2, while installers built with earlier versions are unaffected. It is now fixed on our side. A hotfix is available. If you have already emailed...
  10. gdgsupport

    How to implement a persistent side panel (MV2/MV3 style) using HEScript and secondary windows?

    One clarification on the engine first, because it changes which of your ideas are reachable now versus later. ExeOutput for PHP's internal browser is WebView2-based, so you are right that WebView2 is the relevant platform here. The catch is that the specific pieces you cite...
  11. gdgsupport

    How to remove all registry entries during the uninstall process

    For this, use XLS Padlock's own Deactivation feature rather than trying to delete the activation entries from the registry by hand. Deactivation is the supported way to remove an activation from a machine: it clears the local activation cleanly so you can re-run the trial and activation flow...
  12. gdgsupport

    Setting up Trial Versions

    Both the key and the token are handled automatically by the Kit, and you do not write a wp-activation.php yourself. Key generation is automatic and on demand. There is no pool of keys to pre-create. When the app activates, the Kit generates the activation key server-side at that moment, from...
  13. gdgsupport

    Understanding the integration of PadLock's "Get Key Online" feature and the WooCommerce Integration Kit

    The 405 first, because it is the quickest to clear: the /getactivation/... route only accepts POST. A browser address bar sends a GET, so the Kit correctly answers "405 Method Not Allowed". That is not a sign that your id or your config is wrong, it is simply the endpoint refusing a GET...
  14. gdgsupport

    XLS PadLock (2026) "Build Secure Application" Issues

    A build that sits at a fixed percentage (80% here) for tens of minutes almost always means something outside XLS Padlock is stalling that step, not XLS Padlock itself looping. The 80% region is where the compiled EXE is protected and, if you enabled it, code-signed, which is exactly where an...
  15. gdgsupport

    🔥 Announcing XLS Padlock 2026 - June 18, 2026

    XLS Padlock 2026 is now available We have released XLS Padlock 2026, the new major version of our Excel workbook protection software. This release modernizes the core of the product and puts you back in control of what new AI features can do with a protected workbook. Three long-standing...
Back
Top