how to soti mobicontrol 15.3 Android enterprise create phone call list into device

R
rathasatekun Bronze Contributor
Gosoft (Thailand) Co.,Ltd.

how to soti mobicontrol 15.3 Android enterprise create phone call list into device

 

I have list of telehphone number , then i want to crate telephone number into contact, Have script or menu to do that?

3 days ago
Android
ANSWERS

If you upgrade to 2024.1 or above the phone policy lives in Profiles, for anything before you can use the method below (you can substitute package for file Sync if you wish): 

  1. Create a package with the VCF file. The file location of the VCF must be /data/data/net.soti.mobicontrol.androidwork/files/ to avoid storage permission issues.
  2. Include a Post install script with the following script:

 

import_contacts_vcf /data/data/net.soti.mobicontrol.androidwork/files/nameofvcf.vcf 0|1

 

  • 0 - Indicates contacts in the VCF should be added to the existing contacts list
  • 1 - Indicates contacts in the VCF should replace the existing contacts list

3. Deploy package to device

R
rathasatekun
3 days ago

Which script add Blocked Contact into contacted phone 

for samsung brand

In profiles you should fine a phone call setting where you can block phone numbers. Which i think is what you are asking for.

R
rathasatekun
3 days ago

it support only android plus not enterprise , i use soti mobicontrol 15.3

R
rathasatekun
3 days ago

i use soti 15.3 only in android classic only but not have in android enterprise

In that case you can use the script:

 

writeprivateprofstring CallBlocking

writeprivateprofstring CallBlocking InNumber1 "16471234567"

writeprivateprofstring CallBlocking InNumber2 "14161234567"

writeprivateprofstring CallBlocking OutNumber1 "19051234567"

writeprivateprofstring CallBlocking OutNumber2 "18001234567"

writeprivateprofstring CallBlocking IncomingMode 1

writeprivateprofstring CallBlocking OutgoingMode 1

writeprivateprofstring CallBlocking Notify 3

apply callpolicy

 

changing the value for incomingMode or outgoingmode to 2 will allow, while 1 denies. The above example blocks some incoming and outgoing numbers.