Fixed issue with Word Interop not loading
Added support for PDF output
This commit is contained in:
Mikael Karlsson
2025-05-25 21:07:57 +10:00
parent e1328ac7dd
commit 5984acfca0
3 changed files with 42 additions and 3 deletions

View File

@@ -422,7 +422,7 @@ function Add-CDDocumentCustomProfileValue
$value = $obj.startMenuAppListVisibility
if($value.IndexOf(", ") -eq -1)
{
$value = $value -replace ",",", " # Option values in json file has space afte , but value in object don't
$value = $value -replace ",",", " # Option values in json file has space after , but value in object don't
}
Invoke-TranslateOption $obj $prop -PropValue $value
return $false