So we can include an install/uninstall powershell scripts in a NuGet package. I tried, but my install.ps1 does not work. Is there any possibility to find out why? Debugging, logging, anything?

Update

Please not that the script is executed as part of an installation process of Nuget package. It may be very Nuget-specific.

link|improve this question

50% accept rate
feedback

4 Answers

This is how I was able to step-through install.ps1 using PowerShell ISE:

To be able to step through execution of the install script using PowerShell ISE follow these steps: Enable execution of assemblies built with .Net 4

Either

C:\Windows\System32\WindowsPowerShell\v1.0 Or

C:\Windows\SysWOW64\WindowsPowerShell\v1.0

Depending on which version of PS you're using If files are not there create them

Either C:\Windows\System32\WindowsPowerShell\v1.0 Or C:\Windows\SysWOW64\WindowsPowerShell\v1.0

Depending on which version of PS you're using

If config files are not there create them

powershell.exe.config:

<configuration>  
    <startup useLegacyV2RuntimeActivationPolicy="true">  
        <supportedRuntime version="v4.0.30319"/>  
        <supportedRuntime version="v2.0.50727"/>  
    </startup>  
</configuration>  

powershell_ise.exe.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <startup>
      <supportedRuntime version="v4.0.30319" />
    </startup>
</configuration>

To be able to run PowerShell scripts included with a NuGet package the execution policy will need to be changed:

Set-ExecutionPolicy RemoteSigned -Scope Process

Copy install.ps1 that you want to debug and modify it's contents as follows:

delete the parameters block

param(
    [Parameter(Mandatory=$true)] [string]   $installPath,
    [Parameter(Mandatory=$true)] [string]   $toolsPath,
    [Parameter(Mandatory=$true)]            $package,
    [Parameter(Mandatory=$true)]            $project
)

import a module which allows to use nuget cmdlets outside of the VS host process

Download http://community.sharpdevelop.net/blogs/mattward/NuGet/NuGetOutsideVisualStudio.zip Extract contents of the bin folder to some place and then import the PackageManagement.Cmdlets.dll

like so:

import-module "C:\dev\NuGetOutsideVisualStudio\bin\PackageManagement.Cmdlets.dll"

now you are able to set all the parameters manually like so:

$toolsPath="C:\dev\demo-solution\packages\X1.Registration.DbUpdate.0.4\tools"
$installPath="C:\dev\demo-solution\packages\X1.Registration.DbUpdate.0.4"

set-project DemoSolution.Logic C:\dev\demo-solution\DemoSolution.sln

$project = Get-Project -name DemoSolution.Logic

That still leaves $package object unset but I found that script doesn't really refer to that parameter

References: http://community.sharpdevelop.net/blogs/mattward/archive/2011/06/12/InstallingNuGetPackagesOutsideVisualStudio.aspx

link|improve this answer
feedback

Use Set-PsDebug -trace 2 to see what is happening.

link|improve this answer
Does nothing. It may be Nuget-specific. – dkl Aug 12 '11 at 19:52
@dkl - I will try out and update – manojlds Aug 12 '11 at 19:56
This worked for me while I tried to debug cmdlets in a powershell package. – somori Oct 4 '11 at 11:00
feedback

You might call Start-Transcript at the beginning of install script and Stop-Transcript at the end. You would probably wrap the install code like this:

try {
  $ErrorActionPreference = 'stop'  # stop on error
  Start-Transcript c:\a.txt
  ...
}
catch {
  write-host $_
}
finally {
  Stop-Transcript
}

Also $ErrorActionPreference = 'inquire' (instead of stop) could possibly work. However, no chance to try it now. See http://tasteofpowershell.blogspot.com/2008/07/handling-errors-in-powershell.html

link|improve this answer
This is not allowed for NuGet packages: " Install failed. Rolling back... This host does not support transcription. " – dkl Aug 11 '11 at 20:40
Only the console host supports transcription. – x0n Dec 21 '11 at 4:09
feedback

Run your scripts through the Package Manager Console in VS -- and anything that causes an error along the way will be written out in red.

Also, you can write diagnostic trace type info with Write-Host to the same console.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.