Carbon 2.4.0
See the version list below for details.
dotnet add package Carbon --version 2.4.0
NuGet\Install-Package Carbon -Version 2.4.0
<PackageReference Include="Carbon" Version="2.4.0" />
paket add Carbon --version 2.4.0
#r "nuget: Carbon, 2.4.0"
// Install Carbon as a Cake Addin #addin nuget:?package=Carbon&version=2.4.0 // Install Carbon as a Cake Tool #tool nuget:?package=Carbon&version=2.4.0
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 | 7,519 | 11/3/2021 |
2.8.1 | 4,224 | 3/26/2019 |
2.8.0 | 736 | 3/25/2019 |
2.7.0 | 1,775 | 12/11/2018 |
2.6.0 | 3,379 | 7/8/2018 |
2.5.4 | 1,851 | 6/2/2018 |
2.5.3 | 1,044 | 6/1/2018 |
2.5.2 | 1,115 | 6/1/2018 |
2.5.1 | 1,112 | 6/1/2018 |
2.5.0 | 18,308 | 6/18/2017 |
2.4.1 | 9,118 | 2/21/2017 |
2.4.0 | 2,684 | 11/9/2016 |
2.3.0 | 1,405 | 9/29/2016 |
2.2.0 | 98,090 | 5/12/2016 |
2.1.1 | 1,531 | 2/25/2016 |
2.1.0 | 1,217 | 2/9/2016 |
2.0.1 | 1,440 | 10/20/2015 |
2.0.0 | 1,355 | 10/11/2015 |
1.8.0 | 2,777 | 9/22/2014 |
1.7.0 | 1,858 | 5/3/2014 |
## Enhancements
* `Protect-String` can now encrypt a `SecureString`. The `String` parameter's type was changed to `[object]`. When you pass in a `SecureString`, it is converted to an array of bytes, encrypted, and the array of bytes are cleared from memory.
* Renamed `Protect-Acl` to `Disable-AclInheritance` to make it clearer what the function does. Created a `Protect-Acl` alias in place to preserve backwards-compatability.
* `Disable-AclInheritance` only disables inheritance if it is currently enabled.
* Created `Enable-AclInheritance` to re-enable access rule inheritance on file system and registry ACLs. This function is paired with `Disable-AclInheritance`.
## Bug Fixes
* Fixed: `Get-ProgramInstallInfo` fails when a program's `Version` registry key value can't be converted into a `Version` object.
* Fixed: `Test-Service` failed to detect if a device driver service is installed.
* Fixed: `Install-Service` fails if a service depends on a device driver. (Note: in our testing, we can't get a device driver set as a dependency. If you know what the secret sauce is to get this to work with sc.exe (or another means), please let us know.)
* Fixed: `Disable-AclInheritance` (ne `Protect-Acl`) fails when piped a registry key.
* Fixed: `Get-PathProvider` fails when passed a fully-qualified registry key PowerShell path, e.g. `Microsoft.PowerShell.Core\Registry::HKEY_CURRENT_USER\Software`.