Reduced font size on demos

This commit is contained in:
Dan Franciscus
2019-05-01 12:07:52 -07:00
parent 4d6089b801
commit 88ea8ef638
2 changed files with 9 additions and 9 deletions

View File

@@ -1,12 +1,12 @@
## Boxstarter can be used to create a dynamic list of both outdated packages, additional packages to install and packages to exclude for each Chocolatey client
### Boxstarter can be used to create a dynamic list of both outdated packages, additional packages to install and packages to exclude for each Chocolatey client
## In this example, we want to add curl and git as additional packages to install and exclude Java (jre8). Note that -ScriptPath is the path that will be created with a list of choco commands for each package to install. Boxstarter will reboot if needed after each line
### In this example, we want to add curl and git as additional packages to install and exclude Java (jre8). Note that -ScriptPath is the path that will be created with a list of choco commands for each package to install. Boxstarter will reboot if needed after each line
```
Invoke-BoxStarterRemoteUpgrade -ComputerName winclient2 -Credential (Get-Credential) `
-AdditionalPackages curl,git -ExcludedPackages jre8 `
-ScriptPath C:\Windows\Temp\BoxstarterUpgrade.txt
```
## Here is the BoxstarterUpgrade.txt file for the previous example:
### Here is the BoxstarterUpgrade.txt file for the previous example:
```
choco upgrade curl -r -y
choco upgrade git -r -y