Dell™ Latitude ON™ Flash Remote Management
Guida dell'amministratore IT
Descrizione
Scrittura dei file di configurazione XML
Preparazione dei file auto-estraenti per la distribuzione dei software
Aggiornamento remoto di Latitude ON Flash sui client
Riferimento A: Schema XML per Latitude ON Flash
NOTA: Latitude ON e Precision ON sono usati indifferentemente in base al sistema. In questo documento, il termine
Latitude ON è usato in riferimento ad entrambe le funzioni Latitude ON e Precision ON.
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
Torna all'indice
Descrizione
Questo documento fornisce informazioni sulle seguenti funzioni di gestione remota di Latitude ON Flash:
Invio degli aggiornamenti di Latitude ON Flash agli utenti
Imporre l'aggiornamento periodico delle password
Scegliere le impostazioni di configurazione preferite
La procedura complessiva di configurazione remota delle impostazioni di Latitude ON Flash è mostrata di seguito.
Torna all'indice
20091013a
20091002en
Torna all'indice
Scrittura dei file di configurazione XML
Latitude ON Flash permette di configurare in remoto le impostazioni usando XML. Questa sezione del documento fornisce
alcuni esempi di codici XML per la configurazione remota.
NOTA: I comandi XML devono essere scritti usando un editor di testo prima di iniziare a configurare Latitude ON Flash.
ChangeAllUserPassword.xml
I codici che seguono permettono di garantire che tutti gli utenti cambino la password al primo accesso, dopo avere distribuito
le impostazioni remote:
<?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
Il codice che segue permette ad utenti specifici di cambiare la 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>
Se l'istruzione <singleUser action="changePassword" user="User"> di cui sopra, è cambiata su <singleUser
action="changePassword" user="User1">, allora all'utente dell'account User1 sarà chiesto di cambiare la password al
successivo accesso al sistema.
DeleteAllUsers.xml
Il codice che segue elimina tutti gli utenti (fatta eccezione per l'utente predefinito):
<?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
Il codice che segue elimina uno specifico account utente (User):