From: James Britt Date: 2006-02-20T12:28:22+09:00 Subject: Re: Login script joey se wrote: > hello! > > on windows 2003. id like to use ruby to process my login script. > > how do you read all mapped drives, map a drive or disconnect a mapped > drive with ruby? > I have a script to map some drives, with stuff such as: require 'win32ole' net = WIN32OLE.new('WScript.Network') user_name = 'some_user_name' password = 'top-secret-password' net.MapNetworkDrive( 'X:', '\\james3480\$C', nil, user_name, password ) Poke around MSDN for WScript.Network examples using JScript or VBScript. That's how I worked out what I needed. -- James Britt http://www.ruby-doc.org - Ruby Help & Documentation http://www.artima.com/rubycs/ - The Journal By & For Rubyists http://www.30secondrule.com - Building Better Tools