Dell™ Latitude ON™ Flash Remote Management
IT Administrator's Guide
Overview
Writing XML Configuration Files
Preparing Self-Extracting (SFX) Files for Software Dispatch
Upgrading Latitude ON Flash to Clients Remotely
Reference A: XML Schema for Latitude ON Flash
NOTE: Latitude ON and Precision ON are used interchangeably depending upon the system. In this document, we use
the term Latitude ON to refer to both the Latitude ON and Precision ON features.
Information in this document is subject to change without notice.
© 2009 Dell Inc. All rights reserved. Printed in the U.S.A.
Trademarks used in this text: Dell, the DELL logo, Dell Precision, and Latitude ON are trademarks of Dell Inc.; Microsoft and
Windows are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries.
Splashtop and the Splashtop logo are registered trademarks of DeviceVM, Inc., in the U.S. and elsewhere.
Other trademarks and trade names may be used in this document to refer to either the entities claiming the marks and
names or their products. Dell Inc. disclaims any proprietary interest in trademarks and trade names other than its own.
For additional regulatory information, see the Regulatory Compliance Homepage on www.dell.com at the following location:
www.dell.com/regulatory_compliance.
For a list of included third-party software, please view the Credits file at
http://www.splashtop.com/dellcommercial/cm/credits.html.
Initial release: October 2009
Back to Contents Page
Overview
This document provides information about the following Latitude ON Flash remote management features:
Pushing Latitude ON Flash updates to the users
Enforcing periodic password updates
Choosing the desired configuration settings
The general process for remotely configuring the settings of your Latitude ON Flash is shown below.
Back to Contents Page
20091002a
Back to Contents Page
<?xml version="1.0" encoding="utf-8"?>
Writing XML Configuration Files
Latitude ON Flash allows you to remotely configure the settings using XML. This section of the document provides a few
sample XML codes for remote configuration.
NOTE: You must write the XML commands using a text editor before you start configuring Latitude ON Flash.
ChangeAllUserPassword.xml
The following code allows you to ensure that all the users change their passwords at first log in, after the remote settings are
dispatched:
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
<cmd>
<allUser action="changeUser"></allUser>
</cmd>
</cmdstore>
ChangeUserPassword.xml
The following code allows a specific user to change his/her password:
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
<cmd>
<allUser action="changeUser"></allUser>
</cmd>
</cmdstore>
If the statement <singleUser action="changePassword" user="User"> above is changed to <singleUser
action="changePassword" user="User1">, then the user of the User1 account will be asked to change his password the
next time he logs into the system.
DeleteAllUsers.xml
The following code deletes all users (except the default user):
<?xml version="1.0" encoding="utf-8"?>
<cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="
DVMRemoteCmd.xsd">
<cmd>
<allUser action="deleteUser"></allUser>
</cmd>
</cmdstore>
DeleteUser.xml
The following code deletes a specific user account (User):