PSWriteWord
PSWriteWord copied to clipboard
PSWriteWord is powershell module to create Microsoft Word documents without Microsoft Word installed...
Thanks for this great module! I'm trying to add a list after a certain paragraph in a document. This works great for Add-WordText, but Add-WordList always puts the list at...
Hi, Why TOC does not click with CTRL + Click? BR. Itamar
PSWriteWord is able to modify bookmarks within a Word document, however, is it possible to use the cmdlet to modify Word content controls?
```powershell $userObjects=Get-ADUser -Filter * $chart = $userObjects | Group-Object Department | Select-Object Name, @{Name = "Values"; Expression = { [math]::round(((($_.Count) / $userObjects.Count) * 100), 2) } } | Where-Object {...
Is it possible to set picture wrapping properties? i believe the default behaviour is WrapInLineWithText.
function Get-GPOPolicy { $groupPolicies = Get-GPO -Domain $($Env:USERDNSDOMAIN) -All foreach ($gpo in $groupPolicies) { [xml]$xmlGPOReport = $gpo.generatereport('xml') #GPO version if (($xmlGPOReport.GPO.Computer.VersionDirectory -eq 0) -and ($xmlGPOReport.GPO.Computer.VersionSysvol -eq 0)) { $computerSettings =...
Is there a way i can make form fields with PSWriteWord or is it a purchased version of Xceed feature only?
```powershell $objChart = @( [PSCustomObject] @{ Type = 'Passed'; Count = 0 } [PSCustomObject] @{ Type = 'Failed'; Count = 3 } [PSCustomObject] @{ Type = 'Skipped'; Count = 0...
```powershell Import-Module .\PSWriteWord.psd1 -Force $objChart = @( [PSCustomObject] @{ Type = 'Passed'; Count1 = 0 } [PSCustomObject] @{ Type = 'Failed'; Count1 = 3 } [PSCustomObject] @{ Type = 'Skipped';...