Difference between revisions of "Vcard format"

From KOP KB
Jump to: navigation, search
(Combining Several into one in windows)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
=Format =
 
BEGIN:VCARD<br>
 
BEGIN:VCARD<br>
 
VERSION:3.0<br>
 
VERSION:3.0<br>
N: first; last;;;<br>
+
EMAIL;TYPE=work:[email protected]<br>
FN: first last <br>
+
EMAIL;TYPE=home:[email protected]<br>
ORG: company<br>
+
EMAIL;TYPE=internet:[email protected]<br>
TITLE: title <br>
+
ADR;TYPE=work:;;62 something Drive.;sometown ;province/state;zip code/postal;country<br>
EMAIL;TYPE=work: emailaddress@something.com<br><br>
+
ADR;TYPE=home:;;123 Fake st;Springfield;MO;90222;USA<br>
 +
BDAY:<br>
 +
NICKNAME:SomenickName<br>
 +
TEL;TYPE=work:555-555-5555<br>
 +
TEL;TYPE=work,fax:555-555-5555<br>
 +
TEL;TYPE=home:555-555-5555<br>
 +
TEL;TYPE=home,fax:555-555-5555<br>
 +
TEL;TYPE=cell:555-555-5555<br>
 +
FN:first last<br>
 +
NOTE:I am a note: Hi mom<br>
 +
URL:www.domain.com<br>
 +
N:Last;first;;;N/A<br>
 +
TITLE:sometitle<br>
 +
ORG:companyname<br>
 +
END:VCARD
  
TEL;type=HOME: homephone<br><br>
+
= Combining Several into one in windows =
 
+
 
TEL;type=WORK: workphone<br><br>
+
If you're using windows: <br>
 
+
GOTO Command prompt. (Windows_Key + R)<br>
TEL;type=FAX,HOME:  fax home<br>
+
Run: cmd<br>
TEL;type=FAX,WORK: faxwork <br>
+
Change to the directory where all your VCFs are stored<br>
ADR;type=HOME: homeaddress;;;;;;<br>
+
cd  \foldernamewheretheyexist<br>
ADR;type=WORK: workaddress;;;;;;<br>
+
Run this command<br>
END:VCARD<br>
+
copy  /B  *.vcf  all_in_one.vcf<br><br>
 +
 
 +
Source:
 +
 
 +
http://www.toptrix.net/2011/01/merging-many-vcf-files-in-to-one.html

Latest revision as of 15:44, 16 September 2015

Format

BEGIN:VCARD
VERSION:3.0
EMAIL;TYPE=work:[email protected]
EMAIL;TYPE=home:[email protected]
EMAIL;TYPE=internet:[email protected]
ADR;TYPE=work:;;62 something Drive.;sometown ;province/state;zip code/postal;country
ADR;TYPE=home:;;123 Fake st;Springfield;MO;90222;USA
BDAY:
NICKNAME:SomenickName
TEL;TYPE=work:555-555-5555
TEL;TYPE=work,fax:555-555-5555
TEL;TYPE=home:555-555-5555
TEL;TYPE=home,fax:555-555-5555
TEL;TYPE=cell:555-555-5555
FN:first last
NOTE:I am a note: Hi mom
URL:www.domain.com
N:Last;first;;;N/A
TITLE:sometitle
ORG:companyname
END:VCARD

Combining Several into one in windows

If you're using windows:
GOTO Command prompt. (Windows_Key + R)
Run: cmd
Change to the directory where all your VCFs are stored
cd \foldernamewheretheyexist
Run this command
copy /B *.vcf all_in_one.vcf

Source:

http://www.toptrix.net/2011/01/merging-many-vcf-files-in-to-one.html