kiosk

Deny Access to Kiosk program process

回眸只為那壹抹淺笑 提交于 2021-02-04 17:57:06
问题 I have a kiosk app and have to disable task manager always to prevent closing the program by users . But some users need the TaskManager to close hanging programs. Any help would be appropriated. However, I am sure there is a function in windows to prevent closing a program's process , as when one attempt to kill rundll.exe process. I want to know that function if I can call it with DllImport Can anyone help with a trick? A hack? A function? Any other solution? EDIT: At least if there is not

Perform calls in Android Locktask mode

喜你入骨 提交于 2021-01-24 08:15:37
问题 TL;DR How to make a phone call while using Activity.startLockTask() ? I'm trying to setup a restricted environment on an Android device, i.e. what is usually called "Kiosk-Mode". Official documentation can be found here: https://developer.android.com/work/cosu.html The official way of doing this suggest to use Activity.startLockTask. This works fine until you want to start other apps from within your Activity which is in startLockTask() mode. Any activity that launches must not start on a new

Is it possible to access ProgramData folder from UWP without file picker?

依然范特西╮ 提交于 2020-07-16 10:36:12
问题 Can anyone share your ideas of accessing the custom paths like program data folder in the C drive from UWP application?? I am getting an access denied while accessing this path. Any special capabilities that I have to add to the AppManifest. Basically I need to access this folder from the a KIOSK where.i have a specific file which is to be reused for KIOSK mode in UWP. 回答1: Your only hope is broadFileSystemAccess. Also, this answer could be useful. 回答2: If you want to carry data of a smaller

Management API error: persistentPreferredActivities 4

心已入冬 提交于 2020-06-28 06:32:09
问题 I am building an Android KIOSK app, and I try to enable kiosk mode with Android Management API by providing a device policy. My policy json is: { "keyguardDisabled": true, "applications": [ { "packageName": "my.own.app", "installType": "KIOSK", "defaultPermissionPolicy": "GRANT" } ] } What's interesting, the policy is from official API's example, so I suppose that works. Whatever, always get this error: Error info persistentPreferredActivities 4 And just a google search does not give me any

Android Kiosk mode not working when using Android Management API Policy

蹲街弑〆低调 提交于 2020-02-28 05:40:30
问题 So I'm trying to get a single use, dedicated app + device to work in kiosk mode + auto launch. The app itself is built in Nativescript (with Angular), so not native Java, however this is still handled via an admin receiver etc as normal. When we use adb to set the device owner, kiosk mode works as expected. adb shell dpm set-device-owner com.domain.app/.DeviceAdminReceiver When we use an Android Management policy to enrol the device and auto install, the kiosk mode is never initiated

Android Kiosk mode not working when using Android Management API Policy

瘦欲@ 提交于 2020-02-28 05:40:23
问题 So I'm trying to get a single use, dedicated app + device to work in kiosk mode + auto launch. The app itself is built in Nativescript (with Angular), so not native Java, however this is still handled via an admin receiver etc as normal. When we use adb to set the device owner, kiosk mode works as expected. adb shell dpm set-device-owner com.domain.app/.DeviceAdminReceiver When we use an Android Management policy to enrol the device and auto install, the kiosk mode is never initiated

How to run custom, non window app in kiosk mode in windows 10

青春壹個敷衍的年華 提交于 2020-02-25 06:02:10
问题 I wanted to run some application at start in windows 10, which I did by putting them in startup folder. Now I want to run these apps in kiosk mode, so that user does not see what applications are running at back and he just sees internet browser with some website like google.com. I tried to set up a different local account under kiosk mode, but I am able to run it only with windows app, which are provided under Add an app . Could someone please suggest how to add custom apps in kiosk mode so

Android Management API - Exit kiosk mode with password

送分小仙女□ 提交于 2020-01-24 20:27:21
问题 I have question. I have fully managed device and use Android Management API (https://developers.google.com/android/management) I created policy with this definition: { "applications": [ { "packageName": "com.example.myapp", "installType": "KIOSK", "defaultPermissionPolicy": "GRANT" } ], "cameraDisabled": false, "defaultPermissionPolicy": "GRANT", "debuggingFeaturesAllowed": true } but I want allow access to device settings or exit kiosk mode (kiosk app), when user write some password. It's

How can I make a system-modal window?

浪子不回头ぞ 提交于 2020-01-14 13:56:27
问题 Is it possible to make the main form of an application system modal ? My application will FTP a file from a remote company PC. Users should not be allowed to interact with the desktop while this process is in progress. Application.MainFormOnTaskbar := True; Application.ShowMainForm := False; ... FormChild.ShowModal; 回答1: It doesn't make sense to make the main form modal. Indeed, if you have an ordinary application with a (normal) main form, and then displays a modal form (e.g. a dialog box,

Qt application in kiosk mode

别来无恙 提交于 2020-01-13 20:44:27
问题 I need to start my qt application on desktop under windows and linux in kiosk mode. May I do it, using qt or special system calls? (not adjusting operation system) 回答1: I think you could look into the KDE iosk framework: http://techbase.kde.org/KDE_System_Administration/Kiosk/Introduction This is basically written in Qt, and should be working both on Linux and Windows. If you face any troubles, you can at least take their code as a good and robust base. Here you can find the first paragraph