SharePointFBAPack
SharePointFBAPack copied to clipboard
Adjust Deploy.PSD to work with new version of Powershell
ccoulson[CodePlex]
An update to PowerShell made the default version of it incompatible with SharePoint (it now runs .Net 4.0 instead of 2.0)
Edit Deploy.ps1 and change lines like:
PowerShell -file
to:
PowerShell -version 2 -file ....
Which will force it to run in the previous version of Powershell.