Monthly Archive: September 2011
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.
|
$('.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!
|
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...
If you find that your client naming policy as set on your Windows Deployment Services server is being ignored when you deploy a Windows 7 image, you may find that there’s a little known...
Here’s a script I used recently to change users’ roaming profile paths from one server (\\OLDSERVER) to another (\\NEWSERVER). It identifies the old server by comparing strings with a search term and only changes...
When you attempt to add driver packages to a boot image using the Windows Deployment Service MMC which fails to complete or the process hangs, you’re left with a mounted version of your WIM...