Difference between revisions of "Vcard format"

From KOP KB
Jump to: navigation, search
(Created page with "BEGIN:VCARD VERSION:3.0 N: first; last;;; FN: first last ORG: company TITLE: title EMAIL;TYPE=work: [email protected] TEL;type=HOME: homephone TEL;type=WORK: w...")
 
(Combining Several into one in windows)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
BEGIN:VCARD
+
=Format =
VERSION:3.0
+
BEGIN:VCARD<br>
N: first; last;;;
+
VERSION:3.0<br>
FN: first last
+
EMAIL;TYPE=work:[email protected]<br>
ORG: company
+
EMAIL;TYPE=home:[email protected]<br>
TITLE: title
+
EMAIL;TYPE=internet:[email protected]<br>
EMAIL;TYPE=work: emailaddress@something.com
+
ADR;TYPE=work:;;62 something Drive.;sometown ;province/state;zip code/postal;country<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
+
= Combining Several into one in windows =
 
+
 
TEL;type=WORK: workphone
+
If you're using windows: <br>
 
+
GOTO Command prompt. (Windows_Key + R)<br>
TEL;type=FAX,HOME:  fax home
+
Run: cmd<br>
TEL;type=FAX,WORK: faxwork
+
Change to the directory where all your VCFs are stored<br>
ADR;type=HOME: homeaddress;;;;;;
+
cd  \foldernamewheretheyexist<br>
ADR;type=WORK: workaddress;;;;;;
+
Run this command<br>
END:VCARD
+
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