Reza on blogging [MVP]

THIS BLOG HAS MOVED TO: http://blogs.devhorizon.com/reza

Subscriptions

<January 2009>
SuMoTuWeThFrSa
28293031123
45678910
11121314151617
18192021222324
25262728293031
1234567

News



toronto.sharepoint.camp


Navigation

Post Categories

Other Bloggers

Personal Links

Sunday, November 26, 2006 - Posts

Feature Deployment Batch Files

In case you use them on regular basis as I do and until the final version of VS.NET extension is released:

 

Deploy.cmd:
-----------
@echo off

SET SPDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\12"

iisreset /stop

xcopy /d /y /e MOSSDev %SPDIR%\TEMPLATE\FEATURES\

iisreset /start

 

InstallFeature.cmd:
-------------------

SET SPDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\"

%SPDIR%stsadm -o installfeature -n MOSSDev -force

 


ActivateFeature.cmd:
--------------------

SET SPDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\"

%SPDIR%stsadm -o activatefeature -n MOSSDev -url http://moss.litwareinc.com


posted Sunday, November 26, 2006 10:38 PM by admin with 0 Comments

Powered by Community Server, by Telligent Systems