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:

373,001

Downloads of v 20.12.0.20210111:

852

Last Update:

11 Jan 2021

Package Maintainer(s):

Software Author(s):

  • Christian Schenk

Tags:

miktex tex latex pdf typesetting foss embedded

MiKTeX (Install)

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

  • 1
  • 2
  • 3

20.12.0.20210111 | Updated: 11 Jan 2021

Downloads:

373,001

Downloads of v 20.12.0.20210111:

852

Maintainer(s):

Software Author(s):

  • Christian Schenk

MiKTeX (Install) 20.12.0.20210111

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

  • 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 MiKTeX (Install), run the following command from the command line or from PowerShell:

>

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

>

To uninstall MiKTeX (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 miktex.install -y --source="'INTERNAL REPO URL'" --version="'20.12.0.20210111'" [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 miktex.install -y --source="'INTERNAL REPO URL'" --version="'20.12.0.20210111'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install miktex.install
  win_chocolatey:
    name: miktex.install
    version: '20.12.0.20210111'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'miktex.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '20.12.0.20210111'
end

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


cChocoPackageInstaller miktex.install
{
    Name     = "miktex.install"
    Version  = "20.12.0.20210111"
    Source   = "INTERNAL REPO URL"
}

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


package { 'miktex.install':
  ensure   => '20.12.0.20210111',
  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

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 11 Jan 2021.

Description

MiKTeX (pronounced mick-tech) is an up-to-date implementation of TeX/LaTeX and related programs. TeX is a typesetting system written by Donald Ervin Knuth who says that it is intended for the creation of beautiful books - and especially for books that contain a lot of mathematics.

MiKTeX comes with TeXworks, a TeX frontend which you can use it to edit and preview LaTeX documents.

FancyLaTeXOutput
The sky is the limit when it comes to TeX/LaTeX, with drawings, chemical equations, syntax trees, circuit diagrams, mathematical expressions, proof systems, chessboards and more! (Image source)

MiKTeX's integrated package manager installs missing components from the Internet, if required.

Package Set Parameter (optional)

  • /Set:(option) - Download and install the essential, basic (default), or complete set of TeX packages/tools.
  • /Mirror:(URL) - This will use the (url), a CTAN mirror to download MiKTeX. It is recommended to only use this if the default mirror as chosen by the MiKTeX setup utility doesn't work for some reason.* Hint: Including /Mirror (valid or not) will write the list of "official", URLs to the Chocolatey log.

Custom Repository Parameter (optional)

This package has only the MiKTeX setup utility embedded. Any new install of MiKTeX involves using the setup utility to download and create a (temporary by default) repository and then installing from that repository. This Chocolatey package can both establish a more permenant repository (for sharing with other computers) and use a specific (possibly private) repository from which to install MiKTeX. Thus a single computer within a network could download MiKTeX from the internet and create a repository, and all other computers on the network could use that repository to install MiKTeX saving external bandwidth.

Using a Custom Repository:

  • /RepoPath:(path) -- with a local or UNC path. This will install or update MiKTeX from a specific existing repository. No attempt to update the repository itself will be made. Upgrades should use this repository in the future by default. Note: If both /RepoPath (with a UNC path) and /Mirror are used, /Mirror will be ignored.

Creating a Custom Repository:

  • /RepoPath:(path) - with a local directory as (path). This will create (or update) the repository in the location. MiKTeX will also be installed. Note: The repository will not be shared or accessible to other systems without additional administrator actions and will not be removed on an uninstall.

Examples:

  • On a server, you might use:

choco install miktex.install --params '"/Set:complete /RepoPath:""c:\Shared Files\MiKTeX-Repo"""'
Double-double quotes (i.e. ""path"") are necessary for paths containing a space.

  • On a workstation in the same network, you might use:

choco install miktex.install --params '"/RepoPath://localserver/MiKTeX-Repo"'


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$PackageMileStone = '20.12'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
# Remove any previously unzipped installers
Get-ChildItem $toolsDir -Filter *.exe -Recurse | ForEach-Object { Remove-Item $_.fullname -Force }

$ZipFiles = Get-ChildItem -Path $toolsDir -Filter '*.zip' | Sort-Object LastWriteTime | Select-Object -ExpandProperty FullName -Last 2 

$ZipArgs = @{
   PackageName    = $env:ChocolateyPackageName
   FileFullPath   = $ZipFiles | Where-Object {$_ -notmatch 'x64'}
   FileFullPath64 = $ZipFiles | Where-Object {$_ -match 'x64'}
   Destination    = $toolsDir
}
$null = Get-ChocolateyUnzip @ZipArgs

$MiKTeXsetup = Get-ChildItem $toolsDir 'miktexsetup*.exe' -Recurse | Select-Object -ExpandProperty FullName
Write-Verbose "Found setup utility:  $MiKTeXsetup"
$null = New-Item -Path "$MiKTeXsetup.ignore" -ItemType file -Force

$pp = Get-PackageParameters

# What kind of install?
Switch ($pp['set']) {
   'essential' { $set = 'essential'
                  $msg = 'Downloading a "Essential" package set to install.'; break }
   'complete'  { $set = 'complete'
                  $msg = 'Downloading a "Complete" package set to install.\n' + 
                         'This is large and may take some time.  Please be patient.'; break }
   default     { $set = 'basic'
                  $msg = 'Downloading a "Basic" package set to install.'; break }
}
Write-Host $msg -ForegroundColor Cyan

$LocalRepo = $false
$Repository = ''
$Mirror = ''
if ($pp['RepoPath']) {
   $LocalRepo = -not (([uri]($pp['RepoPath'])).hostnametype.tostring().equals('Dns'))
   $Repository = $pp['RepoPath']
   if (-not $LocalRepo) {
      if ($Repository -match '^(https?:|ftp:)') {
         Throw "RepoPath must be a local or UNC path!"
      }
   }
} 
# Include a list of mirrors in logs if Mirror is called
if ($pp['Mirror']) {
   $List = & $MiKTeXsetup --list-repositories
   $List = $List -join "`n`t"
   Write-Verbose "`nRegistered repositories:`n`t$list"
   
   $Mirror = $pp['Mirror']
   Write-Verbose "Attempting to download from specified mirror:  $Mirror"
   $MirrorSwitch = "--remote-package-repository=`"$Mirror`""
} else { $MirrorSwitch = '' }

# Is MiKTeX already installed?
[array]$key = Get-UninstallRegistryKey -SoftwareName 'miktex*' 
if ($key.Count -gt 1) {
   Throw 'More than one install of MiKTeX already exists!'
} elseif ($key.Count -eq 1) {
   Write-Verbose 'Found an install of MiKTeX.'
   # Use MiKTeX's built-in updater
   $InstallDir = (Split-Path $key.UninstallString).trim('"')
   $InitEXMF = Join-Path $InstallDir 'initexmf.exe'
   Write-Verbose "Running 'initexmf.exe' to identify installed milestone."
   $MileStoneLine = & $InitEXMF --admin --report | Where-Object {$_ -match '^(CurrentVersion|MiKTeX):'}
   $MileStone = $MileStoneLine.split()[-1]
   Write-Host "Found MiKTeX milestone $MileStone currently installed." -ForegroundColor Cyan

   If (([Version]$MileStone -lt [Version]$PackageMileStone) -or $env:ChocolateyForce) {
      Write-Host 'Updating to the latest MiKTeX milestone.' -ForegroundColor Cyan

      if ($LocalRepo) {
         if (test-path $Repository) {
            Write-Verbose "Updating local MiKTeX repository at '$Repository'."
         } else {
            Write-Verbose "Local MiKTeX repository not found.  Creating one at '$Repository'."
         }

         $DownloadArgs = @{
            Statements       = "--verbose --local-package-repository=`"$Repository`" $MirrorSwitch --package-set=$set download "
            ExetoRun         = $MiKTeXsetup
            WorkingDirectory = $toolsDir
            validExitCodes   = @(0)
         }
         $exitCode = Start-ChocolateyProcessAsAdmin @DownloadArgs
      }

      $MPM = Join-Path $InstallDir 'mpm.exe'
      if ($Repository -eq '' -and $Mirror -ne '') { $Repository = $Mirror }
      if ($Repository -ne '') { $RepoSwitch = "--repository=`"$Repository`"" }
      $SetupArgs = @{
         Statements       = "--admin --verbose --update $RepoSwitch"
         ExetoRun         = $MPM
         WorkingDirectory = $InstallDir
         validExitCodes   = @(0)
      }
      $exitCode = Start-ChocolateyProcessAsAdmin @SetupArgs
   } else {
      Write-Verbose 'Installed Milestone of MiKTeX is the same or newer than this package version.'
      Return
   }

} elseif ($key.Count -eq 0) {
   # MiKTeX install requires a repository
   if ($Repository -eq '') {
      # Use a temporary repository if one not given
      $Repository = Join-Path $env:TEMP 'MiKTeX-repository'
      $LocalRepo = $true
      $Temporary = ' temporary'
   }

   $RepoSwitch = "--local-package-repository=`"$Repository`""

   if ($LocalRepo) {
      # Only create a repository if it is local; remote repositories need to be updated independently.
      Write-Host "Creating a$Temporary repository at '$Repository'."
      $DownloadArgs = @{
         Statements       = "--verbose $RepoSwitch $MirrorSwitch --package-set=$set download "
         ExetoRun         = $MiKTeXsetup
         WorkingDirectory = $toolsDir
         validExitCodes   = @(0)
      }
      $exitCode = Start-ChocolateyProcessAsAdmin @DownloadArgs
   }

   # Now, do the actual install from identified repository
   Write-Host "Installing from$Temporary MiKTeX repository."
   $InstallArgs = @{
      Statements       = "--verbose $RepoSwitch --package-set=$set --shared install "
      ExetoRun         = $MiKTeXsetup
      WorkingDirectory = $toolsDir
      validExitCodes   = @(0)
   }
   $exitCode = Start-ChocolateyProcessAsAdmin @InstallArgs
}

# Once installed/updated, confirm it's the correct milestone.
[array]$key = Get-UninstallRegistryKey -SoftwareName 'miktex*'
$InstallDir = (Split-Path $key.UninstallString).trim('"')
$InitEXMF = Join-Path $InstallDir 'initexmf.exe'
Write-Verbose "Using 'initexmf.exe' to identify installed milestone."
$MileStoneLine = & "$InitEXMF" --admin --report | Where-Object {$_ -match '^CurrentVersion:'}
$MileStone = $MileStoneLine.split()[-1]
Write-Verbose "Verified MiKTeX milestone $MileStone installed."
If ([version]$MileStone -lt [version]$PackageMileStone) {
   Throw "Repository was unable to provide MiKTeX milestone $PackageMileStone"
}

# configure MiKTeX to automatically install missing packages on the fly
Write-Verbose 'Adjusting settings so MiKTeX installs missing packages on the fly.'
$SetupArgs = @{
   Statements       = '--admin --verbose --set-config-value=[MPM]AutoInstall=1'
   ExetoRun         = $InitEXMF
   WorkingDirectory = $InstallDir
   validExitCodes   = @(0)
}
$exitCode = Start-ChocolateyProcessAsAdmin @SetupArgs


tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'

# Is MiKTeX already installed?
[array]$key = Get-UninstallRegistryKey -SoftwareName 'miktex*' 
if ($key.Count -gt 1) {
   Throw 'More than one install of MiKTeX found!  Cannot uninstall without risking other copies.'
} elseif ($key.Count -eq 1) {
   Write-Verbose "Found an install of MiKTeX."
   # Use MiKTeX's built-in updater
   $InstallDir = (Split-Path $key.UninstallString).trim('"')
   $MiKTeXsetup = Join-Path $InstallDir 'miktexsetup.exe'
   Write-Verbose 'Uninstalling MiKTeX using integrated setup utility.'
   $InstallArgs = @{
      Statements       = '--verbose --shared=yes uninstall'
      ExetoRun         = $MiKTeXsetup
      WorkingDirectory = $InstallDir
      validExitCodes   = @(0)
   }
   $exitCode = Start-ChocolateyProcessAsAdmin @InstallArgs
   Write-Verbose "MiKTeX uninstall process exited with:  $exitCode"

   # Sometimes items are left behind
   if (Test-Path "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\MiKTeX") {
      Remove-Item "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\MiKTeX" -Force -Recurse
   }
}

tools\LICENSE.txt
From: https://miktex.org/copying
--------------------------------------------------------------

_The following article is an adaption of the article “Copying
conditions for TeX Live” (reference given at the end)._

## Copying conditions for MiKTeX

To the best of our knowledge, all software in the MiKTeX distribution
is freely redistributable (libre, that is, not necessarily gratis),
within the Free Software Foundation's definition and the Debian Free
Software Guidelines. Where the two conflict, we generally follow the
FSF. If you find any non-free files included, please contact us
(reference given at the end).

That said, MiKTeX has neither a single copyright holder nor a single
license covering its entire contents, since it is a collection of many
independent packages. Therefore, you may copy, modify, and/or
redistribute software from MiKTeX only if you comply with the
requirements placed thereon by the owners of the respective packages.

To most easily learn these requirements, we suggest checking the
MiKTeX package catalogue (reference given at the end). Of course the
legal statements within the packages themselves are the final
authority.

### Guidelines for redistribution

In general, you may redistribute MiKTeX, with or without modification,
for profit or not, according to the usual free software tenets. Here
are some general guidelines for doing this:

* If you make any changes to the MiKTeX distribution or any package it
  contains, besides complying with any licensing requirements, you
  must prominently mention such changes in your modified distribution
  so that users do not take your work for ours, and know to contact
  you, not us, in case of questions or problems.

* Especially (but not necessarily) if changes or additions are made,
  we recommend a clearly different title, such as “Your work, based on
  MiKTeX x.y.zzzz”, where x.y.zzzz is the Git tag of the MiKTeX
  version you are using. This credits both our work and yours.

* You absolutely may not place your own copyright on the entire
  distribution, since it is not your work. Statements such as “all
  rights reserved” and “may not be reproduced” are especially
  reprehensible, since they are antithetical to the free software
  principles under which MiKTeX is produced.

* You may use any cover or media label designs that you wish. Such
  packaging and marketing details are not covered by any MiKTeX
  license.

* Finally, we make the following requests (not legal requirements):

  a. Acknowledging that the MiKTeX distribution is developed as a
     joint effort by all TeX user groups, and encouraging the
     user/reader to join their user group of choice, as listed on the
     web page <http://www.tug.org/usergroups.html>.

  b. Referencing the MiKTeX project page: <https://miktex.org/>.

  Such information may be placed on the label of your media, your
  cover, and/or in accompanying text (for instance, in the
  acknowledgements section of a book).

Finally, although it is certainly not a requirement, we'd like to
invite any redistributors to make a donation to the project, whether
cash or in-kind, for example via
<https://miktex.org/giveback>. Thanks.

### References

1. MiKTeX project contact form: <https://miktex.org/email/>
2. MiKTeX package catalogue: <https://miktex.org/packages/>
3. Copying conditions for TeX Live: <http://tug.org/texlive/LICENSE.TL>
4. The FSF's free software definition: <https://www.gnu.org/philosophy/free-sw.html>
5. Debian Free Software Guidelines: <https://www.debian.org/intro/free>
6. FSF commentary on existing licenses: <https://www.gnu.org/licenses/license-list.html>
tools\miktexsetup-4.0-20.12-x64.zip
md5: 8879E5DCA7985B4D2BF6D1D5B2D616D6 | sha1: 3D5C5C62A4D538EAA07BBF002D066C618BF87353 | sha256: 4D7D6D5968CD0C99FC80456DC09F074E7D7DED6C2C5FE1003C11F8312B8009F4 | sha512: E7666902E84332032755C2E0D76A8BCF2F61CFB402F4DAB70410C4BA37D09EF1035C5B41E200039EB279FE148D1BEA4129FB8DAAA29819E3DB5FADB8B7F3EA93
tools\miktexsetup-4.0-20.12.zip
md5: 50F9A97328B1CEEDBA234EF91AA41068 | sha1: F2BF3B4F41FD479BBD5DE4CAF92B6D10AA412421 | sha256: 34393EB907B9C49FF8825DFF55FBA831F839F9A38CEBDCB7D3EAC8D2F1D82221 | sha512: 7A49060D761EF75F58432222296245879B1E1E8F57625E3AAA92163DD89C9D3D089C1A98E6A7B1A474EE56ADE689AB9F8701E9EF45A525D3A77400B58A9A74C0
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
The embedded MiKTeX setup utility (which does NOT contain all the 
sub-packages that make up a MiKTeX installation) is available here:
   https://miktex.org/download
With the "All Downloads" tab displayed, expand the 32-bit and/or 64-bit
"MiKTeX Setup Utility" sections.  There you can see the SHA-256 hash,
and get the file via the "Download" button.

Direct Download:
Milestone       = '20.12'
32-bit URL      = 'https://miktex.org/download/ctan/systems/win32/miktex/setup/windows-x86/miktexsetup-4.0-20.12.zip'
32-bit checksum = '34393EB907B9C49FF8825DFF55FBA831F839F9A38CEBDCB7D3EAC8D2F1D82221'
64-bit URL      = 'https://miktex.org/download/ctan/systems/win32/miktex/setup/windows-x64/miktexsetup-4.0-20.12-x64.zip'
64-bit checksum = '7448F70FFB8805B0706C341FEAA0C0BF6788247E4BB29F81ADA2F6D75EAE82D6'

Note that the version of the Chocolatey package identifies the MiKTeX 
"milestone", not the version of the setup utility embedded in the package.
They are not always the same version.

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
MiKTeX (Install) 23.12.0 10674 Tuesday, January 9, 2024 Approved
MiKTeX (Install) 23.10.12 9836 Tuesday, October 17, 2023 Approved
MiKTeX (Install) 23.9.24 4810 Tuesday, September 26, 2023 Approved
MiKTeX (Install) 23.5 16918 Sunday, May 14, 2023 Approved
MiKTeX (Install) 23.4 2572 Sunday, April 30, 2023 Approved
MiKTeX (Install) 22.10 17041 Thursday, November 3, 2022 Approved
MiKTeX (Install) 22.8.28 9714 Tuesday, August 30, 2022 Approved
MiKTeX (Install) 22.7.30 5740 Saturday, August 6, 2022 Approved
MiKTeX (Install) 22.7 3534 Saturday, July 23, 2022 Approved
MiKTeX (Install) 22.3 12746 Saturday, March 26, 2022 Approved
MiKTeX (Install) 22.1 8793 Wednesday, February 2, 2022 Approved
MiKTeX (Install) 21.12 6420 Wednesday, December 29, 2021 Approved
MiKTeX (Install) 21.10 8946 Saturday, November 6, 2021 Approved
MiKTeX (Install) 21.8 8604 Thursday, September 16, 2021 Approved
MiKTeX (Install) 21.6.28 12613 Tuesday, July 13, 2021 Approved
MiKTeX (Install) 21.3 13561 Saturday, April 3, 2021 Approved
MiKTeX (Install) 21.2 7292 Wednesday, February 24, 2021 Approved
MiKTeX (Install) 21.1 7482 Wednesday, January 20, 2021 Approved
MiKTeX (Install) 20.12.0.20210111 852 Monday, January 11, 2021 Approved
MiKTeX (Install) 20.12 19957 Monday, December 28, 2020 Approved
MiKTeX (Install) 20.11.0.20201119 6701 Thursday, November 19, 2020 Approved
MiKTeX (Install) 20.11 4715 Monday, November 2, 2020 Approved
MiKTeX (Install) 20.10.0.20201030 1516 Friday, October 30, 2020 Approved
MiKTeX (Install) 20.10.0.20201027 782 Tuesday, October 27, 2020 Approved
MiKTeX (Install) 20.10 2108 Sunday, October 25, 2020 Approved
MiKTeX (Install) 20.7 9177 Saturday, August 8, 2020 Approved
MiKTeX (Install) 20.6.29.20200727 244 Tuesday, July 28, 2020 Approved
MiKTeX (Install) 20.6.29 6700 Sunday, July 19, 2020 Approved
MiKTeX (Install) 20.6 139 Sunday, July 19, 2020 Approved
MiKTeX (Install) 2.9.7440 4398 Tuesday, June 23, 2020 Approved
MiKTeX (Install) 2.9.7269 38505 Thursday, November 28, 2019 Approved
MiKTeX (Install) 2.9.7152 26802 Tuesday, August 6, 2019 Approved
MiKTeX (Install) 2.9.7100 14414 Tuesday, June 11, 2019 Approved
MiKTeX (Install) 2.9.7031.01 9532 Thursday, May 9, 2019 Approved
MiKTeX (Install) 2.9.6942 7511 Sunday, February 3, 2019 Approved
MiKTeX (Install) 2.9.6813 7935 Wednesday, September 19, 2018 Approved
MiKTeX (Install) 2.9.6753 5942 Saturday, June 30, 2018 Approved
MiKTeX (Install) 2.9.6643 6182 Monday, March 12, 2018 Approved
MiKTeX (Install) 2.9.6615 2397 Wednesday, February 21, 2018 Approved
MiKTeX (Install) 2.9.6520 6879 Thursday, November 9, 2017 Approved
MiKTeX (Install) 2.9.6361 7843 Saturday, June 3, 2017 Approved
MiKTeX (Install) 2.9.6326 2614 Saturday, April 29, 2017 Approved
MiKTeX (Install) 2.9.6236 4127 Sunday, January 29, 2017 Approved
MiKTeX (Install) 2.9.6219 1585 Thursday, January 12, 2017 Approved
MiKTeX (Install) 2.9.6161 2469 Tuesday, November 15, 2016 Approved
MiKTeX (Install) 2.9.6069 424 Monday, October 31, 2016 Approved

This package has no dependencies.

Discussion for the MiKTeX (Install) Package

Ground Rules:

  • This discussion is only about MiKTeX (Install) and the MiKTeX (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 MiKTeX (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