1e41f4b71Sopenharmony_ci# @ohos.enterprise.deviceControl (Device Control)
2e41f4b71Sopenharmony_ci
3e41f4b71Sopenharmony_ciThe **deviceControl** module provides APIs for device control.
4e41f4b71Sopenharmony_ci
5e41f4b71Sopenharmony_ci> **NOTE**
6e41f4b71Sopenharmony_ci>
7e41f4b71Sopenharmony_ci> The initial APIs of this module are supported since API version 12. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8e41f4b71Sopenharmony_ci>
9e41f4b71Sopenharmony_ci> The APIs of this module can be used only in the stage model.
10e41f4b71Sopenharmony_ci>
11e41f4b71Sopenharmony_ci> The APIs of this module can be called only by a [device administrator application](../../mdm/mdm-kit-guide.md#introduction) that is enabled.
12e41f4b71Sopenharmony_ci
13e41f4b71Sopenharmony_ci## Modules to Import
14e41f4b71Sopenharmony_ci
15e41f4b71Sopenharmony_ci```ts
16e41f4b71Sopenharmony_ciimport { deviceControl } from '@kit.MDMKit';
17e41f4b71Sopenharmony_ci```
18e41f4b71Sopenharmony_ci
19e41f4b71Sopenharmony_ci## deviceControl.operateDevice
20e41f4b71Sopenharmony_ci
21e41f4b71Sopenharmony_cioperateDevice(admin: Want, operate: string, addition?: string): void
22e41f4b71Sopenharmony_ci
23e41f4b71Sopenharmony_ciAllows the specified device administrator application to operate devices.
24e41f4b71Sopenharmony_ci
25e41f4b71Sopenharmony_ci**Required permissions**: ohos.permission.ENTERPRISE_OPERATE_DEVICE
26e41f4b71Sopenharmony_ci
27e41f4b71Sopenharmony_ci**System capability**: SystemCapability.Customization.EnterpriseDeviceManager
28e41f4b71Sopenharmony_ci
29e41f4b71Sopenharmony_ci
30e41f4b71Sopenharmony_ci**Parameters**
31e41f4b71Sopenharmony_ci
32e41f4b71Sopenharmony_ci| Name  | Type                                                   | Mandatory| Description                                                        |
33e41f4b71Sopenharmony_ci| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
34e41f4b71Sopenharmony_ci| admin    | [Want](../apis-ability-kit/js-apis-app-ability-want.md) | Yes  | Device administrator application.                                              |
35e41f4b71Sopenharmony_ci| operate  | string                                                  | Yes  | Operation to be performed, which can be any of the following:<br>- **resetFactory**: restore device factory settings.<br>- **reboot**: restart devices.<br>- **shutDown**: shut down devices.<br>- **lockScreen**: lock device screens.<!--RP1--><!--RP1End-->|
36e41f4b71Sopenharmony_ci| addition | string                                                  | No  | Additional parameter for the operation.                                            |
37e41f4b71Sopenharmony_ci
38e41f4b71Sopenharmony_ci**Error codes**
39e41f4b71Sopenharmony_ci
40e41f4b71Sopenharmony_ciFor details about the error codes, see [Enterprise Device Management Error Codes](errorcode-enterpriseDeviceManager.md) and [Universal Error Codes](../errorcode-universal.md).
41e41f4b71Sopenharmony_ci
42e41f4b71Sopenharmony_ci| ID| Error Message                                                    |
43e41f4b71Sopenharmony_ci| -------- | ------------------------------------------------------------ |
44e41f4b71Sopenharmony_ci| 9200001  | The application is not an administrator application of the device. |
45e41f4b71Sopenharmony_ci| 9200002  | The administrator application does not have permission to manage the device. |
46e41f4b71Sopenharmony_ci| 201      | Permission verification failed. The application does not have the permission required to call the API. |
47e41f4b71Sopenharmony_ci| 401      | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. |
48e41f4b71Sopenharmony_ci
49e41f4b71Sopenharmony_ci**Example**
50e41f4b71Sopenharmony_ci
51e41f4b71Sopenharmony_ci```ts
52e41f4b71Sopenharmony_ciimport { deviceControl } from '@kit.MDMKit';
53e41f4b71Sopenharmony_ciimport { Want } from '@kit.AbilityKit';
54e41f4b71Sopenharmony_ci
55e41f4b71Sopenharmony_cilet wantTemp: Want = {
56e41f4b71Sopenharmony_ci  bundleName: 'com.example.myapplication',
57e41f4b71Sopenharmony_ci  abilityName: 'EntryAbility',
58e41f4b71Sopenharmony_ci};
59e41f4b71Sopenharmony_ci
60e41f4b71Sopenharmony_citry {
61e41f4b71Sopenharmony_ci  deviceControl.operateDevice(wantTemp, 'resetFactory');
62e41f4b71Sopenharmony_ci} catch (err) {
63e41f4b71Sopenharmony_ci  console.error(`Failed to reset factory. Code is ${err.code}, message is ${err.message}`);
64e41f4b71Sopenharmony_ci}
65e41f4b71Sopenharmony_ci```
66