Posted in 27 November 2009 ¬ 14:45h.John
I’m quite a fan of the Sexy Bookmarks WordPress plugin. There’s clearly an element of grace in the design and the developers make no bones about how it should be perceived. Being ‘sexy’ has an inexpressible appeal for anything but it can cause headaches simply because of the connotations that are also brought up with it.
For example, searching in Google for Sexy Bookmarks is innocent enough at first until you get a few pages into the results.
The other problem is that corporate firewalls like WebSense can block words such as ‘Sexy’ if they appear in filenames. (more…)
Posted in 24 November 2009 ¬ 16:35h.John
For shutting down multiple computers on a network:
for /L %C in (1,1,30) do shutdown -f -s -t 0 -m \\ict-%C
This shuts down all Windows computers named ict-X where X is a number from 1 to 30.
Posted in 13 November 2009 ¬ 20:49h.John

iPlayer Wii Channel
Well it finally happened. It was hinted at long ago when the Beeb first made the iPlayer available for the Wii via its internet browser, but now it seems that there will be a dedicated channel on the Wii.
I’m glad that it finally came along. After the recent Internet Channel update, the iPlayer hasn’t been working. Seeing as there is a supposed Flash upgrade in the update, it seemed daft that it would be disabled.
Hopefully the new channel will stream the video more smoothly. It’s been over a year in the making…
Read more at BBC iPlayer launches Wii channel.
Posted in 10 November 2009 ¬ 16:26h.John
I had a little trouble with an HP Printer driver that was causing the Vista PCs to hang at logon.
Without going into the specifics of the problem (which comes down to poor HP drivers), I needed a way to ensure that the driver wouldn’t be active the next time that a user logged onto a computer.
A bit of quick thinking, and I quickly knocked up this command, that will enumerate all users in a folder and make the appropriate change while they are offline. Hurrah!
for /D %D in (\\domain.local\users\*.*) DO (
reg load HKU\UserLoad %D\profile.V2\ntuser.dat
reg delete "HKU\UserLoad\Printers\Connections\,,domainsrv1,Suite Mono Printer" /f
reg delete "HKU\UserLoad\Printers\Connections\,,domainsrv1,Suite Colour Printer" /f
reg unload HKU\UserLoad
)
This assumes that all of your users live in \\domain.local\users and that you are cleaning up vista profiles. Needless to say, you’d probably want to adjust this if you need to do something similar.
Posted in 9 November 2009 ¬ 23:27h.John
Following on from my remove ranger script, here is a VBScript that will automatically install Ranger packages without the need for the Ranger software on the network.
It’s a little rough around the edges but it gets the job done. At the moment, it doesn’t report any failures if a file cannot be copied etc.
Download the Ranger Install Package Script and save the file as ranger_installer.vbs. Now just drag a package folder onto the script to install.
Note that the code has been removed from this page to prevent WordPress from stripping tags
Posted in 27 October 2009 ¬ 12:32h.John
Sometimes it might be necessary to remove Sentinel’s Ranger software from a computer with the minimum of fuss. Even though there is a removal user account. For instance, this may not work.
So here’s a handy script to automitcally disable Ranger on a workstation. This returns some Windows settings back to normal and backs up the Ranger computer info. Just save the code as DeRanger.cmd and run it on any machine that you want to uninstall Ranger.
If you’re having trouble logging into a workstation, either logon as a local administrator or use the Task Manager to stop rgrUIniut.exe in the Processes tab.
DeRanger.cmd
@echo off
::Stop ranger services
Net Stop ClntCMan
Net Stop SecMon
Net Stop RMNETMON
Net Stop RMNetworkMonitorService
::Remove ranger from winlogon and reset Windows Shell
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v UserInit /t REG_SZ /f /d C:\WINDOWS\system32\userinit.exe
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /f /d Explorer.exe
::Disable ranger services
reg add "HKLM\SYSTEM\CurrentControlSet\Services\ClntCMan" /v Start /t REG_DWORD /f /d 4
reg add "HKLM\SYSTEM\CurrentControlSet\Services\SecMon" /v Start /t REG_DWORD /f /d 4
reg add "HKLM\SYSTEM\CurrentControlSet\Services\RMNETMON" /v Start /t REG_DWORD /f /d 4
reg add "HKLM\SYSTEM\CurrentControlSet\Services\RMNetworkMonitorService" /v Start /t REG_DWORD /f /d 4
::Rename Ranger Registry
reg copy "HKLM\SOFTWARE\Hyperion Security Software" "HKLM\SOFTWARE\Hyperion Security Software_backup" /s /f
reg delete "HKLM\SOFTWARE\Hyperion Security Software" /f
::Rename Rnager Installation Folder
rename "%programfiles%\Ranger" Ranger_
::Now restart
shutdown -f -r -t 0