diff --git a/README.md b/README.md index 803b2f0..0efad1d 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Aside from docker, which you also need for Bitwarden, BitBetter requires the fol With your dependencies installed, begin the installation of BitBetter by downloading it through Github or using the git command: ``` -git clone https://github.com/jakeswenson/BitBetter.git +git clone https://github.com/jakeswenson/BitBetter.git -b lite ``` ### Optional: Manually generating Certificate & Key diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index 39e10ec..6b2dfd1 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -467,12 +467,11 @@ internal class Program Set(type, license, "SmSeats", Int32.MaxValue); Set(type, license, "SmServiceAccounts", Int32.MaxValue); Set(type, license, "UseRiskInsights", true); - Set(type, license, "LimitCollectionCreationDeletion", true); - Set(type, license, "AllowAdminAccessToAllCollectionItems", true); Set(type, license, "Trial", false); Set(type, license, "LicenseType", Enum.Parse(licenseTypeEnum, "Organization")); Set(type, license, "UseOrganizationDomains", true); Set(type, license, "UseAdminSponsoredFamilies", true); + Set(type, license, "UsePhishingBlocker", true); Set(type, license, "Hash", Convert.ToBase64String((Byte[])computeHash.Invoke(license, [])!)); Set(type, license, "Signature", Convert.ToBase64String((Byte[])sign.Invoke(license, [cert])!));