Hi everyone,
Im calling the SLUI.exe of Windows (responsible for activation) to force the Windows Activation Window to show up. Then I hide it using WinSetState with this Code:
If @OSArch = "X86" Then
Run("C:\Windows\System32\SLUI.exe 4", "C:\Windows\System32\")
Else
$IntPtr = DllStructGetPtr(DllStructCreate("int"))
DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "ptr", $IntPtr)
Run("C:\Windows\System32\SLUI.exe 4", "C:\Windows\System32\")
DllCall("kernel32.