Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
1,409
Downloads of v 1.0.2:
699
Last Update:
22 Oct 2014
Package Maintainer(s):
Software Author(s):
- Sean Gilbert
Tags:
Boxstarter forzenbytes development vm- Software Specific:
- Software Site
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

frozenbytes.baseline.dev
- Software Specific:
- Software Site
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,409
Downloads of v 1.0.2:
699
Maintainer(s):
Software Author(s):
- Sean Gilbert
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
This Package Contains an Exempted Check
1 Test Unknown and 1 Exempted Test
Validation Testing Unknown
Verification Testing Exempt:
Requires Visual Studio.
To install frozenbytes.baseline.dev, run the following command from the command line or from PowerShell:
To upgrade frozenbytes.baseline.dev, run the following command from the command line or from PowerShell:
To uninstall frozenbytes.baseline.dev, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download frozenbytes.baseline.dev --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade frozenbytes.baseline.dev -y --source="'STEP 3 URL'" [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 frozenbytes.baseline.dev -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure frozenbytes.baseline.dev installed
win_chocolatey:
name: frozenbytes.baseline.dev
state: present
version: 1.0.2
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'frozenbytes.baseline.dev' do
action :install
version '1.0.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: frozenbytes.baseline.dev,
Version: 1.0.2,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller frozenbytes.baseline.dev
{
Name = 'frozenbytes.baseline.dev'
Ensure = 'Present'
Version = '1.0.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'frozenbytes.baseline.dev':
provider => 'chocolatey',
ensure => '1.0.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install frozenbytes.baseline.dev version="1.0.2" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Boxstarter spec to create baseline windows development machine
try {
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-RemoteDesktop
Disable-InternetExplorerESC
Disable-UAC
Set-TaskbarOptions -Size Small -UnLock -Dock Top
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
try {
cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5.1
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5.2
if (Test-PendingReboot) { Invoke-Reboot }
cinst Microsoft-Hyper-V-All -source windowsfeatures
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-WebServerManagementTools -source windowsfeatures
cinst IIS-ManagementConsole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
cinst IIS-ManagementScriptingTools -source windowsfeatures
cinst IIS-WindowsAuthentication -source windowsfeatures
cinst IIS-RequestFiltering -source windowsfeatures
cinst IIS-HttpRedirect -source windowsfeatures
cinst IIS-ISAPIFilter -source windowsfeatures
cinst IIS-ISAPIExtensions -source windowsfeatures
cinst IIS-NetFxExtensibility -source windowsfeatures
cinst IIS-ASPNET -source windowsfeatures
cinst IIS-NetFxExtensibility45 -source windowsfeatures
cinst NetFx4Extended-ASPNET45 -source windowsfeatures
cinst IIS-ASPNET45 -source windowsfeatures
#Enable ASP.NET on win 7/2008R2
."$env:windir\microsoft.net\framework\v4.0.30319\aspnet_regiis.exe" -i
} catch {
Write-ChocolateyFailure 'ASP.NET Services' $($_.Exception.ToString())
throw
}
# Install Visual Studio 2013 Express
#cinstm VisualStudio2013ExpressWeb
#if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio 2013 Professional
#cinstm VisualStudio2013Professional -InstallArguments WebTools
#if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio 2013 Premium
#cinstm
#if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio 2013 Ultimate
cinstm VisualStudio2013Ultimate -InstallArguments "/Features:'WebTools Win8SDK SQL Blend SilverLight_Developer_Kit WindowsPhone80'"
if (Test-PendingReboot) { Invoke-Reboot }
#Silverlight SDKs
cinstm Silverlight3SDK
if (Test-PendingReboot) { Invoke-Reboot }
cinstm Silverlight4SDK
if (Test-PendingReboot) { Invoke-Reboot }
cinstm Silverlight5SDK
if (Test-PendingReboot) { Invoke-Reboot }
cinstm Silverlight5DeveloperRuntime
if (Test-PendingReboot) { Invoke-Reboot }
# Visual Studio SDK required for PoshTools extension
cinstm VS2013SDK
if (Test-PendingReboot) { Invoke-Reboot }
# Visual Studio Updates
cinstm VS2013.1
if (Test-PendingReboot) { Invoke-Reboot }
cinstm VS2013.2
if (Test-PendingReboot) { Invoke-Reboot }
cinstm VS2013.3
if (Test-PendingReboot) { Invoke-Reboot }
# Windows SDK 7 or 8
cinstm windows-8-1-sdk
if (Test-PendingReboot) { Invoke-Reboot }
# Install Frozenbytes extensions for VS 2013
#cinstm frozenbytes.vs2012.extensions
# VS extensions
Install-ChocolateyVsixPackage PowerShellTools http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/6/PowerShellTools.vsix
Install-ChocolateyVsixPackage WebEssentials2013 http://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361/file/105627/31/WebEssentials2013.vsix
Install-ChocolateyVsixPackage T4Toolbox http://visualstudiogallery.msdn.microsoft.com/791817a4-eb9a-4000-9c85-972cc60fd5aa/file/116854/1/T4Toolbox.12.vsix
Install-ChocolateyVsixPackage StopOnFirstBuildError http://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/3/StopOnFirstBuildError.vsix
# AWS Toolkit is now an MSI available here http://sdk-for-net.amazonwebservices.com/latest/AWSToolsAndSDKForNet.msi (no chocolatey package as of FEB 2014)
# Install-ChocolateyVsixPackage AwsToolkit http://visualstudiogallery.msdn.microsoft.com/175787af-a563-4306-957b-686b4ee9b497
# Install Frozenbytes essentials chocolatey packages
cinstm frozenbytes.essentials
cinstm frozenbytes.extras
cinstm frozenbytes.repos
#Other dev tools
cinstm NugetPackageExplorer
cinstm windbg
#Browsers
cinstm googlechrome
cinstm firefox
#Other essential tools
cinstm adobereader
cinstm javaruntime
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"
Write-ChocolateySuccess 'frozenbytes.baseline.dev'
} catch {
Write-ChocolateyFailure 'frozenbytes.baseline.dev' $($_.Exception.Message)
throw
}
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
frozenbytes.baseline.dev 1.0.2 | 699 | Wednesday, October 22, 2014 | Exempted |
frozenbytes.baseline.dev 1.0.1 | 308 | Wednesday, October 22, 2014 | Unknown |
frozenbytes.baseline.dev 1.0.0 | 299 | Wednesday, October 22, 2014 | Unknown |
frozenbytes 2014
October 2014 - Initial Release
Framework:
.NET 3.5, 4 - 4.5.2
Enable Web Services and ASP.NET Services
Hpyer-V Services
Development Tools:
Visual Studio 2013 Ultimate
VS Updates 1-3
cinstm frozenbytes.essentials
cinstm frozenbytes.extras
cinstm frozenbytes.repos
SDKs:
VS 2013
Windows 8 SDK
VS IDE Extensions:
PowerShellTools
WebEssentials2013
T4Toolbox
StopOnFirstBuildError
This package has no dependencies.
Ground Rules:
- This discussion is only about frozenbytes.baseline.dev and the frozenbytes.baseline.dev 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 frozenbytes.baseline.dev, 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.