B4A Library Device Administrator library - Erel    Aug 9, 2023   (5 reactions) Starting from Android 2.2 (api level 8), Android allows application to be registered as administrators.
Administrator apps have the following special features:
- Manually lock the screen
- Set the minimum password length and quality
- Wipe the entire device
- Set the maximum allowed time before... an administrator app from the Security settings page. The idea is that in your app you should check... B4J Code Snippet Test if process is running as administrator on Windows - Erel    Feb 14, 2024   (9 reactions) Private Sub IsRunningAsAdmin As Boolean Try Dim f As String = GetEnvironmentVariable("SYSTEMDRIVE", "") & "\isadmin.txt" File.WriteString(f, "", "test") File.Delete(f, "") Return True Catch Return False End Try End Sub A bit hacky but should work. Windows only.... Share My Creation Remote Administration via MQTT - Magma    Oct 25, 2022   (26 reactions) 134420
Hi there...
as IT using a lot Remote Administration Utilities to remote control Windows... it difficult to understand it.
So I ve think it a lot... how to make a Remote Administration Utility... B4J Code Snippet Check if current Windows user is Administrator - Magma    Jun 2, 2022   (7 reactions) .isAdministrator=ca If ca=False Then Log("Not Admin!") 'show dialog, exit... B4A Question Device Administrator library - No active admin owned by uid 10315 for policy #0 - ykucuk    Dec 25, 2024 Hello,
I am trying to run the Device Administrator library example project, but I am encountering the following error:
java.lang.SecurityException: No active admin owned by uid 10315 for policy #0... B4A Question B4A / B4J - No installation deployment - Erel    Oct 7, 2020   (14 reactions) There are cases where you cannot run the installer as it needs administrator privileges. It is quite simple to deploy these tools without the installer. Download innoextract: https://constexpr.org/innoextract/ This tool allows you to unpack the installer files. Follow the instructions and download OpenJDK 11 + Android SDK + additional resources (last two are for B4A only). Run the IDE and configure the paths. If you want to clone this configuration to other computers: Close the IDE. Find... B4i Question Compiling error. "Could not delete `/Users/administrator/Documents/UploadedProjects..." - OlavRossland    Apr 3, 2023 `/Users/administrator/Documents/UploadedProjects/<user id>/build` because it was not created....apple.xcode.CreatedByBuildSystem true /Users/administrator/Documents/UploadedProjects/<user id... B4J Question JShell - run program with administrator privileges - Roberto P.    Apr 17, 2020 Hi I want to launch the tomcat installer from a utility developed with B4J, but it returns an error message because the administrator privileges are missing. can anyone tell me what parameters should I enter? Sub btnInstallTomCat_Click Dim aFile As String = File.DirApp & "\" & mFolderDownload & "\" & mFileExeTomCat Dim shl As Shell 'shl.Initialize("shl",aFile, Null) shl.Initialize("shl", aFile , Array... Wish Request B4J to package a standalone UI apps with administrator permissions - byz    Dec 29, 2024   (3 reactions) package a standalone UI apps with administrator permissions. I've tested it successfully in the command line. You only need to add the contents of admin.manifest, and then add /win32manifest:admin.manifest to the parameter when calling the command line in the BuildRunner function in B4JPackager11. 160052 160049 160051 <?xml version="1.0" encoding="utf-8" standalone...="requireAdministrator" uiAccess="false" /> </requestedPrivileges> <... B4J Question Run as administrator shell - Douglas Farias    Sep 8, 2016 Hi all. how can i check if a file is runing as administrator? on my .jar i m opening a another .exe file, not made in b4j, i need open this .exe with administrator rights the same of click with right mouse button and select run as administrator. how can i run or check administrator on b4j (shell)? thx... Page: 1   2   |