<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using Visual SourceSafe &#8211; How to backup &amp; restore VSS DB</title>
	<atom:link href="http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-backup-restore-sourcesafe-vss-database</link>
	<description>SourceSafe, Source Control, Software Development</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:48:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: tirumala</title>
		<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/comment-page-2#comment-3966</link>
		<dc:creator>tirumala</dc:creator>
		<pubDate>Wed, 14 Dec 2011 04:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevingao.net/?p=465#comment-3966</guid>
		<description>i am performing regular backups using the wizard &quot;get latest version&quot; but dunno how to restore it.please help me</description>
		<content:encoded><![CDATA[<p>i am performing regular backups using the wizard &#8220;get latest version&#8221; but dunno how to restore it.please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikas singh</title>
		<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/comment-page-2#comment-3956</link>
		<dc:creator>vikas singh</dc:creator>
		<pubDate>Mon, 12 Dec 2011 10:32:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevingao.net/?p=465#comment-3956</guid>
		<description>i want to asked a qwestion how to make controller in vss. and how to use visusl source safe .install to use.</description>
		<content:encoded><![CDATA[<p>i want to asked a qwestion how to make controller in vss. and how to use visusl source safe .install to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/comment-page-2#comment-3461</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Sat, 27 Aug 2011 02:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevingao.net/?p=465#comment-3461</guid>
		<description>Hi,

I have a vss backup file taken some time back but I do not know which VSS version it is as the harddisk got crashed but could not find the .ssa file  instead it has the folders like data, temp and users along with srcsafe configuration file.
Can you please help me how to restore the vss to a folder.
Thanks in advance

Raj</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have a vss backup file taken some time back but I do not know which VSS version it is as the harddisk got crashed but could not find the .ssa file  instead it has the folders like data, temp and users along with srcsafe configuration file.<br />
Can you please help me how to restore the vss to a folder.<br />
Thanks in advance</p>
<p>Raj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bk</title>
		<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/comment-page-2#comment-3247</link>
		<dc:creator>bk</dc:creator>
		<pubDate>Thu, 10 Mar 2011 12:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevingao.net/?p=465#comment-3247</guid>
		<description>Made a bat file for automatic transfer that creates a datefile, put it in Task Scheduler.
:

Need to be admin login, this logs, and backup everything.


echo off

FOR /F &quot;TOKENS=1* DELIMS= &quot; %%A IN (&#039;DATE/T&#039;) DO SET CDATE=%%B
FOR /F &quot;TOKENS=1,2 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET mm=%%B
FOR /F &quot;TOKENS=1,2 DELIMS=/ eol=/&quot; %%A IN (&#039;echo %CDATE%&#039;) DO SET dd=%%B
FOR /F &quot;TOKENS=2,3 DELIMS=/ &quot; %%A IN (&#039;echo %CDATE%&#039;) DO SET yyyy=%%B
SET date=%mm%%dd%%yyyy%

&quot;C:\Program Files (x86)\Microsoft Visual SourceSafe\ssarc.exe&quot; -d- -i -yadmin,secret -olog.txt &quot;-cArchive Everything&quot; %date%_archive.ssa $/</description>
		<content:encoded><![CDATA[<p>Made a bat file for automatic transfer that creates a datefile, put it in Task Scheduler.<br />
:</p>
<p>Need to be admin login, this logs, and backup everything.</p>
<p>echo off</p>
<p>FOR /F &#8220;TOKENS=1* DELIMS= &#8221; %%A IN (&#8216;DATE/T&#8217;) DO SET CDATE=%%B<br />
FOR /F &#8220;TOKENS=1,2 eol=/ DELIMS=/ &#8221; %%A IN (&#8216;DATE/T&#8217;) DO SET mm=%%B<br />
FOR /F &#8220;TOKENS=1,2 DELIMS=/ eol=/&#8221; %%A IN (&#8216;echo %CDATE%&#8217;) DO SET dd=%%B<br />
FOR /F &#8220;TOKENS=2,3 DELIMS=/ &#8221; %%A IN (&#8216;echo %CDATE%&#8217;) DO SET yyyy=%%B<br />
SET date=%mm%%dd%%yyyy%</p>
<p>&#8220;C:\Program Files (x86)\Microsoft Visual SourceSafe\ssarc.exe&#8221; -d- -i -yadmin,secret -olog.txt &#8220;-cArchive Everything&#8221; %date%_archive.ssa $/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://www.kevingao.net/sourcesafe/how-to-backup-restore-sourcesafe-vss-database.html/comment-page-1#comment-3075</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Wed, 08 Dec 2010 09:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevingao.net/?p=465#comment-3075</guid>
		<description>Hi.

I have problem while check in for particular file in VSS ,
file size is 1.3 MB.
its reporting error like &quot;There was s failure uploading the URL&quot;.
will u tell me why this is happening?and what should I do to resolve it?</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>I have problem while check in for particular file in VSS ,<br />
file size is 1.3 MB.<br />
its reporting error like &#8220;There was s failure uploading the URL&#8221;.<br />
will u tell me why this is happening?and what should I do to resolve it?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

