Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # $webConfig = 'C:\Temp\Web.Config'
  2. # [xml]$doc = Get-Content $webConfig
  3.  
  4. # har gjort om det lite för att du ska kunna se exempel
  5. # hoppar över att läsa och skriva till fil
  6.  
  7. [xml]$doc = @"
  8. <?xml version="1.0" encoding="utf-8"?>
  9. <configuration>
  10. <connectionStrings configSource="org-value" />
  11. </configuration>
  12. "@
  13.  
  14. $root = $doc.get_DocumentElement();
  15. $root.connectionStrings.configSource.Replace('org-value','new-value')
  16. $root.connectionStrings.configSource
  17. $doc.Save()
  18. $doc.configuration.connectionStrings
  19.  
  20.  
  21. # $doc.Save($webConfig)
  22.  
  23. # <connectionStrings configSource="Config\ConnectionStringsTemp.config" />
  24. # <connectionStrings configSource="Config\ConnectionStrings.config" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement