Change Cluster IP Address (2008R2)
If for any reason you need to change the IP address of the cluster (the management interface, not a resource!) then you’ll probably be asking yourself where the hell you do that. I was…...
me, on scripting, trance and other subjects i enjoy
If for any reason you need to change the IP address of the cluster (the management interface, not a resource!) then you’ll probably be asking yourself where the hell you do that. I was…...
Use the following VBScript code to interrogate Active Directory for a list of all authorised DHCP Servers which are then piped to a Net Shell (NETSH) backup command. See below for the up-to-date PowerShell...
To list all members of a known group in human readable form (without the DN) from Active Directory: dsget group “CN=MyGroup,OU=MyGroupOU,DC=domain,DC=com” -members | dsget user -fn -ln > MyGroup.txt OR to just get their...
A bit of code to convert GET values obtained from a clicked link in to a POST and send it as a post using jQuery.
1 2 3 4 5 6 7 8 9 10 |
$('.cssclass').click(function() { var postvar = $(this).attr("href").split('?'); $.post(postvar[0], postvar[1], function(i) { // Look after (i) or do magic. }); return false; }); |
If you generate href values in your code...
Rather than spend 45 minutes digging through the documentation to find the KB article which deals with your rather modest private cloud solution, here’s the link to the VMWare documentation for those of us...
There’s still a little place in my heart for a decent batch script. This morsel prompts the user to enter a new computer name and then, using NETDOM, it renames the computer on the...
Since I often seem to forget the correct syntax for setting a static IP address using netsh, I’ve decided to blog it then I know where to come to remind myself!
1 2 |
netsh interface ipv4 set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 netsh interface ipv4 set dns "Local Area Connection" static 192.168.0.1 |
And when...
If like me you’re stuck with a dynamic IP address on your Internet connection but still wish to provide FTP services from IIS7.5 on Windows Server 20008R2, you may have noticed that when connecting...