Administrator Guide

</cmd>
</cmdstore>
在上列範例中,<singleUser action="deleteUser" user="User"></singleUser> 這一行會刪除使用者帳戶 User。如果要刪除其他
使用者帳戶,請將要刪除的使用者帳戶取代 User
ConfigBattery.xml
下列程式碼允許您進行電源設定:
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
<cmd>
<configPassword interval="10"></configPassword>
</cmd>
<cmd>
<configPower>
<battery backlight="1" poweroff="5"></battery>
<acpower backlight="5" poweroff="10"></acpower>
</configPower>
</cmd>
</cmdstore>
在上列範例中:
陳述式 <configPassword interval="10"> 會確認使用者是否每隔十天就要變更密碼。
當電腦使用電池電源時,如果超過 1 分鐘未使用,陳述式 <battery backlight="1" poweroff="5"> 會讓 Latitude ON Flash
入睡眠模式,而超過五分鐘未使用,則會強制關閉。
當電腦使用 AC 電源時,如果超過 5 分鐘未使用,陳述式 <acpower backlight="5" poweroff="10"> 會讓 Latitude ON Flash
入睡眠模式,而超過 10 分鐘未使用,則會關閉。
ConfigPassword.xml
下列程式碼允許使用者變更他/她的密碼:
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
<cmd>
<configPassword interval="10"></configPassword>
</cmd>
</cmdstore>
陳述式 <configPassword interval="10"> 將會強制使用者每隔十天變更他/她的密碼。
ResetAllUsers.xml
下列程式碼允許您重新設定所有帳戶到原始預設狀態。
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
<cmd>
<allUser action="resetUser"></allUser>
</cmd>
</cmdstore>
ResetUser.xml