<?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>Refly Hub &#187; installer</title>
	<atom:link href="http://refly.net/tag/installer/feed/" rel="self" type="application/rss+xml" />
	<link>http://refly.net</link>
	<description>just another informational blog</description>
	<lastBuildDate>Tue, 29 Nov 2011 08:11:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using AutoIt to create Application Shortcuts from Google Chrome</title>
		<link>http://refly.net/blogs/using-autoit-to-create-application-shortcuts-from-google-chrome/</link>
		<comments>http://refly.net/blogs/using-autoit-to-create-application-shortcuts-from-google-chrome/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 09:57:05 +0000</pubDate>
		<dc:creator>Chinsummer</dc:creator>
				<category><![CDATA[其他]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[autoit]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://refly.net/?p=160</guid>
		<description><![CDATA[You can use Google Chrome&#8217;s "Application Shortcuts" function to create any website to open and feel like a standard windows desktop application, but how to auto install it instead of create it yourself? (or maybe you want to create an installer to your website for your customers) Google Chrome have different installation path in XP [...]


 相關的文章:<ol><li><a href='http://refly.net/blogs/google-chrome-standalone-installer/' rel='bookmark' title='Google Chrome Standalone installer'>Google Chrome Standalone installer</a></li>
<li><a href='http://refly.net/blogs/google-chrome-silent-install/' rel='bookmark' title='Google Chrome silent install'>Google Chrome silent install</a></li>
<li><a href='http://refly.net/blogs/%e3%80%8c%e7%84%a1%e6%b3%95%e5%ad%98%e5%8f%96windows-installer%e6%9c%8d%e5%8b%99%e3%80%8d%e7%9a%84%e8%a7%a3%e6%b1%ba%e6%96%b9%e6%b3%95/' rel='bookmark' title='「無法存取Windows Installer服務」的解決方法'>「無法存取Windows Installer服務」的解決方法</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You can use Google Chrome&#8217;s "Application Shortcuts" function to create any website to open and feel like a standard windows desktop application, but how to auto install it instead of create it yourself? (or maybe you want to create an installer to your website for your customers)</p>
<p>Google Chrome have different installation path in XP and Vista , it even have different installation target for EVERY USER!<span id="more-160"></span></p>
<p>Windows XP:</p>
<ul>
<li> %USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\chrome.exe</li>
</ul>
<p>Windows Vista:</p>
<ul>
<li>%USERPROFILE%\AppData\Local\Google\Chrome\Application\chrome.exe</li>
</ul>
<p>In order to doing so, I have created an AutoIt v3 script to make this possible:</p>
<p><code><br />
; Read in the path of Google Chrome's shortcut link<br />
$details = FileGetShortcut(@DesktopDir &amp; "\Google Chrome.lnk")<br />
MsgBox(0, "Path:", $details[0] ) </code></p>
<p><code> </code></p>
<p><code>;You can specify an Icon for your application shortcut<br />
$Icon = "C:\Windows\system32\SHELL32.dll"<br />
$IconNumber = 170<br />
$Description = "Your description of this shortcut"</p>
<p></code></p>
<p><code>;Now let's create the shortcut<br />
;You must modify the "Shortcut Test.lnk" to your desired link name<br />
;And YOUR WEBSITE ADDRESS is a must to.<br />
FileCreateShortcut($details[0],@DesktopDir &amp; "\Shortcut Test.lnk",@windowsdir,"--app=http://YOUR WEBSITE ADDRESS/",$Description, $Icon, "",$IconNumber)<br />
</code></p>


<p> 相關的文章:<ol><li><a href='http://refly.net/blogs/google-chrome-standalone-installer/' rel='bookmark' title='Google Chrome Standalone installer'>Google Chrome Standalone installer</a></li>
<li><a href='http://refly.net/blogs/google-chrome-silent-install/' rel='bookmark' title='Google Chrome silent install'>Google Chrome silent install</a></li>
<li><a href='http://refly.net/blogs/%e3%80%8c%e7%84%a1%e6%b3%95%e5%ad%98%e5%8f%96windows-installer%e6%9c%8d%e5%8b%99%e3%80%8d%e7%9a%84%e8%a7%a3%e6%b1%ba%e6%96%b9%e6%b3%95/' rel='bookmark' title='「無法存取Windows Installer服務」的解決方法'>「無法存取Windows Installer服務」的解決方法</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://refly.net/blogs/using-autoit-to-create-application-shortcuts-from-google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>「無法存取Windows Installer服務」的解決方法</title>
		<link>http://refly.net/blogs/%e3%80%8c%e7%84%a1%e6%b3%95%e5%ad%98%e5%8f%96windows-installer%e6%9c%8d%e5%8b%99%e3%80%8d%e7%9a%84%e8%a7%a3%e6%b1%ba%e6%96%b9%e6%b3%95/</link>
		<comments>http://refly.net/blogs/%e3%80%8c%e7%84%a1%e6%b3%95%e5%ad%98%e5%8f%96windows-installer%e6%9c%8d%e5%8b%99%e3%80%8d%e7%9a%84%e8%a7%a3%e6%b1%ba%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 15:04:52 +0000</pubDate>
		<dc:creator>Chinsummer</dc:creator>
				<category><![CDATA[其他]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://refly.net/?p=56</guid>
		<description><![CDATA[如果你在安裝程式的時候看到左邊這個視窗，裡頭寫著「無法存取Windows Installer服務。可能是因為Windows處於安全模式，或是Windows Installer並未正確安裝。請聯絡您的支援人員」，這個時候要怎麼解決呢？ 下載「Windows Installer 4.5 Redistributable &#8211; 繁體中文」就可以了，也就是WindowsXP-KB942288-v3-x86.exe 這個檔案，這是新版的 Windows Installer，可以解決你的問題。 相關的文章:Using AutoIt to create Application Shortcuts from Google Chrome 對話方塊[記憶體0&#215;0000000 不能為read或write]的解決方法 Google Chrome Standalone installer


 相關的文章:<ol><li><a href='http://refly.net/blogs/using-autoit-to-create-application-shortcuts-from-google-chrome/' rel='bookmark' title='Using AutoIt to create Application Shortcuts from Google Chrome'>Using AutoIt to create Application Shortcuts from Google Chrome</a></li>
<li><a href='http://refly.net/blogs/fix-your-windows-memory-error-dialog/' rel='bookmark' title='對話方塊[記憶體0&#215;0000000 不能為read或write]的解決方法'>對話方塊[記憶體0&#215;0000000 不能為read或write]的解決方法</a></li>
<li><a href='http://refly.net/blogs/google-chrome-standalone-installer/' rel='bookmark' title='Google Chrome Standalone installer'>Google Chrome Standalone installer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_55" class="wp-caption alignleft" style="width: 354px"><img class="size-full wp-image-55" title="2008-12-8-e4b88be58d88-10-56-56" src="http://refly.net/wp-content/uploads/2008/12/2008-12-8-e4b88be58d88-10-56-56.png" alt="無法存取windows Installer服務。" width="344" height="144" /><p class="wp-caption-text">無法存取windows Installer服務。</p></div>
<p>如果你在安裝程式的時候看到左邊這個視窗，裡頭寫著「無法存取Windows Installer服務。可能是因為Windows處於安全模式，或是Windows Installer並未正確安裝。請聯絡您的支援人員」，這個時候要怎麼解決呢？</p>
<p>下載「<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&amp;FamilyID=5a58b56f-60b6-4412-95b9-54d056d6f9f4">Windows Installer 4.5 Redistributable &#8211; 繁體中文</a>」就可以了，也就是WindowsXP-KB942288-v3-x86.exe 這個檔案，這是新版的 Windows Installer，可以解決你的問題。</p>


<p> 相關的文章:<ol><li><a href='http://refly.net/blogs/using-autoit-to-create-application-shortcuts-from-google-chrome/' rel='bookmark' title='Using AutoIt to create Application Shortcuts from Google Chrome'>Using AutoIt to create Application Shortcuts from Google Chrome</a></li>
<li><a href='http://refly.net/blogs/fix-your-windows-memory-error-dialog/' rel='bookmark' title='對話方塊[記憶體0&#215;0000000 不能為read或write]的解決方法'>對話方塊[記憶體0&#215;0000000 不能為read或write]的解決方法</a></li>
<li><a href='http://refly.net/blogs/google-chrome-standalone-installer/' rel='bookmark' title='Google Chrome Standalone installer'>Google Chrome Standalone installer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://refly.net/blogs/%e3%80%8c%e7%84%a1%e6%b3%95%e5%ad%98%e5%8f%96windows-installer%e6%9c%8d%e5%8b%99%e3%80%8d%e7%9a%84%e8%a7%a3%e6%b1%ba%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

