<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>westworld: a webmasters best friend &#187; Skype</title>
	<atom:link href="http://www.westworld.be/tag/skype/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.westworld.be</link>
	<description>A webmasters best friend</description>
	<lastBuildDate>Tue, 17 Aug 2010 10:37:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Skype: bulk import</title>
		<link>http://www.westworld.be/uncategorized/skype-bulk-import/</link>
		<comments>http://www.westworld.be/uncategorized/skype-bulk-import/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 14:05:41 +0000</pubDate>
		<dc:creator>westworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://www.westworld.be/?p=116</guid>
		<description><![CDATA[Out of the box, Skype doesn&#8217;t have a bulk import feature. I only found one extra and it costs 15$. Here&#8217;s a tip how to do it for free. Open Skype and go to &#8216;Contacts&#8217; Go to Advanced Backup contacts to file Open the backup with Notepad or another text editor The file is full [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.westworld.be/wp-content/uploads/2009/10/skype-logo1-150x150.jpg" alt="Skype" title="skype-logo[1]" width="150" height="150" class="size-thumbnail wp-image-124" style="float: right; width:150px;" /><br />
Out of the box, Skype doesn&#8217;t have a bulk import feature. I only found one extra and it costs 15$.<br />
Here&#8217;s a tip how to do it for free.</p>
<ol>
<li>Open Skype and go to &#8216;Contacts&#8217;</li>
<li>Go to Advanced</li>
<li>Backup contacts to file</li>
<li>Open the backup with Notepad or another text editor</li>
<li>The file is full of vcards, just copy a vcard, and past it at the bottom. All you have to do is alter the info. (ref is reference to importtime so you don&#8217;t have to alter this tag)</li>
<li>if you need to import many contacts, write a script to add extra vcards.</li>
<li>When your file is ready, go back to Skype/Advanced and import restore the backup.</li>
</ol>
<p>An autoit script to do this might look something like the code below (untested)<br />
Phone.xls has a column with nummers and a column with names<br />
<code><br />
#include <Excel.au3><br />
$oExcel = _ExcelBookOpen("phone.xls")<br />
_ExcelSheetActivate($oExcel,"sheetName")<br />
For $i = 1 To 3 ;Loop<br />
$phone = _ExcelReadCell($oExcel, 1, $i);cell with phone<br />
$name = _ExcelReadCell($oExcel, 1, $i);cell with name<br />
$file = FileOpen("backupfile.vcf", 1)</p>
<p>; Check if file opened for writing OK<br />
If $file = -1 Then<br />
    MsgBox(0, "Error", "Unable to open file.")<br />
    Exit<br />
EndIf</p>
<p>FileWriteLine($file, "BEGIN:VCARD")<br />
FileWriteLine($file, "VERSION:3.0")<br />
FileWriteLine($file, "N:"+$phone)<br />
FileWriteLine($file, "X-SKYPE-PSTNNUMBER:"+ $phone)<br />
FileWriteLine($file, "X-SKYPE-DISPLAYNAME:"+ $name + " " + $phone)<br />
FileWriteLine($file, "REV:01091022T130411Z")<br />
FileWriteLine($file, "END:VCARD")</p>
<p>FileClose($file)<br />
Next<br />
_ExcelBookClose($oExcel)<br />
</code></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.westworld.be/uncategorized/skype-bulk-import/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
