Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

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

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
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

Downloads:

87,011

Downloads of v 11.6.8.20210824:

168

Last Update:

30 Oct 2021

Package Maintainer(s):

Software Author(s):

  • Gabriel Topala

Tags:

siw (Install)

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

  • 1
  • 2
  • 3

11.6.8.20210824 | Updated: 30 Oct 2021

Downloads:

87,011

Downloads of v 11.6.8.20210824:

168

Maintainer(s):

Software Author(s):

  • Gabriel Topala

siw (Install) 11.6.8.20210824

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

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Gabriel Topala. The inclusion of Gabriel Topala trademark(s), if any, upon this webpage is solely to identify Gabriel Topala goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

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="'11.6.8.20210824'" [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="'11.6.8.20210824'" 
$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: '11.6.8.20210824'
    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  '11.6.8.20210824'
end

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


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

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


package { 'siw':
  ensure   => '11.6.8.20210824',
  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 30 Oct 2021.

Description

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

Commercial software

You can try SIW before you buy.
screenshot


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      = '458B9416F70E7C75A837F09643811DBCAD93C84F69506C287B0E8029DD718584'
  checksumType  = 'sha256'
  checksum64    = '458B9416F70E7C75A837F09643811DBCAD93C84F69506C287B0E8029DD718584'
  checksumType64= 'sha256'
}

Install-ChocolateyPackage @packageArgs

















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  = 'sha256'
  checksum64    = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
  checksumType64= 'sha256'
}

Install-ChocolateyPackage @packageArgs

















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}

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) 15.7.4.20250713 17 Saturday, August 16, 2025 Approved
siw (Install) 15.7.2.20250713 57 Monday, August 4, 2025 Approved
siw (Install) 15.7.1.20250713 20 Saturday, August 2, 2025 Approved
siw (Install) 15.7.0.20250713 42 Sunday, July 13, 2025 Approved
siw (Install) 15.6.1.20250629 55 Sunday, June 29, 2025 Approved
siw (Install) 15.5.0.20250624 43 Tuesday, June 24, 2025 Approved
siw (Install) 15.4.5.20250503 32 Thursday, June 19, 2025 Approved
siw (Install) 15.4.4.20250503 80 Sunday, June 15, 2025 Approved
siw (Install) 15.4.3.20250503 87 Saturday, May 10, 2025 Approved
siw (Install) 15.4.2.20250503 39 Sunday, May 4, 2025 Approved
siw (Install) 15.4.0.20250503 29 Saturday, May 3, 2025 Approved
siw (Install) 15.3.1.20250430 38 Thursday, May 1, 2025 Approved
siw (Install) 15.3.0.20250430 21 Wednesday, April 30, 2025 Approved
siw (Install) 15.2.6.20250325 38 Friday, April 25, 2025 Approved
siw (Install) 15.2.5.20250325 41 Sunday, April 20, 2025 Approved
siw (Install) 15.2.4.20250325 34 Friday, April 18, 2025 Approved
siw (Install) 15.2.3.20250325 47 Sunday, April 13, 2025 Approved
siw (Install) 15.2.2.20250325 44 Sunday, April 6, 2025 Approved
siw (Install) 15.2.1.20250325 26 Sunday, April 6, 2025 Approved
siw (Install) 15.2.0.20250325 48 Tuesday, March 25, 2025 Approved
siw (Install) 15.1.6.20250227 179 Sunday, March 23, 2025 Approved
siw (Install) 15.1.5.20250227 30 Saturday, March 22, 2025 Approved
siw (Install) 15.1.4.20250227 335 Sunday, March 16, 2025 Approved
siw (Install) 15.1.3.20250227 46 Monday, March 10, 2025 Approved
siw (Install) 15.1.0.20250227 2532 Thursday, February 27, 2025 Approved
siw (Install) 15.0.5.20250102 1087 Saturday, February 22, 2025 Approved
siw (Install) 15.0.4.20250102 92 Monday, February 17, 2025 Approved
siw (Install) 15.0.3.20250102 850 Wednesday, February 12, 2025 Approved
siw (Install) 15.0.2.20250102 883 Sunday, January 5, 2025 Approved
siw (Install) 15.0.1.20250102 41 Friday, January 3, 2025 Approved
siw (Install) 15.0.0.20250102 142 Thursday, January 2, 2025 Approved
siw (Install) 14.7.3.20241103 431 Sunday, December 15, 2024 Approved
siw (Install) 14.7.2.20241103 241 Sunday, December 1, 2024 Approved
siw (Install) 14.7.1.20241103 414 Wednesday, November 20, 2024 Approved
siw (Install) 14.7.0.20241103 502 Sunday, November 3, 2024 Approved
siw (Install) 14.6.5.20241009 306 Sunday, October 27, 2024 Approved
siw (Install) 14.6.3.20241009 275 Monday, October 21, 2024 Approved
siw (Install) 14.6.1.20241009 343 Monday, October 14, 2024 Approved
siw (Install) 14.6.0.20241009 156 Wednesday, October 9, 2024 Approved
siw (Install) 14.5.3.20240827 224 Sunday, September 29, 2024 Approved
siw (Install) 14.5.2.20240827 119 Saturday, September 28, 2024 Approved
siw (Install) 14.5.1.20240827 133 Sunday, September 22, 2024 Approved
siw (Install) 14.5.0.20240827 872 Tuesday, August 27, 2024 Approved
siw (Install) 14.4.2.20240814 74 Sunday, August 25, 2024 Approved
siw (Install) 14.4.1.20240814 234 Thursday, August 22, 2024 Approved
siw (Install) 14.4.0.20240814 300 Wednesday, August 14, 2024 Approved
siw (Install) 14.3.8.20240526 53 Monday, August 12, 2024 Approved
siw (Install) 14.3.7.20240526 241 Monday, August 5, 2024 Approved
siw (Install) 14.3.5.20240526 254 Sunday, July 28, 2024 Approved
siw (Install) 14.3.4.20240526 1136 Sunday, June 23, 2024 Approved
siw (Install) 14.3.3.20240526 884 Friday, June 7, 2024 Approved
siw (Install) 14.3.2.20240526 85 Sunday, June 2, 2024 Approved
siw (Install) 14.3.1.20240526 270 Sunday, May 26, 2024 Approved
siw (Install) 14.3.0.20240526 39 Sunday, May 26, 2024 Approved
siw (Install) 14.2.3.20240508 342 Saturday, May 18, 2024 Approved
siw (Install) 14.2.1.20240508 334 Sunday, May 12, 2024 Approved
siw (Install) 14.2.0.20240508 179 Wednesday, May 8, 2024 Approved
siw (Install) 14.1.2.20240417 230 Saturday, May 4, 2024 Approved
siw (Install) 14.1.1.20240417 176 Sunday, April 28, 2024 Approved
siw (Install) 14.1.0.20240417 298 Wednesday, April 17, 2024 Approved
siw (Install) 14.0.14.20240215 158 Sunday, April 14, 2024 Approved
siw (Install) 14.0.13.20240215 77 Saturday, April 13, 2024 Approved
siw (Install) 14.0.12.20240215 588 Wednesday, April 3, 2024 Approved
siw (Install) 14.0.11.20240215 131 Sunday, March 31, 2024 Approved
siw (Install) 14.0.10.20240215 60 Saturday, March 30, 2024 Approved
siw (Install) 14.0.9.20240215 82 Thursday, March 28, 2024 Approved
siw (Install) 14.0.8.20240215 142 Sunday, March 24, 2024 Approved
siw (Install) 14.0.7.20240215 252 Friday, March 22, 2024 Approved
siw (Install) 14.0.6.20240215 394 Thursday, March 21, 2024 Approved
siw (Install) 14.0.5.20240215 158 Tuesday, March 19, 2024 Approved
siw (Install) 14.0.4.20240215 81 Sunday, March 17, 2024 Approved
siw (Install) 14.0.3.20240215 64 Sunday, March 17, 2024 Approved
siw (Install) 14.0.2.20240215 87 Saturday, March 16, 2024 Approved
siw (Install) 14.0.1.20240215 913 Sunday, February 25, 2024 Approved
siw (Install) 14.0.0.20240215 286 Thursday, February 15, 2024 Approved
siw (Install) 14.0.0.20240211 122 Sunday, February 11, 2024 Approved
siw (Install) 14.0.0.20240206 341 Tuesday, February 6, 2024 Approved
siw (Install) 14.0.0.20240201 139 Friday, February 2, 2024 Approved
siw (Install) 13.8.9.20231029 876 Friday, January 12, 2024 Approved
siw (Install) 13.8.6.20231029 641 Saturday, December 23, 2023 Approved
siw (Install) 13.8.5.20231029 210 Saturday, December 9, 2023 Approved
siw (Install) 13.8.4.20231029 149 Sunday, November 26, 2023 Approved
siw (Install) 13.8.3.20231029 85 Friday, November 24, 2023 Approved
siw (Install) 13.8.2.20231029 70 Wednesday, November 22, 2023 Approved
siw (Install) 13.8.1.20231029 1143 Wednesday, November 8, 2023 Approved
siw (Install) 13.8.0.20231029 343 Sunday, October 29, 2023 Approved
siw (Install) 13.7.8.20230816 422 Monday, October 23, 2023 Approved
siw (Install) 13.7.7.20230816 487 Wednesday, October 11, 2023 Approved
siw (Install) 13.7.6.20230816 120 Sunday, October 8, 2023 Approved
siw (Install) 13.7.5.20230816 320 Wednesday, October 4, 2023 Approved
siw (Install) 13.7.4.20230816 395 Thursday, September 28, 2023 Approved
siw (Install) 13.7.3.20230816 121 Sunday, September 24, 2023 Approved
siw (Install) 13.7.2.20230816 438 Saturday, September 16, 2023 Approved
siw (Install) 13.7.1.20230816 317 Tuesday, September 5, 2023 Approved
siw (Install) 13.7.0.20230816 737 Wednesday, August 16, 2023 Approved
siw (Install) 13.6.4.20230621 1056 Saturday, August 5, 2023 Approved
siw (Install) 13.6.3.20230621 551 Saturday, July 29, 2023 Approved
siw (Install) 13.6.1.20230621 1051 Sunday, July 2, 2023 Approved
siw (Install) 13.6.0.20230621 546 Wednesday, June 21, 2023 Approved
siw (Install) 13.5.5.20230517 116 Friday, June 16, 2023 Approved
siw (Install) 13.5.4.20230517 234 Wednesday, June 14, 2023 Approved
siw (Install) 13.5.3.20230517 1661 Sunday, May 28, 2023 Approved
siw (Install) 13.5.2.20230517 910 Friday, May 19, 2023 Approved
siw (Install) 13.5.1.20230517 125 Thursday, May 18, 2023 Approved
siw (Install) 13.5.0.20230517 114 Wednesday, May 17, 2023 Approved
siw (Install) 13.4.4.20230424 297 Thursday, May 4, 2023 Approved
siw (Install) 13.4.3.20230424 135 Tuesday, May 2, 2023 Approved
siw (Install) 13.4.2.20230424 157 Sunday, April 30, 2023 Approved
siw (Install) 13.4.1.20230424 189 Wednesday, April 26, 2023 Approved
siw (Install) 13.4.0.20230424 135 Monday, April 24, 2023 Approved
siw (Install) 13.3.0.20230419 205 Wednesday, April 19, 2023 Approved
siw (Install) 13.2.19.20230204 163 Sunday, April 16, 2023 Approved
siw (Install) 13.2.18.20230204 213 Monday, April 10, 2023 Approved
siw (Install) 13.2.17.20230204 207 Sunday, April 2, 2023 Approved
siw (Install) 13.2.16.20230204 234 Sunday, March 19, 2023 Approved
siw (Install) 13.2.15.20230204 179 Wednesday, March 15, 2023 Approved
siw (Install) 13.2.13.20230204 196 Monday, March 6, 2023 Approved
siw (Install) 13.2.11.20230204 216 Saturday, February 25, 2023 Approved
siw (Install) 13.2.9.20230204 137 Wednesday, February 22, 2023 Approved
siw (Install) 13.2.8.20230204 153 Monday, February 20, 2023 Approved
siw (Install) 13.2.0.20230204 234 Saturday, February 4, 2023 Approved
siw (Install) 13.1.0.20230112 300 Thursday, January 12, 2023 Approved
siw (Install) 13.0.2.20230102 166 Sunday, January 8, 2023 Approved
siw (Install) 13.0.1.20230102 176 Saturday, January 7, 2023 Approved
siw (Install) 13.0.0.20230102 144 Monday, January 2, 2023 Approved
siw (Install) 12.5.7.20221103 192 Tuesday, December 27, 2022 Approved
siw (Install) 12.5.6.20221103 129 Sunday, December 25, 2022 Approved
siw (Install) 12.5.3.20221103 222 Sunday, December 11, 2022 Approved
siw (Install) 12.5.2.20221103 216 Saturday, December 3, 2022 Approved
siw (Install) 12.5.1.20221103 209 Sunday, November 13, 2022 Approved
siw (Install) 12.5.0.20221103 215 Thursday, November 3, 2022 Approved
siw (Install) 12.4.8.20220817 177 Saturday, October 29, 2022 Approved
siw (Install) 12.4.7.20220817 169 Monday, October 24, 2022 Approved
siw (Install) 12.4.6.20220817 197 Friday, October 21, 2022 Approved
siw (Install) 12.4.5.20220817 147 Monday, October 17, 2022 Approved
siw (Install) 12.4.4.20220817 216 Friday, October 14, 2022 Approved
siw (Install) 12.4.3.20220817 174 Monday, October 10, 2022 Approved
siw (Install) 12.4.1.20220817 198 Wednesday, October 5, 2022 Approved
siw (Install) 12.4.0.20220817 288 Wednesday, August 17, 2022 Approved
siw (Install) 12.3.13.20220521 172 Sunday, August 14, 2022 Approved
siw (Install) 12.3.12.20220521 195 Tuesday, August 9, 2022 Approved
siw (Install) 12.3.11.20220521 159 Sunday, August 7, 2022 Approved
siw (Install) 12.3.10.20220521 239 Wednesday, July 20, 2022 Approved
siw (Install) 12.3.9.20220521 208 Thursday, July 14, 2022 Approved
siw (Install) 12.3.8.20220521 170 Monday, July 11, 2022 Approved
siw (Install) 12.3.7.20220521 230 Saturday, July 2, 2022 Approved
siw (Install) 12.3.6.20220521 203 Saturday, June 25, 2022 Approved
siw (Install) 12.3.5.20220521 205 Saturday, June 18, 2022 Approved
siw (Install) 12.3.4.20220521 156 Wednesday, June 15, 2022 Approved
siw (Install) 12.3.3.20220521 173 Sunday, June 12, 2022 Approved
siw (Install) 12.3.2.20220521 216 Sunday, June 5, 2022 Approved
siw (Install) 12.3.1.20220521 202 Friday, June 3, 2022 Approved
siw (Install) 12.3.0.20220521 269 Saturday, May 21, 2022 Approved
siw (Install) 12.2.2.20220505 173 Monday, May 16, 2022 Approved
siw (Install) 12.2.1.20220505 206 Friday, May 6, 2022 Approved
siw (Install) 12.2.0.20220505 151 Thursday, May 5, 2022 Approved
siw (Install) 12.1.4.20220317 237 Friday, April 29, 2022 Approved
siw (Install) 12.1.3.20220317 159 Monday, April 25, 2022 Approved
siw (Install) 12.1.2.20220317 270 Wednesday, April 13, 2022 Approved
siw (Install) 12.1.1.20220317 254 Saturday, March 26, 2022 Approved
siw (Install) 12.1.0.20220317 213 Thursday, March 17, 2022 Approved
siw (Install) 12.0.10.20220103 150 Wednesday, March 16, 2022 Approved
siw (Install) 12.0.9.20220103 160 Monday, March 14, 2022 Approved
siw (Install) 12.0.8.20220103 210 Tuesday, March 8, 2022 Approved
siw (Install) 12.0.7.20220103 158 Sunday, March 6, 2022 Approved
siw (Install) 12.0.6.20220103 198 Thursday, March 3, 2022 Approved
siw (Install) 12.0.5.20220103 220 Wednesday, February 23, 2022 Approved
siw (Install) 12.0.4.20220103 160 Tuesday, February 22, 2022 Approved
siw (Install) 12.0.3.20220103 238 Sunday, February 13, 2022 Approved
siw (Install) 12.0.2.20220103 240 Tuesday, January 25, 2022 Approved
siw (Install) 12.0.1.20220103 172 Sunday, January 23, 2022 Approved
siw (Install) 12.0.0.20220103 251 Monday, January 3, 2022 Approved
siw (Install) 11.7.4.20211116 246 Sunday, November 28, 2021 Approved
siw (Install) 11.7.3.20211116 193 Tuesday, November 23, 2021 Approved
siw (Install) 11.7.2.20211116 167 Sunday, November 21, 2021 Approved
siw (Install) 11.7.0.20211116 180 Tuesday, November 16, 2021 Approved
siw (Install) 11.6.12.20210824 160 Saturday, November 13, 2021 Approved
siw (Install) 11.6.11.20210824 147 Friday, November 12, 2021 Approved
siw (Install) 11.6.10.20210824 186 Saturday, November 6, 2021 Approved
siw (Install) 11.6.9.20210824 164 Wednesday, November 3, 2021 Approved
siw (Install) 11.6.8.20210824 168 Saturday, October 30, 2021 Approved
siw (Install) 11.6.6.20210824 289 Saturday, October 9, 2021 Approved
siw (Install) 11.6.4.20210824 217 Friday, October 1, 2021 Approved
siw (Install) 11.6.3.20210824 216 Sunday, September 19, 2021 Approved
siw (Install) 11.6.1.20210824 248 Saturday, August 28, 2021 Approved
siw (Install) 11.6.0.20210824 165 Tuesday, August 24, 2021 Approved
siw (Install) 11.5.2.20210811 183 Saturday, August 21, 2021 Approved
siw (Install) 11.5.0.20210811 213 Wednesday, August 11, 2021 Approved
siw (Install) 11.4.6.20210602 193 Friday, July 30, 2021 Approved
siw (Install) 11.4.5.20210602 239 Monday, June 21, 2021 Approved
siw (Install) 11.4.2.20210602 207 Saturday, June 5, 2021 Approved
siw (Install) 11.4.0.20210602 133 Wednesday, June 2, 2021 Approved
siw (Install) 11.3.0.20210526 144 Wednesday, May 26, 2021 Approved
siw (Install) 11.2.3.20210425 130 Monday, May 24, 2021 Approved
siw (Install) 11.2.2.20210425 152 Sunday, May 16, 2021 Approved
siw (Install) 11.2.1.20210425 133 Sunday, May 9, 2021 Approved
siw (Install) 11.2.0.20210425 154 Monday, April 26, 2021 Approved
siw (Install) 11.1.9.20210220 144 Saturday, April 17, 2021 Approved
siw (Install) 11.1.8.20210220 141 Wednesday, April 7, 2021 Approved
siw (Install) 11.1.7.20210220 150 Monday, April 5, 2021 Approved
siw (Install) 11.1.6.20210220 148 Sunday, March 28, 2021 Approved
siw (Install) 11.1.4.20210220 153 Sunday, March 21, 2021 Approved
siw (Install) 11.1.2.20210220 169 Saturday, March 13, 2021 Approved
siw (Install) 11.1.1.20210220 192 Sunday, February 28, 2021 Approved
siw (Install) 11.1.0.20210220 216 Saturday, February 20, 2021 Approved
siw (Install) 11.0.1.20210211 199 Sunday, February 14, 2021 Approved
siw (Install) 11.0.0.20210211 164 Thursday, February 11, 2021 Approved
siw (Install) 10.6.8.20200915 241 Monday, December 28, 2020 Approved
siw (Install) 10.6.7.20200915 157 Wednesday, December 16, 2020 Approved
siw (Install) 10.6.6.20200915 174 Sunday, December 13, 2020 Approved
siw (Install) 10.6.5.20200915 193 Sunday, November 22, 2020 Approved
siw (Install) 10.6.4.20200915 188 Monday, November 16, 2020 Approved
siw (Install) 10.6.2.20200915 200 Sunday, November 8, 2020 Approved
siw (Install) 10.6.1.20200915 212 Wednesday, October 14, 2020 Approved
siw (Install) 10.6.0.20200915 216 Tuesday, September 15, 2020 Approved
siw (Install) 10.5.4.20200902 171 Saturday, September 12, 2020 Approved
siw (Install) 10.5.3.20200902 191 Friday, September 4, 2020 Approved
siw (Install) 10.5.2.20200902 169 Thursday, September 3, 2020 Approved
siw (Install) 10.4.6.20200708 181 Saturday, August 29, 2020 Approved
siw (Install) 10.4.5.20200708 174 Friday, August 28, 2020 Approved
siw (Install) 10.4.4.20200708 198 Saturday, August 22, 2020 Approved
siw (Install) 10.4.3.20200708 201 Sunday, August 16, 2020 Approved
siw (Install) 10.4.2.20200708 201 Monday, August 10, 2020 Approved
siw (Install) 10.4.1.20200708 199 Tuesday, July 28, 2020 Approved
siw (Install) 10.4.0.20200708 238 Wednesday, July 8, 2020 Approved
siw (Install) 10.3.4.20200602 204 Sunday, July 5, 2020 Approved
siw (Install) 10.3.3.20200602 181 Sunday, June 28, 2020 Approved
siw (Install) 10.3.2.20200602 211 Friday, June 19, 2020 Approved
siw (Install) 10.3.1.20200602 276 Saturday, June 13, 2020 Approved
siw (Install) 10.3.0.20200602 289 Tuesday, June 2, 2020 Approved
siw (Install) 10.2.8.20200322 211 Thursday, May 28, 2020 Approved
siw (Install) 10.2.7.20200322 239 Sunday, May 10, 2020 Approved
siw (Install) 10.2.6.20200322 243 Wednesday, May 6, 2020 Approved
siw (Install) 10.2.5.20200322 256 Saturday, May 2, 2020 Approved
siw (Install) 10.2.4.20200322 211 Friday, May 1, 2020 Approved
siw (Install) 10.2.3.20200322 217 Sunday, April 26, 2020 Approved
siw (Install) 10.2.2.20200322 227 Monday, April 20, 2020 Approved
siw (Install) 10.2.1.20200322 261 Wednesday, April 8, 2020 Approved
siw (Install) 10.2.0.20200322 246 Sunday, March 22, 2020 Approved
siw (Install) 10.1.2.20200311 227 Wednesday, March 18, 2020 Approved
siw (Install) 10.1.1.20200311 258 Friday, March 13, 2020 Approved
siw (Install) 10.1.0.20200311 241 Wednesday, March 11, 2020 Approved
siw (Install) 10.0.5.20200128 241 Saturday, March 7, 2020 Approved
siw (Install) 10.0.4.20200128 261 Sunday, March 1, 2020 Approved
siw (Install) 10.0.3.20200128 276 Monday, February 17, 2020 Approved
siw (Install) 10.0.2.20200128 289 Sunday, February 9, 2020 Approved
siw (Install) 10.0.0.20200128 272 Tuesday, January 28, 2020 Approved
siw (Install) 9.5.7.20191112 283 Monday, December 30, 2019 Approved
siw (Install) 9.5.6.20191112 245 Friday, December 13, 2019 Approved
siw (Install) 9.5.5.20191112 270 Sunday, December 8, 2019 Approved
siw (Install) 9.5.4.20191112 264 Friday, December 6, 2019 Approved
siw (Install) 9.5.3.20191112 264 Tuesday, December 3, 2019 Approved
siw (Install) 9.5.2.20191112 237 Monday, November 18, 2019 Approved
siw (Install) 9.5.1.20191112 255 Sunday, November 17, 2019 Approved
siw (Install) 9.5.0.20191112 231 Tuesday, November 12, 2019 Approved
siw (Install) 9.4.8.20191001 312 Saturday, November 9, 2019 Approved
siw (Install) 9.4.7.20191001 274 Wednesday, November 6, 2019 Approved
siw (Install) 9.4.6.20191001 252 Sunday, November 3, 2019 Approved
siw (Install) 9.4.5.20191001 280 Saturday, November 2, 2019 Approved
siw (Install) 9.4.4.20191001 248 Saturday, October 5, 2019 Approved
siw (Install) 9.4.2.20191001 199 Friday, October 4, 2019 Approved
siw (Install) 9.4.0.20191001 286 Tuesday, October 1, 2019 Approved
siw (Install) 9.3.7.20190707 286 Thursday, September 26, 2019 Approved
siw (Install) 9.3.6.20190707 294 Tuesday, September 24, 2019 Approved
siw (Install) 9.3.5.20190707 253 Saturday, September 21, 2019 Approved
siw (Install) 9.3.4.20190707 389 Monday, August 5, 2019 Approved
siw (Install) 9.3.3.20190707 323 Sunday, July 21, 2019 Approved
siw (Install) 9.3.2.20190707 275 Friday, July 12, 2019 Approved
siw (Install) 9.3.1.20190707 275 Thursday, July 11, 2019 Approved
siw (Install) 9.3.0.20190707 275 Sunday, July 7, 2019 Approved
siw (Install) 9.2.2.20190618 288 Tuesday, July 2, 2019 Approved
siw (Install) 9.2.1.20190618 304 Monday, July 1, 2019 Approved
siw (Install) 9.2.0.20190618 275 Tuesday, June 18, 2019 Approved
siw (Install) 9.1.10.20190409 326 Thursday, June 13, 2019 Approved
siw (Install) 9.1.9.20190409 285 Wednesday, June 12, 2019 Approved
siw (Install) 9.1.8.20190409 302 Monday, June 3, 2019 Approved
siw (Install) 9.1.7.20190409 278 Saturday, June 1, 2019 Approved
siw (Install) 9.1.6.20190409 278 Wednesday, May 22, 2019 Approved
siw (Install) 9.1.5.20190409 313 Tuesday, May 14, 2019 Approved
siw (Install) 9.1.3.20190409 233 Thursday, May 9, 2019 Approved
siw (Install) 9.1.2.20190409 303 Saturday, May 4, 2019 Approved
siw (Install) 9.1.0.20190409 287 Tuesday, April 9, 2019 Approved
siw (Install) 9.0.1.20190115 349 Sunday, March 10, 2019 Approved
siw (Install) 9.0.0.20190115 359 Tuesday, January 15, 2019 Approved
siw (Install) 8.4.2.20181120 354 Tuesday, November 27, 2018 Approved
siw (Install) 8.4.0.20181120 312 Tuesday, November 20, 2018 Approved
siw (Install) 8.3.5.20180710 364 Saturday, October 27, 2018 Approved
siw (Install) 8.3.4.20180710 313 Sunday, September 23, 2018 Approved
siw (Install) 8.3.3.20180710 373 Wednesday, September 12, 2018 Approved
siw (Install) 8.3.2.20180710 340 Wednesday, July 25, 2018 Approved
siw (Install) 8.3.1.20180710 362 Saturday, July 21, 2018 Approved
siw (Install) 8.3.0.20180710 380 Tuesday, July 10, 2018 Approved
siw (Install) 8.2.3.20180502 344 Friday, June 29, 2018 Approved
siw (Install) 8.2.2.20180502 379 Friday, June 1, 2018 Approved
siw (Install) 8.2.1.20180502 467 Wednesday, May 2, 2018 Approved
siw (Install) 8.2.0.20180502 378 Wednesday, May 2, 2018 Approved
siw (Install) 8.1.1.20180227 393 Saturday, April 21, 2018 Approved
siw (Install) 8.1.0.20180227 493 Tuesday, February 27, 2018 Approved
siw (Install) 8.0.4.20180106 427 Saturday, February 10, 2018 Approved
siw (Install) 8.0.2.20180106 462 Thursday, January 25, 2018 Approved
siw (Install) 8.0.1.20180106 423 Saturday, January 13, 2018 Approved
siw (Install) 8.0.0.20180106 424 Saturday, January 6, 2018 Approved
siw (Install) 7.8.2.20171111 522 Tuesday, November 14, 2017 Approved
siw (Install) 7.8.1.20171111 463 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