Dell Latitude E4300, Latitude E6510, Latitude E4310, Latitude E4200 User Manual [ko]

Dell™ Latitude ON™ Flash 원격 관리 IT 관리자 가이드
개요 XML 구성 파일 쓰기 소프트웨어 디스패치를 위한 자동 압축 풀기(SFX) 파일 준비 클라이언트에 Latitude ON Flash 원격 업그레이드 참조 A : Latitude ON Flash용 XML 스키마
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
목차 페이지로 돌아가기
개요
이 문서는 다음 Latitude ON Flash 원격 관리 기능에 관한 정보를 제공합니다.
Latitude ON Flash 업데이트를 사용자에게 푸시 정기적 암호 업데이트 적용 원하는 구성 설정 선택
Latitude ON Flash의 설정을 원격 구성하는 일반 프로세스는 아래와 같습니다.
페이지로 돌아가기
목차
20091013a
20091002en
목차 페이지로 돌아가기
<cmd>

XML 구성 파일 쓰기

Latitude ON Flash는 XML을 사용하여 설정을 원격 구성할 수 있게 합니다. 문서의 이 섹션은 원격 구성을 위한 몇 가지 샘플 XML 코드를 제 공합니다.
참고: Latitude ON Flash 구성을 시작하기 전에 텍스트 편집기를 사용하여 XML 명령을 써야 합니다.
ChangeAllUserPassword.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="changeUser"></allUser> </cmd> </cmdstore>
ChangeUserPassword.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="changeUser"></allUser> </cmd> </cmdstore>
위의 <singleUser action="changePassword" user="User"> 문을 <singleUser action="changePassword" user="User1">로 변경하면 User1 계정의 사용자는 다음에 시스템에 로그인할 때 암호 변경 요청을 받습니다.
DeleteAllUsers.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="deleteUser"></allUser> </cmd> </cmdstore>
DeleteUser.xml
다음 코드는 특정 사용자 계정(User)을 삭제합니다.
<?xml version="1.0" encoding="utf-8"?> <cmdstore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation=" DVMRemoteCmd.xsd">
Loading...
+ 6 hidden pages