# Comment - Powershell (PS) commands needed for the Timesheet application created by Paul Beck 19/01/2011 # Comment - PS cmds to install the wsp and activate the feature Add-SPSolution e:\PaulB-Timesheet.wsp Install-SPSolution –Identity PaulB-Timesheet.wsp –WebApplication http://intranet.dev –GACDeployment Install-SPFeature timesheet_timesheets -force Enable-SPFeature –Identity timesheet_timesheets –url http://intranet.dev # Comment - PS cmds to deactivate the feature and remove the wsp # Comment = You should not need to run the cmds below unless you wish to reinstall Disable-SPFeature –Identity timesheet_timesheets –url http://intranet.dev UnInstall-SPFeature timesheet_timesheets -force UnInstall-SPSolution –Identity PaulB-Timesheet.wsp –WebApplication http://intranet.dev Remove-SPSolution PaulB-Timesheet.wsp