B4J Question [SOLVED] silent installer

MAGAREY

Member
Licensed User
Longtime User
I tried to make my program autoupdate itself but whitout success, its posible to modify ui apps packaging?, to achive a silent instalation , i mean a instalation without user interaction.
 
Last edited:

MAGAREY

Member
Licensed User
Longtime User
I found a solution:
I created a .bat whit the following code:

B4X:
cmd /Min /c "set __COMPAT_LAYER=RUNASINVOKER && start /w "" "path of .exe" /SILENT"
the part of __COMPAT_LAYER=RUNASINVOKER is an intent to skip the UAC dialog from windows, but whitout success.

/SILENT show the progress dialog of the instalation
/VERYSILENT dont show anything
 
Upvote 0
Top