⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 devpcdmsync.inf

📁 《Windows CE 权威指南》(作者:(美)CHRIS MUENCH
💻 INF
字号:
;
; Microsoft Sample AppInstall INF
;

;
; Optional "Strings" section
;   Contains string substitutions replacing the key string (enclosed with percent symbols) with the value string
;   For this example, it will store language-dependent strings
;
[Strings]
SzApp       = "PCDMSync"
SzFile      = DevPCDMSync
SzObject    = "PCDMSync"

;
; Required "Version" section
;   Contains INF version information
;
[Version]
Signature   = "$Windows NT$"
Provider    = "AWL"       ; full app name will be "<Provider> <AppName>"
CESignature = "$Windows CE$"


;
; Required "CEStrings" section
;   Specific strings used by Windows CE AppInstall
;
[CEStrings]
AppName     = %SzApp%
InstallDir  = %CE1%\%AppName%    ; default install directory, which can be changed by end user


;
; Required "SourceDisksNames[.label]" section
;   Specifies the source directories of the binary files
;
;   Format:     <source ID> = ,<label>,,<source directory>
;       <source ID> will be used to specify the source files belonging to this directory
;       <label> is unused
;       <source directory> is the relative or absolute directory of the source files
;
[SourceDisksNames]
1 = ,"Source Dir",,. 


;
; Required "SourceDisksFiles[.label]" section
;   Specifies the source filenames that will be packaged in the CAB files
;
;   Format:     <filename> = <source ID>
;       <filename> is the source filename (enclose in doublequotes for long filenames)
;       <source ID> is the ID used in [SourceDisksNames] to specify the source directory
;
[SourceDisksFiles]
%SzFile%.inf = 1

;
; Required "DefaultInstall" section
;   Specifies the INF sections for file copying, registry settings and creating shortcuts
;   INF sections that are not listed here will not be used
;
[DefaultInstall]
    ;
    ; Required INF sections that lists the registry entries to be created
    ;
AddReg      = Reg

;
; Required "DestinationDirs" section
;   Specifies the directories to use for the file copy lists
;
;   Format:     <section name> = 0,<dest directory>
;       <section name> is the section name used in "[DefaultInstall] CopyFiles"
;       <dest directory> is the destination directory, using an absolute device path, the directory macros,
;                   or the install directory %InstallDir%
;
[DestinationDirs]
DefaultDestDir      = 0,%InstallDir%   ; default install dir for all other lists

;
; Required sections specified in "[DefaultInstall] AddReg" key
;   Specifies the registry entries to create
;
;   Format:     <reg root>,<reg key>,<reg val>,<reg flags>,<reg data>[,<reg data>]
;       <reg root> is HKCR, HKLM or HKCU
;       <reg key> is the registry key name
;       <reg val> is the registry value name, which is set to "default" if empty
;       <reg flags> is the registry type/flags to use
;       <reg data> is the numeric/string registry data, which depends on the <reg flags> used
;
[Reg]
HKLM,Windows CE Services\Synchronization\Objects\%SzObject%,Store,0,\%SzFile%.dll

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -