Carbon 2.4.1
See the version list below for details.
dotnet add package Carbon --version 2.4.1
NuGet\Install-Package Carbon -Version 2.4.1
<PackageReference Include="Carbon" Version="2.4.1" />
paket add Carbon --version 2.4.1
#r "nuget: Carbon, 2.4.1"
// Install Carbon as a Cake Addin #addin nuget:?package=Carbon&version=2.4.1 // Install Carbon as a Cake Tool #tool nuget:?package=Carbon&version=2.4.1
Carbon is a PowerShell module for automating the configuration Windows 7, 8, 2008, and 2012 and automation the installation and configuration of Windows applications, websites, and services. It can configure and manage:
* Local users and groups
* IIS websites, virtual directories, and applications
* File system, registry, and certificate permissions
* Certificates
* Privileges
* Services
* Encryption
* Junctions
* Hosts file
* INI files
* Performance counters
* Shares
* .NET connection strings and app settings
* And much more!
All functions are idempotent: when run multiple times with the same arguments, your system will be in the same state without failing or producing errors.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.11.0 | 8,574 | 11/3/2021 |
2.8.1 | 4,245 | 3/26/2019 |
2.8.0 | 747 | 3/25/2019 |
2.7.0 | 1,820 | 12/11/2018 |
2.6.0 | 3,416 | 7/8/2018 |
2.5.4 | 1,867 | 6/2/2018 |
2.5.3 | 1,060 | 6/1/2018 |
2.5.2 | 1,129 | 6/1/2018 |
2.5.1 | 1,127 | 6/1/2018 |
2.5.0 | 18,329 | 6/18/2017 |
2.4.1 | 9,135 | 2/21/2017 |
2.4.0 | 2,709 | 11/9/2016 |
2.3.0 | 1,420 | 9/29/2016 |
2.2.0 | 98,534 | 5/12/2016 |
2.1.1 | 1,546 | 2/25/2016 |
2.1.0 | 1,232 | 2/9/2016 |
2.0.1 | 1,455 | 10/20/2015 |
2.0.0 | 1,368 | 10/11/2015 |
1.8.0 | 2,804 | 9/22/2014 |
1.7.0 | 1,877 | 5/3/2014 |
## Bug Fixes
* Fixed: `Carbon_Permission` fails when revoking permissions and the `Permissions` property doesn''t have a value.
* Fixed: `Protect-String` doesn't convert secure strings properly so they get encrypted with extra bytes in them.
* Fixed: `Revoke-Permission' fails when an identity has multiple access control entries on an item. Thanks to [bozho_](https://bitbucket.org/bozho_/) for reporting [issue #221](https://bitbucket.org/splatteredbits/carbon/issues/221/community-revoke-permission-fails-if-the) and contributing the fix.
* Fixed: `Compress-Item`' writes an error when using the `WhatIf` switch.
* Fixed: `Install-IisWebsite` help examples contain invalid/broken code (thanks to John Mitchell for reporting).
* Fixed: `Install-Service` fails when password contains double quote character, i.e. `"` (fixes [issue #219](https://bitbucket.org/splatteredbits/carbon/issues/219/community-install-service-fails-to)).
* Fixed: `Read-File` and `Write-File` fail to retry writing to a locked file when `$Global:Error` is full. Fixes [issue #217](https://bitbucket.org/splatteredbits/carbon/issues/217/community-error-handling-in-read-file-and).
* Fixed: `Get-FirewallRule` sets the `EdgeTraversalPolicy` to `DeferUser` on rules whose policy is "defer to application".
* Fixed: `Get-FirewallRule` fails on non-english-speaking computers. (It was parsing the output of `netsh advfirewall`. Now it uses the Windows Firewall with Advanced Security API.) [Fixes [issue #208](https://bitbucket.org/splatteredbits/carbon/issues/208/community-get-firewallrule-could-not-find).
* Fixed: `Get-FirewallRule` incorrectly parsed interface types. It assumed interface type was one of multiple values. In reality, it can be set to one or more different values. The underlying enumeration and its values have been updated to be a set of flags (i.e. a bit field).
* Fixed: `Carbon_FirewallRule` fails when Profile property has more than one value.
* Fixed: `Get-ScheduledTask` doesn't handle when a scheduled task doesn't exist on Windows 2008.