diff --git a/TimberWinR.ServiceHost/TimberWinR.ServiceHost.csproj b/TimberWinR.ServiceHost/TimberWinR.ServiceHost.csproj index 1bbaa5b..7ff089c 100644 --- a/TimberWinR.ServiceHost/TimberWinR.ServiceHost.csproj +++ b/TimberWinR.ServiceHost/TimberWinR.ServiceHost.csproj @@ -32,6 +32,9 @@ prompt 4 + + timberwinr.ico + False @@ -62,6 +65,7 @@ + PreserveNewest diff --git a/TimberWinR.ServiceHost/timberwinr.ico b/TimberWinR.ServiceHost/timberwinr.ico new file mode 100644 index 0000000..950ee59 Binary files /dev/null and b/TimberWinR.ServiceHost/timberwinr.ico differ diff --git a/chocolateyUninstall.ps1.template b/chocolateyUninstall.ps1.template index 301d058..ee4286b 100644 --- a/chocolateyUninstall.ps1.template +++ b/chocolateyUninstall.ps1.template @@ -1,7 +1,7 @@ $packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in messages $installerType = 'msi' #only one of these: exe, msi, msu $url = 'http://www.ericfontana.com/TimberWinR/TimberWinR-${version}.0.msi' # download url -$silentArgs = '{B60FDD3E-615F-42C1-B587-6B46D262EF15} /quiet' +$silentArgs = '{4C831FB7-1FD1-4AF2-BF52-79781775EAAB} /quiet' $validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx UnInstall-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes