Reza on blogging [MVP]

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

Subscriptions

<February 2012>
SuMoTuWeThFrSa
2930311234
567891011
12131415161718
19202122232425
26272829123
45678910

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