29Oct/10Off
Tool for Browsing Microsoft Active Directory
Nice, easy and comfortable. And of course free. here.
1Sep/10Off
Working with Windows Registry in Java 3
jRegistryKey library actually is under LGPL. So it is suitable to be used in commercial projects too! Very simple library, that just works!
30Jun/10Off
Replacing Parameters in Files with VBScript
Here is a small VBScript that replaces parameters in a file. For example you have file1
with:
Hello, my name is ${name}. I am from ${place}.
Using this VBScript replacer, you can replace those parameters and write all the contents to another file file2
:
replacer.vbs file_with_parameters file_to_write key1 value1 key2 value2 ..
And here is replacer itself: