Search found 5 matches

by kellam
Mon Jun 15, 2020 9:22 am
Forum: PowerShell
Topic: XML Merge
Replies: 14
Views: 5827

Re: XML Merge

Have you tried this?

Code: Select all

$finalXml = "<root>"
foreach ($file in $files) {
[xml]$xml = Get-Content $file
$finalXml += $xml.InnerXml
}
$finalXml += "</root>"
([xml]$finalXml).Save("$pwd\final.xml")
by kellam
Mon Jun 15, 2020 9:17 am
Forum: PowerShell GUIs
Topic: Understanding CheckedListBox controls
Replies: 13
Views: 5667

Re: Understanding CheckedListBox controls

I can't use it now since the blurred text is in disabled state when the UseCompatibleTextRendering property is set to false
by kellam
Mon Jun 15, 2020 9:09 am
Forum: PowerShell
Topic: MsgBox Execution Query
Replies: 3
Views: 2322

Re: MsgBox Execution Query

Is there a way to make both modal window and the parent form enabled at the same time?
by kellam
Mon Jun 15, 2020 9:01 am
Forum: Wish List and Feature Requests
Topic: Turn off Open Explorer after build
Replies: 2
Views: 12995

Re: Turn off Open Explorer after build

Is there a way to make it show the exported files in Chrome?
by kellam
Mon Jun 15, 2020 8:49 am
Forum: Feedback
Topic: Script Explorer - Not "Exploring" the PS1 File
Replies: 4
Views: 13687

Re: Script Explorer - Not "Exploring" the PS1 File

Is there a way to make it associated with particular file types instead of files?