About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (203)
- Security (17)
- Test (32)
- Tooling (160)
- Uncategorized (160)
Most used tags
Tag Archives: configuration
Customize Office365 installation
We’re using Office 365 to support Choose Your Own Device. On my Windows laptop I’ve installed it. There is no option to remove unneeded programs after the installation. To save some room (like on a SSD) you can configure which … Continue reading
Setup logging in configuration with powershell
Manipulation of config files with notepad is a burden for every developer / operator. It is the source of many errors. With DEVOPS we try to automate this process. The result is less prone to errors. See the powershell script … Continue reading
Posted in Tooling
Tagged .NET, configuration, DEVOPS, logging, powershell, web.config
Leave a comment
Add tracelistener with powershell
In our deployment script we automate the installation and configuration of our product. For Development and Test environment we want to log everything to a file. The powershell script below takes care of adding TextWriterTraceListener to the trace listeners. The … Continue reading
<clear></clear> is not the same as <clear/>
In the dotNET configuration files you can add items to a collection like appSettings with Because this is XML you can also use the following line to add an item: But not the same for clearing the list. Try adding … Continue reading