Skip to content

Instantly share code, notes, and snippets.

@omar-yassin
Created July 8, 2015 15:41
Show Gist options
  • Save omar-yassin/07caf8abfe843c7b8714 to your computer and use it in GitHub Desktop.
Save omar-yassin/07caf8abfe843c7b8714 to your computer and use it in GitHub Desktop.
Powershell: Modifying XML
$path = 'C:\omar\Web.config'
$xml = [xml](Get-Content $path)
$UseWebResourceCDN=$xml.configuration.appSettings.add | where {$_.key -eq 'UseWebResourceCDN'}
$UseWebResourceCDN.Value = 'True'
$xml.save($path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment