+ Reply to Thread
Page 1 of 3 1 2 3 LastLast
Results 1 to 15 of 43

Thread: USBDLM V3.4 - USB Drive Letter Manager for Windows 2000, XP

  Share/Bookmark
  1. #1

    Reputation
    tosca925's Avatar
    Join Date
    Aug 2005
    Location
    Midlands
    Posts
    1,565
    Thank Post
    4
    Thanked 3 Times in 3 Posts
    Rep Power
    14

    Default USBDLM V3.4 - USB Drive Letter Manager for Windows 2000, XP

    USBDLM V3.4 - USB Drive Letter Manager for Windows 2000, XP

    I know people are using this as i have seen it mentione in other posts, but has anyone worked out how to deploy this via GPO yet?

    I would like to try this out on certain rooms(especially 6th form common room)

  2. #2

    Reputation
    Reputation Reputation Reputation Reputation Reputation Reputation
    ZeroHour's Avatar
    Join Date
    Dec 2005
    Location
    Scotland
    Posts
    3,854
    Blog Entries
    1
    Thank Post
    406
    Thanked 625 Times in 347 Posts
    Rep Power
    137

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    Now that looks cool.
    You could use a startup vbs script.
    It checks to see if the service is there and if not runs the silent install from a unc.
    Also it has a MSI on http://www.uwe-sieber.de/usbdlm_e.html
    Cant you modify the config file and deploy the msi?

  3. #3

    Reputation
    tosca925's Avatar
    Join Date
    Aug 2005
    Location
    Midlands
    Posts
    1,565
    Thank Post
    4
    Thanked 3 Times in 3 Posts
    Rep Power
    14

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000,

    Now that looks cool.
    You could use a startup vbs script.
    It checks to see if the service is there and if not runs the silent install from a unc.
    Example the Zero Please?

  4. #4

    Reputation
    Reputation Reputation Reputation Reputation Reputation Reputation
    ZeroHour's Avatar
    Join Date
    Dec 2005
    Location
    Scotland
    Posts
    3,854
    Blog Entries
    1
    Thank Post
    406
    Thanked 625 Times in 347 Posts
    Rep Power
    137

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    NOTE: I edited my orignal post.

    I have a script I wrote at work that queries WMI for the service and if not runs a command. It was for deploying WinINSTALL Agent. I will post the basics tomorrow.

  5. #5

    Reputation Reputation Reputation
    mark's Avatar
    Join Date
    Jun 2005
    Location
    x-communicated
    Posts
    4,226
    Blog Entries
    2
    Thank Post
    142
    Thanked 38 Times in 34 Posts
    Rep Power
    28

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    Or you could configure it to do this:

    reading [ExcludedLetters] from a foreign location so you can easily define excluded letters for all clients in a network

  6. #6

    Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation
    plexer's Avatar
    Join Date
    Dec 2005
    Location
    Norfolk
    Posts
    6,536
    Thank Post
    139
    Thanked 392 Times in 341 Posts
    Rep Power
    95

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    Email the author about how you modify the msi he's always been very helpfull when I've emailed him in the past even doing a new version to suit what I wanted.

    Using uniextract on the msi didn't reveal anything.

    Ben

  7. #7

    Reputation
    Reputation Reputation Reputation Reputation Reputation Reputation
    ZeroHour's Avatar
    Join Date
    Dec 2005
    Location
    Scotland
    Posts
    3,854
    Blog Entries
    1
    Thank Post
    406
    Thanked 625 Times in 347 Posts
    Rep Power
    137

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000,

    Code:
    Set WshShell = WScript.CreateObject("WScript.Shell")
    WKSName = WshShell.Environment("PROCESS").Item("COMPUTERNAME") 
    idSQL = "Select MACHINEID From WICON_MACHINES where NAME = '"&WKSName&"'"
    Set oWMI = GetObject("winmgmts:" _
    	& "{impersonationLevel=impersonate}!\\" & WKSName & "\root\cimv2")
    
    Set cServices = oWMI.ExecQuery _
    	("Select * from Win32_Service Where Name = '{SERVICE NAME}'")
    If cServices.count = 0 Then
    WshShell.run "BLAH INSTALL"
    End if
    
    Thats the rough idea.

  8. #8

    Reputation
    tosca925's Avatar
    Join Date
    Aug 2005
    Location
    Midlands
    Posts
    1,565
    Thank Post
    4
    Thanked 3 Times in 3 Posts
    Rep Power
    14

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    Clear as Mud I'm afraid.

  9. #9

    Reputation
    Reputation Reputation Reputation Reputation Reputation Reputation
    ZeroHour's Avatar
    Join Date
    Dec 2005
    Location
    Scotland
    Posts
    3,854
    Blog Entries
    1
    Thank Post
    406
    Thanked 625 Times in 347 Posts
    Rep Power
    137

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000,

    Code:
    WKSName = WshShell.Environment("PROCESS").Item("COMPUTERNAME")
    
    Gets the computer name (NOTE: FQDM is not returned)
    Code:
    Set cServices = oWMI.ExecQuery _
       ("Select * from Win32_Service Where Name = '{SERVICE NAME}'")
    
    If you open the service (right click->properties) it will have a servic name (not the display name). Put that in where it says {SERVICE NAME}
    It will then check to see if its there. If its there then a row result is sent back.
    Code:
    If cServices.count = 0 Then
    
    Says basically if there is a result do this
    Code:
    WshShell.run "BLAH INSTALL"
    
    You could have "\\server\apps\usbdlm\install.cmd --silent install" and that should work.
    Or thats the idea anyway

  10. #10

    Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation Reputation
    plexer's Avatar
    Join Date
    Dec 2005
    Location
    Norfolk
    Posts
    6,536
    Thank Post
    139
    Thanked 392 Times in 341 Posts
    Rep Power
    95

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    I've emailed Uwe the developer of usbdlm and his repsonse was that the msi was created with wininstall le 2003 and he has no idea how to include the changes to make it gpo deployable.

    However it is a simple app so probably a captured msi on a clean machine would work I'll try in on my vm when I got time.

    Ben

  11. #11

    Reputation
    tosca925's Avatar
    Join Date
    Aug 2005
    Location
    Midlands
    Posts
    1,565
    Thank Post
    4
    Thanked 3 Times in 3 Posts
    Rep Power
    14

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    Let us know Plexer

  12. #12

    Reputation Reputation Reputation Reputation
    ajbritton's Avatar
    Join Date
    Jul 2005
    Location
    Wandsworth
    Posts
    1,630
    Thank Post
    17
    Thanked 73 Times in 43 Posts
    Rep Power
    26

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000,

    Quote Originally Posted by ZeroHour
    Code:
    WKSName = WshShell.Environment("PROCESS").Item("COMPUTERNAME")
    
    Gets the computer name (NOTE: FQDM is not returned)
    Code:
    Set cServices = oWMI.ExecQuery _
       ("Select * from Win32_Service Where Name = '{SERVICE NAME}'")
    
    If you open the service (right click->properties) it will have a servic name (not the display name). Put that in where it says {SERVICE NAME}
    It will then check to see if its there. If its there then a row result is sent back.
    Code:
    If cServices.count = 0 Then
    
    Says basically if there is a result do this
    Code:
    WshShell.run "BLAH INSTALL"
    
    You could have "\\server\apps\usbdlm\install.cmd --silent install" and that should work.
    Or thats the idea anyway
    Instead of getting the computername, can't you just use a dot '.'?

  13. #13

    Reputation
    tosca925's Avatar
    Join Date
    Aug 2005
    Location
    Midlands
    Posts
    1,565
    Thank Post
    4
    Thanked 3 Times in 3 Posts
    Rep Power
    14

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    To update.

    I deployed the downloadable msi from the site by GPO to a couple of test machines.

    I nstalled it manually on my pc, set up the .ini file with the settings i want the users to use. Then i copied the .ini file to a network share and run a vb logon script to copy the file to the progame directory on the clients. It works a treat now.......easy mass deployment.

    I now use a vb script to check to see if the file exists and stop if it does, if not then copy the file to the directory. I like to use this sort of script just incase a lot of the laptops clients are not logged on regular.

    This has helped me with SiMS as this was mapped as E: and Windowws always used bloody E: on our workstaions so stopping SimS working after using a USB stick.

    If anyone wants the script let me know.

  14. #14

    Reputation

    Join Date
    Jun 2007
    Location
    Oslo
    Posts
    6
    Thank Post
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000,

    Hello!

    Can you please send me that script?

    Thanks!

  15. #15

    Reputation
    dezt's Avatar
    Join Date
    Dec 2005
    Location
    Lancs
    Posts
    632
    Thank Post
    82
    Thanked 12 Times in 11 Posts
    Rep Power
    13

    Default Re: USBDLM V3.3 - USB Drive Letter Manager for Windows 2000, XP

    just deployed USBDLM via gpo, worked a treat.

    Finally got usb drives working

+ Reply to Thread
Page 1 of 3 1 2 3 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Daemon Tools drive letter
    By ZeroHour in forum How do you do....it?
    Replies: 9
    Last Post: 21-05-2009, 03:46 PM
  2. Replies: 2
    Last Post: 21-08-2007, 01:16 PM
  3. Hide Drive Letter
    By mattx in forum Windows
    Replies: 3
    Last Post: 21-05-2007, 01:10 PM
  4. Kicking the drive letter habit
    By ITWombat in forum Windows
    Replies: 5
    Last Post: 29-05-2006, 01:02 PM
  5. pupils able to access c drive via word 2000 web toolbar
    By projector1 in forum Office Software
    Replies: 22
    Last Post: 08-12-2005, 08:44 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts