Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts_staging/Tasks/Import RD Gateway Cert From IIS.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ ignore the fail-safe checks and force the replacement of rds certs and restart t
for referance: C:\tools\win-acme\wacs.exe --source iis --verbose --siteid 1 --commonname $RDSURL --installation iis --installationsiteid 1 --script "C:\tools\win-acme\Scripts\ImportRDGateway.ps1" --scriptparameters '{CertThumbprint}'
change pathing based on folder for both .json and .exe
better way than calling iis 0 for the change ? probably possible if called from -script
replace win-acme with simpleacme and migration path
#>
param (
[string]$settingsJsonPath = "C:\tools\win-acme\settings.json",
Expand Down
3 changes: 2 additions & 1 deletion scripts_staging/TasksUpdater/Updater P3 Run SU.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
27.11.24 SAN Disabled file rename check due to issues.
13.12.24 SAN Split logging from parser.
06.03.25 SAN added TRMM agent updater.
11.09.25 SAN disabled choco download progress output to shrink log size

.TODO
Fix rename?
Expand Down Expand Up @@ -129,7 +130,7 @@ if ($result.RebootRequired) {
# List outdated packages and capture output
$outdatedPackages = choco outdated | Out-String
# Upgrade all packages and capture output
$upgradeResult = choco upgrade all -y | Out-String
$upgradeResult = choco upgrade all -y --no-progress| Out-String

Write-Host ""
Write-Host "------------------------------------------------------------"
Expand Down