Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

49,035

Downloads of v 10.2.5.20200322:

205

Last Update:

02 May 2020

Package Maintainer(s):

Software Author(s):

  • Gabriel Topala

Tags:

siw trial system-information hardware software network memory intel amd processor cpu motherboard

siw (Install)

This is not the latest version of siw (Install) available.

  • 1
  • 2
  • 3

10.2.5.20200322 | Updated: 02 May 2020

Downloads:

49,035

Downloads of v 10.2.5.20200322:

205

Maintainer(s):

Software Author(s):

  • Gabriel Topala

siw (Install) 10.2.5.20200322

This is not the latest version of siw (Install) available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install siw (Install), run the following command from the command line or from PowerShell:

>

To upgrade siw (Install), run the following command from the command line or from PowerShell:

>

To uninstall siw (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade siw -y --source="'INTERNAL REPO URL'" --version="'10.2.5.20200322'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade siw -y --source="'INTERNAL REPO URL'" --version="'10.2.5.20200322'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install siw
  win_chocolatey:
    name: siw
    version: '10.2.5.20200322'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'siw' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '10.2.5.20200322'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller siw
{
    Name     = "siw"
    Version  = "10.2.5.20200322"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'siw':
  ensure   => '10.2.5.20200322',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 02 May 2020.

Description

System Information for Windows - Everything you want to know about your computer

Commercial software

You can try SIW before you buy.
screenshot


tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'siw'
$packageSearch = "$packageName *"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)

Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
                         'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
                         'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
                 -ErrorAction:SilentlyContinue `
| Where-Object   {$_.DisplayName -like $packageSearch} `
| ForEach-Object {Uninstall-ChocolateyPackage -PackageName "$packageName" `
                                              -FileType "$installerType" `
                                              -SilentArgs "$($silentArgs)" `
                                              -File "$($_.UninstallString)" `
                                              -ValidExitCodes $validExitCodes}
tools\chocolateyInstall.template

$ErrorActionPreference = 'Stop';


$packageName= 'siw'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://siw64.com/download/siwtrial-setup.exe'
$url64      = 'https://siw64.com/download/siwtrial-setup.exe'

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  url           = $url
  url64bit      = $url64

  silentArgs    = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
  validExitCodes= @(0, 3010, 1641)

  softwareName  = 'siw*'
  checksum      = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
  checksumType  = 'md5'
  checksum64    = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
  checksumType64= 'md5'
}

Install-ChocolateyPackage @packageArgs

















tools\chocolateyInstall.ps1

$ErrorActionPreference = 'Stop';


$packageName= 'siw'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://siw64.com/download/siwtrial-setup.exe'
$url64      = 'https://siw64.com/download/siwtrial-setup.exe'

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  url           = $url
  url64bit      = $url64

  silentArgs    = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
  validExitCodes= @(0, 3010, 1641)

  softwareName  = 'siw*'
  checksum      = '374E4786CC0E252D155266C73B2BA226'
  checksumType  = 'md5'
  checksum64    = '374E4786CC0E252D155266C73B2BA226'
  checksumType64= 'md5'
}

Install-ChocolateyPackage @packageArgs


















Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
siw (Install) 13.8.3.20231029 25 Friday, November 24, 2023 Approved
siw (Install) 13.8.2.20231029 20 Wednesday, November 22, 2023 Approved
siw (Install) 13.8.1.20231029 422 Wednesday, November 8, 2023 Approved
siw (Install) 13.8.0.20231029 212 Sunday, October 29, 2023 Approved
siw (Install) 13.7.8.20230816 267 Monday, October 23, 2023 Approved
siw (Install) 13.7.7.20230816 356 Wednesday, October 11, 2023 Approved
siw (Install) 13.7.6.20230816 42 Sunday, October 8, 2023 Approved
siw (Install) 13.7.5.20230816 252 Wednesday, October 4, 2023 Approved
siw (Install) 13.7.4.20230816 265 Thursday, September 28, 2023 Approved
siw (Install) 13.7.3.20230816 68 Sunday, September 24, 2023 Approved
siw (Install) 13.7.2.20230816 385 Saturday, September 16, 2023 Approved
siw (Install) 13.7.1.20230816 202 Tuesday, September 5, 2023 Approved
siw (Install) 13.7.0.20230816 643 Wednesday, August 16, 2023 Approved
siw (Install) 13.6.4.20230621 949 Saturday, August 5, 2023 Approved
siw (Install) 13.6.3.20230621 410 Saturday, July 29, 2023 Approved
siw (Install) 13.6.1.20230621 937 Sunday, July 2, 2023 Approved
siw (Install) 13.6.0.20230621 502 Wednesday, June 21, 2023 Approved
siw (Install) 13.5.5.20230517 53 Friday, June 16, 2023 Approved
siw (Install) 13.5.4.20230517 187 Wednesday, June 14, 2023 Approved
siw (Install) 13.5.3.20230517 1307 Sunday, May 28, 2023 Approved
siw (Install) 13.5.2.20230517 448 Friday, May 19, 2023 Approved
siw (Install) 13.5.1.20230517 65 Thursday, May 18, 2023 Approved
siw (Install) 13.5.0.20230517 53 Wednesday, May 17, 2023 Approved
siw (Install) 13.4.4.20230424 196 Thursday, May 4, 2023 Approved
siw (Install) 13.4.3.20230424 81 Tuesday, May 2, 2023 Approved
siw (Install) 13.4.2.20230424 94 Sunday, April 30, 2023 Approved
siw (Install) 13.4.1.20230424 134 Wednesday, April 26, 2023 Approved
siw (Install) 13.4.0.20230424 76 Monday, April 24, 2023 Approved
siw (Install) 13.3.0.20230419 144 Wednesday, April 19, 2023 Approved
siw (Install) 13.2.19.20230204 103 Sunday, April 16, 2023 Approved
siw (Install) 13.2.18.20230204 155 Monday, April 10, 2023 Approved
siw (Install) 13.2.17.20230204 156 Sunday, April 2, 2023 Approved
siw (Install) 13.2.16.20230204 174 Sunday, March 19, 2023 Approved
siw (Install) 13.2.15.20230204 108 Wednesday, March 15, 2023 Approved
siw (Install) 13.2.13.20230204 137 Monday, March 6, 2023 Approved
siw (Install) 13.2.11.20230204 166 Saturday, February 25, 2023 Approved
siw (Install) 13.2.9.20230204 83 Wednesday, February 22, 2023 Approved
siw (Install) 13.2.8.20230204 89 Monday, February 20, 2023 Approved
siw (Install) 13.2.0.20230204 176 Saturday, February 4, 2023 Approved
siw (Install) 13.1.0.20230112 227 Thursday, January 12, 2023 Approved
siw (Install) 13.0.2.20230102 95 Sunday, January 8, 2023 Approved
siw (Install) 13.0.1.20230102 112 Saturday, January 7, 2023 Approved
siw (Install) 13.0.0.20230102 91 Monday, January 2, 2023 Approved
siw (Install) 12.5.7.20221103 130 Tuesday, December 27, 2022 Approved
siw (Install) 12.5.6.20221103 79 Sunday, December 25, 2022 Approved
siw (Install) 12.5.3.20221103 160 Sunday, December 11, 2022 Approved
siw (Install) 12.5.2.20221103 155 Saturday, December 3, 2022 Approved
siw (Install) 12.5.1.20221103 164 Sunday, November 13, 2022 Approved
siw (Install) 12.5.0.20221103 166 Thursday, November 3, 2022 Approved
siw (Install) 12.4.8.20220817 127 Saturday, October 29, 2022 Approved
siw (Install) 12.4.7.20220817 103 Monday, October 24, 2022 Approved
siw (Install) 12.4.6.20220817 136 Friday, October 21, 2022 Approved
siw (Install) 12.4.5.20220817 97 Monday, October 17, 2022 Approved
siw (Install) 12.4.4.20220817 158 Friday, October 14, 2022 Approved
siw (Install) 12.4.3.20220817 111 Monday, October 10, 2022 Approved
siw (Install) 12.4.1.20220817 125 Wednesday, October 5, 2022 Approved
siw (Install) 12.4.0.20220817 234 Wednesday, August 17, 2022 Approved
siw (Install) 12.3.13.20220521 106 Sunday, August 14, 2022 Approved
siw (Install) 12.3.12.20220521 141 Tuesday, August 9, 2022 Approved
siw (Install) 12.3.11.20220521 97 Sunday, August 7, 2022 Approved
siw (Install) 12.3.10.20220521 185 Wednesday, July 20, 2022 Approved
siw (Install) 12.3.9.20220521 156 Thursday, July 14, 2022 Approved
siw (Install) 12.3.8.20220521 111 Monday, July 11, 2022 Approved
siw (Install) 12.3.7.20220521 169 Saturday, July 2, 2022 Approved
siw (Install) 12.3.6.20220521 152 Saturday, June 25, 2022 Approved
siw (Install) 12.3.5.20220521 150 Saturday, June 18, 2022 Approved
siw (Install) 12.3.4.20220521 97 Wednesday, June 15, 2022 Approved
siw (Install) 12.3.3.20220521 117 Sunday, June 12, 2022 Approved
siw (Install) 12.3.2.20220521 159 Sunday, June 5, 2022 Approved
siw (Install) 12.3.1.20220521 131 Friday, June 3, 2022 Approved
siw (Install) 12.3.0.20220521 186 Saturday, May 21, 2022 Approved
siw (Install) 12.2.2.20220505 107 Monday, May 16, 2022 Approved
siw (Install) 12.2.1.20220505 146 Friday, May 6, 2022 Approved
siw (Install) 12.2.0.20220505 100 Thursday, May 5, 2022 Approved
siw (Install) 12.1.4.20220317 149 Friday, April 29, 2022 Approved
siw (Install) 12.1.3.20220317 106 Monday, April 25, 2022 Approved
siw (Install) 12.1.2.20220317 189 Wednesday, April 13, 2022 Approved
siw (Install) 12.1.1.20220317 201 Saturday, March 26, 2022 Approved
siw (Install) 12.1.0.20220317 165 Thursday, March 17, 2022 Approved
siw (Install) 12.0.10.20220103 88 Wednesday, March 16, 2022 Approved
siw (Install) 12.0.9.20220103 101 Monday, March 14, 2022 Approved
siw (Install) 12.0.8.20220103 157 Tuesday, March 8, 2022 Approved
siw (Install) 12.0.7.20220103 100 Sunday, March 6, 2022 Approved
siw (Install) 12.0.6.20220103 141 Thursday, March 3, 2022 Approved
siw (Install) 12.0.5.20220103 173 Wednesday, February 23, 2022 Approved
siw (Install) 12.0.4.20220103 102 Tuesday, February 22, 2022 Approved
siw (Install) 12.0.3.20220103 175 Sunday, February 13, 2022 Approved
siw (Install) 12.0.2.20220103 175 Tuesday, January 25, 2022 Approved
siw (Install) 12.0.1.20220103 111 Sunday, January 23, 2022 Approved
siw (Install) 12.0.0.20220103 181 Monday, January 3, 2022 Approved
siw (Install) 11.7.4.20211116 189 Sunday, November 28, 2021 Approved
siw (Install) 11.7.3.20211116 141 Tuesday, November 23, 2021 Approved
siw (Install) 11.7.2.20211116 109 Sunday, November 21, 2021 Approved
siw (Install) 11.7.0.20211116 119 Tuesday, November 16, 2021 Approved
siw (Install) 11.6.12.20210824 103 Saturday, November 13, 2021 Approved
siw (Install) 11.6.11.20210824 91 Friday, November 12, 2021 Approved
siw (Install) 11.6.10.20210824 130 Saturday, November 6, 2021 Approved
siw (Install) 11.6.9.20210824 120 Wednesday, November 3, 2021 Approved
siw (Install) 11.6.8.20210824 114 Saturday, October 30, 2021 Approved
siw (Install) 11.6.6.20210824 226 Saturday, October 9, 2021 Approved
siw (Install) 11.6.4.20210824 147 Friday, October 1, 2021 Approved
siw (Install) 11.6.3.20210824 162 Sunday, September 19, 2021 Approved
siw (Install) 11.6.1.20210824 193 Saturday, August 28, 2021 Approved
siw (Install) 11.6.0.20210824 116 Tuesday, August 24, 2021 Approved
siw (Install) 11.5.2.20210811 134 Saturday, August 21, 2021 Approved
siw (Install) 11.5.0.20210811 152 Wednesday, August 11, 2021 Approved
siw (Install) 11.4.6.20210602 147 Friday, July 30, 2021 Approved
siw (Install) 11.4.5.20210602 187 Monday, June 21, 2021 Approved
siw (Install) 11.4.2.20210602 148 Saturday, June 5, 2021 Approved
siw (Install) 11.4.0.20210602 85 Wednesday, June 2, 2021 Approved
siw (Install) 11.3.0.20210526 89 Wednesday, May 26, 2021 Approved
siw (Install) 11.2.3.20210425 77 Monday, May 24, 2021 Approved
siw (Install) 11.2.2.20210425 90 Sunday, May 16, 2021 Approved
siw (Install) 11.2.1.20210425 84 Sunday, May 9, 2021 Approved
siw (Install) 11.2.0.20210425 102 Monday, April 26, 2021 Approved
siw (Install) 11.1.9.20210220 92 Saturday, April 17, 2021 Approved
siw (Install) 11.1.8.20210220 94 Wednesday, April 7, 2021 Approved
siw (Install) 11.1.7.20210220 98 Monday, April 5, 2021 Approved
siw (Install) 11.1.6.20210220 78 Sunday, March 28, 2021 Approved
siw (Install) 11.1.4.20210220 90 Sunday, March 21, 2021 Approved
siw (Install) 11.1.2.20210220 108 Saturday, March 13, 2021 Approved
siw (Install) 11.1.1.20210220 117 Sunday, February 28, 2021 Approved
siw (Install) 11.1.0.20210220 148 Saturday, February 20, 2021 Approved
siw (Install) 11.0.1.20210211 137 Sunday, February 14, 2021 Approved
siw (Install) 11.0.0.20210211 104 Thursday, February 11, 2021 Approved
siw (Install) 10.6.8.20200915 179 Monday, December 28, 2020 Approved
siw (Install) 10.6.7.20200915 101 Wednesday, December 16, 2020 Approved
siw (Install) 10.6.6.20200915 102 Sunday, December 13, 2020 Approved
siw (Install) 10.6.5.20200915 130 Sunday, November 22, 2020 Approved
siw (Install) 10.6.4.20200915 116 Monday, November 16, 2020 Approved
siw (Install) 10.6.2.20200915 134 Sunday, November 8, 2020 Approved
siw (Install) 10.6.1.20200915 155 Wednesday, October 14, 2020 Approved
siw (Install) 10.6.0.20200915 147 Tuesday, September 15, 2020 Approved
siw (Install) 10.5.4.20200902 115 Saturday, September 12, 2020 Approved
siw (Install) 10.5.3.20200902 127 Friday, September 4, 2020 Approved
siw (Install) 10.5.2.20200902 106 Thursday, September 3, 2020 Approved
siw (Install) 10.4.6.20200708 125 Saturday, August 29, 2020 Approved
siw (Install) 10.4.5.20200708 112 Friday, August 28, 2020 Approved
siw (Install) 10.4.4.20200708 140 Saturday, August 22, 2020 Approved
siw (Install) 10.4.3.20200708 140 Sunday, August 16, 2020 Approved
siw (Install) 10.4.2.20200708 142 Monday, August 10, 2020 Approved
siw (Install) 10.4.1.20200708 128 Tuesday, July 28, 2020 Approved
siw (Install) 10.4.0.20200708 173 Wednesday, July 8, 2020 Approved
siw (Install) 10.3.4.20200602 130 Sunday, July 5, 2020 Approved
siw (Install) 10.3.3.20200602 124 Sunday, June 28, 2020 Approved
siw (Install) 10.3.2.20200602 152 Friday, June 19, 2020 Approved
siw (Install) 10.3.1.20200602 195 Saturday, June 13, 2020 Approved
siw (Install) 10.3.0.20200602 198 Tuesday, June 2, 2020 Approved
siw (Install) 10.2.8.20200322 148 Thursday, May 28, 2020 Approved
siw (Install) 10.2.7.20200322 176 Sunday, May 10, 2020 Approved
siw (Install) 10.2.6.20200322 186 Wednesday, May 6, 2020 Approved
siw (Install) 10.2.5.20200322 205 Saturday, May 2, 2020 Approved
siw (Install) 10.2.4.20200322 150 Friday, May 1, 2020 Approved
siw (Install) 10.2.3.20200322 155 Sunday, April 26, 2020 Approved
siw (Install) 10.2.2.20200322 168 Monday, April 20, 2020 Approved
siw (Install) 10.2.1.20200322 202 Wednesday, April 8, 2020 Approved
siw (Install) 10.2.0.20200322 185 Sunday, March 22, 2020 Approved
siw (Install) 10.1.2.20200311 163 Wednesday, March 18, 2020 Approved
siw (Install) 10.1.1.20200311 206 Friday, March 13, 2020 Approved
siw (Install) 10.1.0.20200311 169 Wednesday, March 11, 2020 Approved
siw (Install) 10.0.5.20200128 184 Saturday, March 7, 2020 Approved
siw (Install) 10.0.4.20200128 190 Sunday, March 1, 2020 Approved
siw (Install) 10.0.3.20200128 202 Monday, February 17, 2020 Approved
siw (Install) 10.0.2.20200128 203 Sunday, February 9, 2020 Approved
siw (Install) 10.0.0.20200128 209 Tuesday, January 28, 2020 Approved
siw (Install) 9.5.7.20191112 211 Monday, December 30, 2019 Approved
siw (Install) 9.5.6.20191112 180 Friday, December 13, 2019 Approved
siw (Install) 9.5.5.20191112 187 Sunday, December 8, 2019 Approved
siw (Install) 9.5.4.20191112 194 Friday, December 6, 2019 Approved
siw (Install) 9.5.3.20191112 200 Tuesday, December 3, 2019 Approved
siw (Install) 9.5.2.20191112 167 Monday, November 18, 2019 Approved
siw (Install) 9.5.1.20191112 196 Sunday, November 17, 2019 Approved
siw (Install) 9.5.0.20191112 172 Tuesday, November 12, 2019 Approved
siw (Install) 9.4.8.20191001 233 Saturday, November 9, 2019 Approved
siw (Install) 9.4.7.20191001 208 Wednesday, November 6, 2019 Approved
siw (Install) 9.4.6.20191001 160 Sunday, November 3, 2019 Approved
siw (Install) 9.4.5.20191001 218 Saturday, November 2, 2019 Approved
siw (Install) 9.4.4.20191001 183 Saturday, October 5, 2019 Approved
siw (Install) 9.4.2.20191001 140 Friday, October 4, 2019 Approved
siw (Install) 9.4.0.20191001 224 Tuesday, October 1, 2019 Approved
siw (Install) 9.3.7.20190707 217 Thursday, September 26, 2019 Approved
siw (Install) 9.3.6.20190707 226 Tuesday, September 24, 2019 Approved
siw (Install) 9.3.5.20190707 189 Saturday, September 21, 2019 Approved
siw (Install) 9.3.4.20190707 309 Monday, August 5, 2019 Approved
siw (Install) 9.3.3.20190707 239 Sunday, July 21, 2019 Approved
siw (Install) 9.3.2.20190707 214 Friday, July 12, 2019 Approved
siw (Install) 9.3.1.20190707 199 Thursday, July 11, 2019 Approved
siw (Install) 9.3.0.20190707 209 Sunday, July 7, 2019 Approved
siw (Install) 9.2.2.20190618 229 Tuesday, July 2, 2019 Approved
siw (Install) 9.2.1.20190618 203 Monday, July 1, 2019 Approved
siw (Install) 9.2.0.20190618 205 Tuesday, June 18, 2019 Approved
siw (Install) 9.1.10.20190409 254 Thursday, June 13, 2019 Approved
siw (Install) 9.1.9.20190409 224 Wednesday, June 12, 2019 Approved
siw (Install) 9.1.8.20190409 248 Monday, June 3, 2019 Approved
siw (Install) 9.1.7.20190409 205 Saturday, June 1, 2019 Approved
siw (Install) 9.1.6.20190409 217 Wednesday, May 22, 2019 Approved
siw (Install) 9.1.5.20190409 226 Tuesday, May 14, 2019 Approved
siw (Install) 9.1.3.20190409 178 Thursday, May 9, 2019 Approved
siw (Install) 9.1.2.20190409 232 Saturday, May 4, 2019 Approved
siw (Install) 9.1.0.20190409 230 Tuesday, April 9, 2019 Approved
siw (Install) 9.0.1.20190115 286 Sunday, March 10, 2019 Approved
siw (Install) 9.0.0.20190115 298 Tuesday, January 15, 2019 Approved
siw (Install) 8.4.2.20181120 289 Tuesday, November 27, 2018 Approved
siw (Install) 8.4.0.20181120 249 Tuesday, November 20, 2018 Approved
siw (Install) 8.3.5.20180710 312 Saturday, October 27, 2018 Approved
siw (Install) 8.3.4.20180710 253 Sunday, September 23, 2018 Approved
siw (Install) 8.3.3.20180710 308 Wednesday, September 12, 2018 Approved
siw (Install) 8.3.2.20180710 287 Wednesday, July 25, 2018 Approved
siw (Install) 8.3.1.20180710 296 Saturday, July 21, 2018 Approved
siw (Install) 8.3.0.20180710 325 Tuesday, July 10, 2018 Approved
siw (Install) 8.2.3.20180502 262 Friday, June 29, 2018 Approved
siw (Install) 8.2.2.20180502 322 Friday, June 1, 2018 Approved
siw (Install) 8.2.1.20180502 379 Wednesday, May 2, 2018 Approved
siw (Install) 8.2.0.20180502 310 Wednesday, May 2, 2018 Approved
siw (Install) 8.1.1.20180227 318 Saturday, April 21, 2018 Approved
siw (Install) 8.1.0.20180227 439 Tuesday, February 27, 2018 Approved
siw (Install) 8.0.4.20180106 361 Saturday, February 10, 2018 Approved
siw (Install) 8.0.2.20180106 405 Thursday, January 25, 2018 Approved
siw (Install) 8.0.1.20180106 368 Saturday, January 13, 2018 Approved
siw (Install) 8.0.0.20180106 366 Saturday, January 6, 2018 Approved
siw (Install) 7.8.2.20171111 456 Tuesday, November 14, 2017 Approved
siw (Install) 7.8.1.20171111 399 Saturday, November 11, 2017 Approved

Program

Package

  • Manually built and uploaded by gtopala

This package has no dependencies.

Discussion for the siw (Install) Package

Ground Rules:

  • This discussion is only about siw (Install) and the siw (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or siw (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus