jernstrom.org

Random stuff
  • rss
  • Home
  • About
  • Contact me
  • Poems
  • Bluescreen
  • Daily Dilbert

Ext2 Installable File System For Windows

Kimmo | January 30, 2006

Allrite, so I bought this LaCie Ethernet Disk mini 300GB to have as backup unit and to store some of the kids movies and some music. The damn thing however came delivered with fat32 filesystem (max file size=4gb but just 2gb over network + other shortcoming of fat32)

Now there was the option to format the thing with EXT3 file system; however that EXT3 thing would certainly not be readable from USB cable connection from my Windows thingies. Enter Ext2 (ext3 too!) driver for Windows and all is great again

Complete reading and writing access to files and directories of volumes with the Ext2 or Ext3 file system.
Supports features which are specific to the I/O-system of Windows: Byte Range Locks, Directory Notfication (so the Explorer updates the view of a directory on changes within that directory), Oplocks (so SMB clients are able to cache the content of files).
Allows Windows to run with paging files on Ext2 volumes.

Read more and download here
Backup copy here (v. 1.11a //090102)

Comments
No Comments »
Categories
Free Stuff, Legacy, Windows
Comments rss Comments rss
Trackback Trackback

Group Policy ADM templates for Firefox

Kimmo | January 28, 2006

So you want to use Firefox, but you’re going ballistic when you can’t manage Firefox through GPO?
Well, enter FirefoxADM…

FirefoxADM is an open-source project dedicated to the goal of being able to manage large numbers of Firefox installations on a network using the Windows Active Directory Group Policy Objects (GPOs)

Read more and download here

Comments
No Comments »
Categories
Free Stuff, Legacy, Windows
Comments rss Comments rss
Trackback Trackback

Wget for Windows

Kimmo | January 24, 2006

GNU Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies.

Download an entire site
wget -m -p -k robots=off http://www.somesite.foo.com

This will commmand will do the stuff, and -m and -p will grab all images, CSS, etc. robots=off ignores a sites robots.txt file If you add the -k flag, wget will convert all absolute links into relative links.

Donwload a part of a site
wget -m -k -np http://www.somesite.foo.com/images

The -np (no parent) options means that wget won’t travel “above” /images in the hierarchy

Check here for additional versions
Backup copy here  (1.10.2 //090102)

Comments
No Comments »
Categories
Free Stuff, Legacy
Comments rss Comments rss
Trackback Trackback

Cool Icons

Kimmo | January 24, 2006

Stumpled over some really nice looking icons over at this site

01298_freestyle

Comments
No Comments »
Categories
Legacy
Comments rss Comments rss
Trackback Trackback

Close child processes during logoff

Kimmo | January 24, 2006

 
When you’re running published applications on MetaFrame then you’ve might have encountered the problem that child processes (and sometimes even the main executable) will be left running.

Read more here or check the solution below:

  1. HKLMSYSTEMCCCControlCitrixwfshellTWI
  2. Value Name:LogoffCheckSysModules
  3. Type:REG_SZ
  4. String:MyAppName.exe

NOTE:
Enter the list of executable names with a comma and NO spaces between them, for example:
App1.exe,app2.exe,app3.exe

//Edit (090102):  Tim Mangan also have a nice tool called LaunchIt 
Read more here
Backup copy here

Comments
No Comments »
Categories
Kinda Virtual, Legacy
Comments rss Comments rss
Trackback Trackback

Lansweeper

Kimmo | January 23, 2006

I don’t know. Maybe it’s cool, maybe not.

Lansweeper is a powerful freeware solution without any embedded ads to make a complete software, hardware, asset inventory of your windows network.
No need to install a client on your workstations, all scanning is done through the use of WMI, fileshares and remote registry access.

You can use lansweeper with unlimited clients (no restrictions)
One lansweeper service can handle over 10.000 clients (depending on your server specifications)

 

Read more and download here
Check out live demo of the web interface here

Comments
No Comments »
Categories
Free Stuff, Legacy
Comments rss Comments rss
Trackback Trackback

Universal TCP/IP Network Bootdisk

Kimmo | January 23, 2006

This is kinda old skool…
But, somehow, even in this modern age there’s the occational need to boot up on a 1.44 floppy to access network the way our forfathers used to do it….

The Universal TCP/IP Network Bootdisk is a DOS bootdisk that provides TCP/IP networking support. It’s designed for use in Microsoft networking environments, on either peer-to-peer or domain based LANs. Currently 94 different network card drivers all included, all on the single 1.44MB disk!

 

Read more and download here
Backup copy here (v. 6.2 //090102)

Comments
No Comments »
Categories
Legacy
Comments rss Comments rss
Trackback Trackback

Regshot

Kimmo | January 23, 2006

Regshot is an open-source(GPL) registry compare utility that allows you to quickly take a snapshot of your registry and then compare it with a second one – done after doing system changes or installing a new software product.

 

Read more and download here
Backup copy here (v 1.8.2 //090102)

Comments
No Comments »
Categories
Free Stuff, Legacy, Windows
Comments rss Comments rss
Trackback Trackback

Chain hotfixes

Kimmo | January 23, 2006

Lately I’ve been patching up a lot of servers with quite a few hotfixes. Well, after a while I got bored with the KB 296861 way of installing multiple hotfixes.
By the way QChain is not used anymore…

Anyways here’s my simple script. Just put the all the hotfixes in a single folder and copy/paste the code below to a CMD file such as InstallHF.cmd and doubleclick – presto!

  1. ::…
  2. :: InstallHF.cmd
  3. ::……
  4. @echo off
  5. color 1F
  6. echo.
  7. echo Installing HotFixes, please wait….
  8. echo.
  9. for /f %%i in ('dir *.exe /b') do %%i /Z /U
  10. echo.
  11. echo Done! Restart your computer now
  12. echo.
  13. pause
Comments
No Comments »
Categories
Legacy, Windows
Comments rss Comments rss
Trackback Trackback

CPAU (Create Process As User)

Kimmo | January 23, 2006

In a recent project I needed to execute some stuff at logon with administrative privileges. Certainly there were quite a few commercial alternatives, but from my research they all used the CreateProcessAsUser API with various fancy user interfaces.

The tool I chose to use was the freeware CPAU.
Please note. Using a tool such as CPAU or the commercial alternatives produces a security risk as even though the password might be encrypted in whatever fashion it still passes the password in clear text to CreateProcessAsUser. That, however was a risk I was willing to take under the circumstances..

CPAU
Command line tool for starting process in alternate security context. Basically this is a runas replacement. Also allows you to create job files and encode the id, password, and command line in a file so it can be used by normal users.

 

Read more and download here

Comments
No Comments »
Categories
Free Stuff, Legacy, Windows
Comments rss Comments rss
Trackback Trackback

« Previous Entries

Search jerntrom.org

Recent Posts

  • How to run a DotNet Framework 2.0 Application from a Network Share
  • Slow on Updates…Being Confused…
  • Visual Effects in Windows 2003/XP
  • Set Default Optimized Values for Windows 2003
  • Vm, Vm, My Ware!

Categories

  • Free Stuff
  • jernstrom.org
  • Kinda Virtual
  • Legacy
  • Life
  • Windows

Archives

  • February 2010
  • January 2010
  • October 2009
  • September 2009
  • August 2009
  • January 2009
  • September 2008
  • April 2008
  • March 2008
  • February 2008
  • February 2007
  • January 2007
  • October 2006
  • May 2006
  • March 2006
  • February 2006
  • January 2006
  • February 2005

RSS Desktop Virtualization

  • Today's New Virtualization Related Community Videos - March 11th, 2010 March 11, 2010
  • Eric Sloof Releases a New Virtualization Tool - vmClient March 11, 2010
  • Secure mobile access to the cloud with StoneGate Virtual SSL VPN 1.4 March 11, 2010
  • Xangati Releases Xangati for ESX - Live Enterprise-wide Virtualization Visibility March 11, 2010
  • Citrix Releases Receiver 1.2 for Windows March 11, 2010
  • Citrix Releases Receiver for Mac v1.2 for Download March 11, 2010
  • Download Xangati for VMware ESX ? Virtualization Visibility / Management March 11, 2010
  • Citrix Releases Dazzle 1.1.1 for Download March 11, 2010
  • Citrix Releases Merchandising Server 1.2 Virtual Appliance for Download March 11, 2010
  • DroboElite Does VMware vSphere March 11, 2010
rss