# Friday, August 15, 2008

The new eventing infrastructure in PowerShell 2.0 is pretty delicious. You couldn’t do the following in 1.0 without a 3rd party snap-in (like my PSEventing snapin), but now it’s all there at the touch of your fingers. Well, it demands a bit of a sniff around WMI too, but hey, it works well.  With this module, anytime you add or remove a removable device like an external harddrive or USB key, or map a new network drive in explorer, PowerShell will now automatically add or remove a corresponding PSDrive for you.

  1. # AutoMount.psm1 v1.0  
  2. # Oisin "x0n" Grehan (MVP)  
  3.  
  4. $query = new-object System.Management.WqlEventQuery  
  5. $query.EventClassName = "__InstanceOperationEvent" 
  6.  
  7. # default to every 2 seconds  
  8. $query.WithinInterval = new-object System.TimeSpan 0,0,2  
  9.  
  10. # this WMI is only available with Windows 2003 and Vista (not XP it appears).  
  11. # this could be rewritten to use different WMI queries to support 2000/NT/XP also.  
  12. $query.QueryString = "Select * from Win32_VolumeChangeEvent" 
  13.  
  14. # attach a watcher  
  15. $watcher = new-object System.Management.ManagementEventWatcher $query 
  16.  
  17. # here we use -SupportEvent instead of -SourceIdentifier  
  18. # this prevents this event from being generally visible  
  19. # also note the use of the call operator to invoke a   
  20. # function in the scope of the module since this action  
  21. # occurs outside of module scope.  
  22. Register-ObjectEvent $watcher -EventName "EventArrived" `  
  23.     -SupportEvent "WMI.VolumeChange" -Action {  
  24.         & (get-module automount) VolumeChangeCallback @args 
  25.     }  
  26.  
  27. # New PSEvents:  
  28. #  
  29. #     PowerShell.DeviceConfigurationChanged  
  30. #     PowerShell.DeviceArrived  
  31. #     PowerShell.DeviceRemoved  
  32. #     PowerShell.DeviceDocking  
  33.  
  34. # win32_volumechangeevent event types  
  35. $eventTypes = @{  
  36.     1 = "ConfigurationChanged";  
  37.     2 = "Arrived";  
  38.     3 = "Removed";  
  39.     4 = "Docking";  
  40. }  
  41.  
  42. # private module level callback function  
  43. function VolumeChangeCallback ($sender, $eventargs) {  
  44.     trap { write-warning $_ }  
  45.  
  46.     $driveName = $eventArgs.NewEvent.DriveName.TrimEnd(":")  
  47.     $eventType = [int]$eventArgs.NewEvent.EventType # was uint16  
  48.  
  49.     $forwardedEvent = "Device$($eventTypes[$eventType])" 
  50.       
  51.     # forward a new simpler event specific to device event type  
  52.     [void]( New-PSEvent "PowerShell.$forwardedEvent" -Sender $driveName `  
  53.         -EventArguments $eventargs )  
  54. }  
  55.  
  56. # hook up our psdrive mount / unmount events  
  57. # and start the WMI watcher  
  58. function Enable-AutoMount {  
  59.  
  60.     Register-PSEvent -SourceIdentifier "PowerShell.DeviceArrived" `  
  61.         -Action {              
  62.             new-psdrive -name $args[0] -psprovider `  
  63.                 filesystem -root "$args[0]:";  
  64.          }  
  65.  
  66.     Register-PSEvent -SourceIdentifier "PowerShell.DeviceRemoved" `  
  67.         -Action {  
  68.             remove-psdrive -name $args[0] -ea 0; # may not exist  
  69.         }  
  70.       
  71.     $watcher.Start()  
  72. }  
  73.  
  74. # tear down our psdrive mount / unmount events  
  75. # and stop the WMI watcher  
  76. function Disable-AutoMount {  
  77.  
  78.     Unregister-PSEvent -SourceIdentifier "PowerShell.DeviceArrived" 
  79.     Unregister-PSEvent -SourceIdentifier "PowerShell.DeviceRemoved" 
  80.       
  81.     $watcher.Stop()  
  82. }  
  83.  
  84. # export functions to control automount  
  85. Export-ModuleMember Enable-AutoMount, Disable-AutoMount  
  86.  
  87. # start watching and (un)mounting  
  88. Enable-AutoMount 

This only works PowerShell v2.0 CTP2, and you’ll need to save it as AutoMount.psm1 in a directory under your documents folder like so (vista example):

%userprofile%\documents\windowspowershell\packages\automount\automount.psm1

You can then load it with the command:

ps> add-module automount

I have this in my profile.  You can temporarily disable automount with the function Disable-AutoMount and reenable it at anytime with Enable-AutoMount. The module also exposes four new events for you to consume yourself. You could, for example, hook your own script to run anytime a device is added and/or removed. This is what I do myself in the module. I hook a WMI event once then forward 1 of 4 possible new events depending on the type of WMI event that was raised.

NOTE: this particular flavour of WMI query only works in Vista and Windows 2003 it appears. I’m looking into getting it working with 2000/XP also.

Have fun!

posted on Friday, August 15, 2008 10:14:47 PM (Eastern Daylight Time, UTC-04:00)  #    Comments [0] Trackback
Related posts:
PowerShell v2.0 – Differences Between CTP3/Win7Beta and Win7RC
Pscx 1.2 Beta Released
PowerShell 2.0 CTP3: Modules, in Practice - Closures
PowerShell 2.0 CTP3: Modules, in Practice – .NET Interfaces
PowerShell 2.0 CTP3: Modules, in Practice.
Visual Studio 2008 Extensions for WSS 3.0 v1.3 March CTP

Referred by:
auto mount in windows 2003 (www.google.co.in) [Referral]
psevent windows forms powershell (www.google.fr) [Referral]
disable automatic mounting network drive (www.google.no) [Referral]
remove disable automount windows xp (www.google.com.br) [Referral]
windows xp unmount (www.google.ca) [Referral]
automount (www.google.co.uk) [Referral]
+mount +powershell (www.google.be) [Referral]
powershell (search.live.com) [Referral]
register-wmievent (groups.google.com) [Referral]
http://huddledmasses.org/automount-removable-drives-in-power... [Referral]
enable automount windows 2000 server (www.google.nl) [Referral]
automount w2003 (www.google.es) [Referral]
powershell mount remote drive (www.google.com) [Referral]
removable drives xp (www.google.com) [Referral]
powershell new-event (www.google.com) [Referral]
automount (www.google.com) [Referral]
powershell to unmount database (www.google.co.uk) [Referral]
script to autoremove usb drives and automount windows (www.google.com) [Referral]
windows 2000 auto mount (www.google.ru) [Referral]
Windows 2000 automount (www.google.ru) [Referral]
windows xp disable auto mount (www.google.com) [Referral]
windows 2003 disable automount (www.google.com) [Referral]
automount removable drives to desktop xp (www.google.com) [Referral]
powershell psdrive network (www.google.com) [Referral]
wmi unmount (www.google.co.uk) [Referral]
automount disable 2003 (www.google.co.uk) [Referral]
new network mount xp (www.google.com) [Referral]
windows vista disable mount (www.google.com) [Referral]
how to enable mount function (www.google.com.kw) [Referral]
register-wmiEvent folder (www.google.com) [Referral]
windows mount removable folder (www.google.ru) [Referral]
win2003 unmount drive (www.google.com) [Referral]
disable auto mapping network drives (www.google.com) [Referral]
disable auto mapping network drives (www.google.com) [Referral]
how to disable usb automount in vista for vmWARE (www.google.com) [Referral]
automount unmount (www.google.de) [Referral]
disable windows auto mount network items (www.google.com) [Referral]
automounted (www.google.com) [Referral]
powershell PSDrive (www.google.com) [Referral]
enable windows auto mount (www.google.com) [Referral]
unmount drive in windows xp (www.google.ie) [Referral]
unmount folders windows xp (www.google.co.uk) [Referral]
delete auto-mount network drive vista (www.google.com) [Referral]
http://groups.google.com/group/microsoft.public.windows.powe... [Referral]
powershell snapin mount drives (www.google.com) [Referral]
windows xp network drive unmount (www.google.ca) [Referral]
http://www.google.com/ [Referral]
mount folder as removable (www.google.com) [Referral]
turn off auto mount in xp (www.google.ca) [Referral]
stop XP from automatically mounting drives (www.google.com) [Referral]
powershell mount usb (www.google.it) [Referral]
powershell register-wmievent (www.google.com) [Referral]
powershell mount network drive (www.google.com) [Referral]
mounting network drive with visual studio (www.google.com) [Referral]
Windows 2003 removable disks mount unmount (www.google.de) [Referral]
unmount network drive vista (search.yahoo.com) [Referral]
mounting removable drives on the desktop windows XP (www.google.com) [Referral]
Win32_VolumeChangeEvent (www.google.cn) [Referral]
powershell mount network drive (www.google.it) [Referral]
powershell mount network driv (www.google.de) [Referral]
powershell mount usb device (www.google.fr) [Referral]
view psdrives (www.google.com) [Referral]
wmi event drive mounted (www.google.co.nz) [Referral]
how to turn on automount windows (www.google.com) [Referral]
windows xp automount of usb disabled (www.google.ch) [Referral]
turn off windows xp automount (www.google.com) [Referral]
unmount a harddrive in vista (search.live.com) [Referral]
wmi script + turn off usb drive (www.google.ca) [Referral]
new-psdrive (www.google.com) [Referral]
mount and unmount drives xp (www.google.com) [Referral]
automounted (www.google.co.in) [Referral]
disable automounting of network shares windows XP (www.google.com) [Referral]
wmi unmount drive (www.google.com) [Referral]
powershell mount (www.google.fr) [Referral]
http://eu2.ixquick.com/do/metasearch.pl [Referral]
powershell map network drive wmi (www.google.de) [Referral]
auto mount vista network share (www.google.dk) [Referral]
automount network windows xp (www.google.ca) [Referral]
windows 2000 server automount external drive (www.google.com) [Referral]
"WithinInterval" (www.google.com) [Referral]
xp unmount network share (www.google.com) [Referral]
how to unmount a folder on xp (www.google.com) [Referral]
desktop automount in windows (search.yahoo.com) [Referral]
unmount hard drive in windows xp (www.google.com.my) [Referral]
mount and unmount on xp (www.google.com.pk) [Referral]
windows automount removable drive (www.google.com) [Referral]
auto-share removable drives (www.google.co.uk) [Referral]
automount psdrives (www.google.co.uk) [Referral]
powershell mount network (www.google.fr) [Referral]
automounting (www.google.com.py) [Referral]
WINDOWS ENABLE AUTOMOUNT (www.google.hr) [Referral]
Powershell to get a list of USB mounted drives (www.google.com) [Referral]
disable automount windows 2000 (www.google.de) [Referral]
windows xp usb unmount (www.google.ca) [Referral]
winxp automatic mount network drive (www.google.com) [Referral]
powershell mount network drive (www.google.com.br) [Referral]
Disable AutoMount in vista (www.google.co.in) [Referral]
unmount removable drive 2000 (www.google.com) [Referral]
"windows 2000" enable automount (www.google.it) [Referral]
unmount windows network drive (search.yahoo.com) [Referral]
mount folder as removable drive (www.google.com) [Referral]
stop automatic unmount (www.google.mn) [Referral]
win xp automount disable (www.google.at) [Referral]
mount and unmount usb xp (www.google.it) [Referral]
http://www.developpez.net/forums/d468492-6/environnements-de... [Referral]
remove network drive + powershell (www.google.com) [Referral]
disabled automount usb key manual mount xp (www.google.com) [Referral]
removeable device xp auto (www.google.com) [Referral]
powershell new-harddrive (www.google.com) [Referral]
http://www.nivot.org/2008/08/16/AutoMountunmountNewPSDrivesForRemovableDrivesAndNetworkSharesInPowerShellV2.aspx (www.google.com) [Referral]
how to remove mounted network drives xp (www.google.com) [Referral]
New-PSdrive auto (www.google.com.hk) [Referral]
unmount removable usb vista (www.google.it) [Referral]
mount unmount usb device on xp (www.google.hu) [Referral]
psdrive wmi (www.google.com) [Referral]
mount removable xp (www.google.co.th) [Referral]
unmount hard drive xp script (www.google.com) [Referral]
sun vmware windows mount usb drive (www.google.de) [Referral]
Prevent Automatic Mapping of Network Drives (search.live.com) [Referral]
unmount a drive xp (www.google.com) [Referral]
disable automatic mounting xp (www.google.co.nz) [Referral]
stop USB auto mount vista (www.google.com.au) [Referral]
turn on auto mount in windows 2003 (search.yahoo.com) [Referral]
turn on windows automount (search.yahoo.com) [Referral]
mount documents drive vista (www.google.nl) [Referral]
unmount hdd vista (www.google.hr) [Referral]
windows xp block usb mounting usb device (www.google.com) [Referral]
off auto-mounting windows xp (www.google.se) [Referral]
mount usb as network drive (www.google.com) [Referral]
usb drive automount unmount (www.google.com) [Referral]
powershell unmount usb drive (www.google.com) [Referral]
powershell mount (www.google.ca) [Referral]
automount network drive xp (www.google.com) [Referral]
win xp mount network drive (www.google.it) [Referral]
mount hdd automount (www.google.de) [Referral]
wmi usb mount event (www.google.de) [Referral]
http://aolsearch.aol.co.uk/aol/search?query=how%20to%20unmou... [Referral]
automount enable xp (www.google.com) [Referral]
vista automount usb (www.google.se) [Referral]
enable automount vista (www.google.se) [Referral]
enabling automount in Windows 2000 (www.google.com) [Referral]
XP Disable auto mount (www.google.com) [Referral]
"AUTOMOUNT IN WINDOWS XP" (www.google.pt) [Referral]
powershell mount share (www.google.fr) [Referral]
disable automount usb in vista (www.google.es) [Referral]
powershell unmount drives (www.google.com) [Referral]
powershell unmount database (www.google.co.uk) [Referral]
how to unmount hdd in vista (www.google.ca) [Referral]
powershell scripts to mount drives (www.google.com) [Referral]
mount + umount + XP (www.google.cz) [Referral]
what is mount & unmount of folder in windows os (www.google.co.in) [Referral]
vista automount usb (www.google.co.uk) [Referral]
psdrive network (www.google.com) [Referral]
unmount drives xp (www.google.co.uk) [Referral]
windows xp disable automount (www.google.com) [Referral]
powershell unmount usb drive (www.google.com) [Referral]
powershell mount drive (www.google.com) [Referral]
turn of auto mount windows (www.google.dk) [Referral]
AutoMount wince (www.google.dk) [Referral]
unmount hd windows 2003 (www.google.com) [Referral]
script unmount flashdrive xp (www.google.pl) [Referral]
powershell mount network drive (www.google.com) [Referral]
auto mount device windows xp (www.google.co.id) [Referral]
how to disable "mount network drive" (www.google.com) [Referral]
Mount an unmounted drive xp (www.google.com) [Referral]
Enable Automount (www.google.com) [Referral]
powershell mount share (www.google.fr) [Referral]
Mount removeable drive vista (search.live.com) [Referral]
Unmounting in XP (www.google.com) [Referral]
windows unmount removable device script (www.google.ch) [Referral]
automount removable harddisk (www.google.com) [Referral]
power shell mount unmount share (www.google.fr) [Referral]
new-psdrive -credential (www.google.fr) [Referral]
how to mount an unmounted drive +windows xp (www.google.co.uk) [Referral]
new-event powershell (search.live.com) [Referral]
windows server USB hard drive schedule mount unmount (www.google.hu) [Referral]
enable network mount (www.google.com) [Referral]
Vista automount disabled (www.google.com) [Referral]
xp auto mount (www.google.com) [Referral]
unmount a hard drive in xp (www.google.com.au) [Referral]
stop windows automatically mounting usb drives (www.google.co.uk) [Referral]
windows xp mount unmount usb script command (www.google.co.nz) [Referral]
wince flashdisk psm1 (www.google.de) [Referral]
new-psdrive -credential (www.google.de) [Referral]
vista how to unmount a network drive (www.google.dk) [Referral]
usb unmount xp (www.google.com.sg) [Referral]
WMI Mounted drive (www.google.com) [Referral]
automount unmount (www.google.com.tw) [Referral]
automounting in windows vista (www.google.com) [Referral]
windows "mount event" (www.google.ca) [Referral]
new-psdrive (www.google.com) [Referral]
windows hook mount unmount (www.google.com) [Referral]
unmount an hdd from specific folder (www.google.com) [Referral]
powershell removable drive mount script (www.google.co.uk) [Referral]
difference between mounting and unmounting in .net (www.google.co.in) [Referral]
unmount network drives in vista (www.google.co.nz) [Referral]
usb drive automount windows -linux -ubuntu (www.google.de) [Referral]
usb drive mount windows -linux -ubuntu (www.google.de) [Referral]
mount unmount windows xp (www.google.com) [Referral]
"XP mount network drive" (www.google.com) [Referral]
Drive automount enable (www.google.ch) [Referral]
turn off automount hard drive (www.google.com) [Referral]
windows vista stop drives from auto mounting (www.google.com) [Referral]
register-wmievent (www.google.com) [Referral]
disable drives automount on windows (www.google.it) [Referral]
Disable auto mount flashdisk xp (www.google.co.id) [Referral]
automount xp (www.google.de) [Referral]
windows prevent auto mount of usb drive (www.google.com) [Referral]
automatic unmount HDD in Ubuntu (www.google.com) [Referral]
mount network device script vista (www.google.se) [Referral]
ubuntu usb disable "automatic mount" (www.google.it) [Referral]
ubuntu "disable usb automount" (www.google.it) [Referral]
mount usb drive removable xp (www.google.com) [Referral]
nivot automount (www.google.com) [Referral]
"windows xp" + "usb" + automount (www.google.be) [Referral]
wmi lock usb mount (www.google.fr) [Referral]
scripting automount usb drive (www.google.com) [Referral]
stopping auto mounting of server in XP (www.google.ca) [Referral]
windows 2003 automount usb drive (www.google.com) [Referral]
ubuntu "turn off auto mount" (www.google.ca) [Referral]
which module automount (www.google.fr) [Referral]
windows automatic share removable device (www.google.es) [Referral]
mount removable drive as a folder (www.google.com) [Referral]
auto mount disable (www.google.com.tr) [Referral]
howto mount remote drive in powershell (www.google.fr) [Referral]
automount external drive windows 2003 (www.google.es) [Referral]
ubuntu turn off auto mounting harddrive (www.google.com) [Referral]
powershell script to mount home drive (www.google.com) [Referral]
powershell script to mount drive (www.google.com) [Referral]
stopping vista mounting drives (www.google.co.uk) [Referral]
turn off hard drive auto mount (www.google.com) [Referral]
mount unmount network drive + "windows xp" (www.google.dk) [Referral]
unmounted drive vista (www.google.co.za) [Referral]
how to unmount a drive in vista (www.google.co.uk) [Referral]
vmware xp "enable automount" (www.google.com) [Referral]
automount new drives xp (www.google.be) [Referral]
device unmount xp (www.google.hu) [Referral]
unmount folder xp (www.google.com) [Referral]
ubuntu stop automounting usb drives (www.google.com) [Referral]
USB automount module (www.google.com.au) [Referral]
how to unmount removable hard drives in windows xp (www.google.co.uk) [Referral]
windows xp disable automount (www.google.ch) [Referral]
mount unmounted hard drive xp (www.google.com) [Referral]
New-PSDrive -credentia network drive (www.google.ch) [Referral]
winxp usb unmount (www.google.com.ua) [Referral]
powershell unmount usb (www.google.com) [Referral]
windows xp "automount disable" (www.google.de) [Referral]
new-psdrive network drive powershell (www.google.de) [Referral]
automatic mounting of removable drive on xp (www.google.com.au) [Referral]
"windows XP" + mount USB key (www.google.be) [Referral]
disable automount usb xp (www.google.de) [Referral]
unmount map drive windows xp (www.google.ch) [Referral]
disable automount windows 2000 server (www.google.co.uk) [Referral]
enable windows 2000 automount (www.google.co.uk) [Referral]
new-psdrive network (www.google.dk) [Referral]
auto mount/unmount (www.google.ca) [Referral]
ubuntu disable automount temporarily (www.google.ca) [Referral]
ubuntu disable automount (www.google.com) [Referral]
win2003 mount usb drive (www.google.co.th) [Referral]
vmware auto mount enable windows vista (www.google.es) [Referral]
ubuntu automounting enabling (www.google.com) [Referral]
xp unmount (www.google.com) [Referral]
Windows PowerShell Script mount usb drive (www.google.co.uk) [Referral]
Windows PowerShell usb hdd mount script (www.google.co.uk) [Referral]
"Windows XP" +"automount USB key" (www.google.be) [Referral]
Automatically mount and unmount network shares (www.google.ca) [Referral]
usb automount prevent vista (www.google.com) [Referral]
mount unmount removable device vmware (www.google.ca) [Referral]
automount drives vista (www.google.com) [Referral]
automount network hdd under xp home (www.google.lv) [Referral]
powershell new-psdrive network drive credential (www.google.com) [Referral]
unmount harddisk xp (www.google.nl) [Referral]
windows xp unmount and turn off hard drive command (www.google.com) [Referral]
shares on removable drives 2003 (www.google.de) [Referral]
register new drive in powershell v2 (www.google.com) [Referral]
how to unmount drive in windows 2003 (www.google.com) [Referral]
windows 2003 auto re mount drive (search.yahoo.com) [Referral]
automatically unmount a usb drive win xp (www.google.com) [Referral]
windows 2008 New-PSDrive (www.google.com.pe) [Referral]
powershell unmount usb (www.google.de) [Referral]
Disable automatic mounting xp (www.google.com.au) [Referral]
xp usb device unmount mount (www.google.gr) [Referral]
unmount a network drive vista DOCUMENTS (www.google.com) [Referral]
powershell mount Z: PSDrive (www.google.fr) [Referral]
unmount any windows network drives (www.google.ch) [Referral]
temporarily disable usbmount (www.google.com) [Referral]
automatic mounting external disk windows 2003 (www.google.co.uk) [Referral]
automount USB VM XP guest (www.google.com.au) [Referral]
unmount a usb drive with powershell (www.google.co.uk) [Referral]
wince mount flashdisk (www.google.com) [Referral]
enable automount windows 2000 (www.google.es) [Referral]
powershell map usb drive (www.google.com) [Referral]
powershell mount (www.google.fr) [Referral]
network automount (www.google.com) [Referral]
how to enable automount on windows 2000 (www.google.com.co) [Referral]
unmount drive xp (search.yahoo.com) [Referral]
enabling automount windows 2000 (www.google.es) [Referral]
mount umount windows xp usb (www.google.com.br) [Referral]
xp reenable mount usb disk (www.google.it) [Referral]
script unmount usb drive vista (www.google.it) [Referral]
what is the difference between "map network drive" and "mount network drive" (www.google.com) [Referral]
unmount drive powershell (www.google.com) [Referral]
+unmount +usb +vista +command (www.google.at) [Referral]
powershell how to mount share (www.google.hu) [Referral]
mount USB hard drive removable ubuntu (www.google.com) [Referral]
windows 2000 wmi disk unmount (www.google.com) [Referral]
unmount drive in windows xp (www.google.com) [Referral]
disable automount xp (www.google.lv) [Referral]
"windows 2000 server"+"automount enable" (www.google.com) [Referral]
usb disk automount modules (www.google.com) [Referral]
mount unmount usb harddisk xp (www.google.nl) [Referral]
Windows volume hdd unmount (www.google.com.ua) [Referral]
ubuntu auto map drive (www.google.com) [Referral]
stop ubuntu usb automount (www.google.de) [Referral]
xp unmount network drive (www.google.co.uk) [Referral]
HOWTO: Automatically mount and unmount network shares (www.google.com.tr) [Referral]
mount drive power shell (www.google.com) [Referral]
windows turn of automount usb (www.google.com.au) [Referral]
unmounting a drive in windows (www.google.com) [Referral]
how to unmount hard drives in windows server 2003 (www.google.com) [Referral]
enable automount on windows 2000 (www.google.nl) [Referral]
vista prevent mounting hdd (www.google.fr) [Referral]
unmounting drives in vista (www.google.com) [Referral]
automount USB key + Windows XP (www.google.be) [Referral]
how to remove a removable drive by wmi (www.google.com.au) [Referral]
windows 2000 automount enable (www.google.de) [Referral]
map network hdd in ubuntu (www.google.sk) [Referral]
psdrive script mount (www.google.com) [Referral]
mount network drive as removable (www.google.com) [Referral]
windows sever 2003 auto mount usb drive (www.google.ca) [Referral]
windows PowerShell Script How to mount hard disk (www.google.ca) [Referral]
ca mount flashdisk di vmware (www.google.co.id) [Referral]
umount usb-HDD vista (www.google.ru) [Referral]
unmount drive xp (www.google.com) [Referral]
auto mount script (www.google.es) [Referral]
vmware automount (www.google.co.th) [Referral]
WMI mounted drive (www.google.com) [Referral]
unmounting in Win Xp (www.google.ca) [Referral]
ubuntu automatic usb mount (www.google.com) [Referral]
mount unmounted usb device windows (www.google.pl) [Referral]
automounting wmii (www.google.com) [Referral]
automount disable "windows 2000" (www.google.com) [Referral]
windows 2003 automount (www.google.nl) [Referral]
how to unmount a network folder in ubuntu (www.google.com) [Referral]
http://guide.opendns.com/controller.php?url=how+to+automount... [Referral]
map network drive powershell psdrive (www.google.at) [Referral]
automount usb harddrive in vmware server 2 (www.google.com) [Referral]
windows 2000 script to automount drives (www.google.com) [Referral]
windows 2000 automount drives script (www.google.com) [Referral]
ubuntu mount unmount usb (www.google.com) [Referral]
how to unmount a drive in xp (www.google.com.gh) [Referral]
how to unmount and mount removable drive (www.google.nl) [Referral]
powershell register-wmievent mounted drive (www.kumo.com) [Referral]
ubuntu mount usb hard drive (search.yahoo.com) [Referral]
how to auto map network drive on ubuntu (www.google.co.th) [Referral]
Powershell mount drive (www.google.ru) [Referral]
vista unmount drive (www.google.com) [Referral]
ubuntu stop automounter (www.google.nl) [Referral]
"removable device" "vmware server" ubuntu "usb key" (www.google.com) [Referral]
disable automatic mounting usb xp (www.google.com) [Referral]
windows xp unmount usb drive (www.google.com) [Referral]
mount network folder as cd drive vista (www.google.com) [Referral]
powershell mapping remote drives (www.google.com) [Referral]
automount usb wmii (www.google.fr) [Referral]
windows drive mount map unmount ¬network (www.google.co.uk) [Referral]
wmi unmount device (www.google.de) [Referral]
unmount a drive in win 2003 (www.google.ro) [Referral]
xp turn off auto mount (www.google.co.uk) [Referral]
unmounting a drive in windows vista (www.google.com) [Referral]
auto map sharepoint vista script (www.google.com) [Referral]
auto mount folder removable windows (www.google.com) [Referral]
automount network windows (www.google.dk) [Referral]
server 2000 enable automount (www.google.co.uk) [Referral]
mount network drive (uk.search.yahoo.com) [Referral]
powershell mount (www.google.de) [Referral]
automount hardo disc windows (www.google.com) [Referral]
turn off auto mounts in Windows (www.google.com) [Referral]
unmount shell script shrepoint (www.google.com) [Referral]
disable auto mount XP (www.google.com) [Referral]
external drive automount (www.google.com.au) [Referral]
linux stop automount usb disk (www.google.com.au) [Referral]
powershell map drive credentials (www.google.com) [Referral]
AUTO MOUNT HDD IN WINDOW XP (us.yhs.search.yahoo.com) [Referral]
windows 2003 server automount usb hard disk (www.google.it) [Referral]
Ubuntu automatic mount USB disk disable (www.google.cn) [Referral]
power shell mount drive folder (www.google.pt) [Referral]
xp automount (www.google.com) [Referral]
mount network share in registry (www.google.no) [Referral]
powershell map drive auto (www.google.com) [Referral]
powershell usb drive unmount (www.google.at) [Referral]
how to auto mount and unmount usb hdd (www.google.com.au) [Referral]
turn off auto mount of usb drives in xp (www.google.com.au) [Referral]
"windows 2008" "disable automount" (www.google.com) [Referral]
http://groups.google.com/group/microsoft.public.windows.powe... [Referral]
how to umount automount drive (www.google.ee) [Referral]
automount vista (www.google.hu) [Referral]
powershell mount network drive (www.google.ru) [Referral]
wmi map network share (www.google.hu) [Referral]
map drive remotely + powershell (www.google.com) [Referral]
windows 2000 automount (tw.search.yahoo.com) [Referral]
enable automount 2000 server (www.google.com.au) [Referral]
ubuntu automatically unmount drive (www.google.com) [Referral]
umount usb disk vista (www.google.it) [Referral]
ubuntu automount drives (www.google.co.uk) [Referral]
auto share usb drive (www.google.com) [Referral]
how to unmount shared drive in ubuntu (www.google.com) [Referral]
ubuntu stop automount (www.google.com) [Referral]
automatically vista mount usb on desktop (www.google.nl) [Referral]
xp unmount (www.google.ee) [Referral]
Powershell mount drive (www.google.de) [Referral]
psdrive wmi (www.google.fr) [Referral]
"server 2000" automount (www.google.co.uk) [Referral]
how to enable automount server 2000 (www.google.co.uk) [Referral]
automount enable windows 2000 server (www.google.com) [Referral]
usb disk removal powershell (www.google.no) [Referral]
auto mount removable hard disk (www.google.com.hk) [Referral]
win2003 unmount mount script (www.google.fi) [Referral]
unmount a drive in vista (www.google.co.uk) [Referral]
Vista automount network drive (search.yahoo.com) [Referral]
powershell "map sharepoint" (www.google.com.au) [Referral]
mount xp folder as drive in vmware (www.google.com) [Referral]
stop usb device from mounting ubuntu (www.google.com) [Referral]
unmount a windows external drive (search.yahoo.com) [Referral]
powershell mount drive (www.google.com) [Referral]
script to mount and unmount disks xp (www.google.com) [Referral]
ubuntu drive management automount (www.google.com.au) [Referral]
windows vista "enable mount" command (www.google.com) [Referral]
disk automounting windows server 2003 (www.google.sk) [Referral]
automatic mounting in windows xp (www.google.com.ar) [Referral]
powershell mount (www.google.hr) [Referral]
server 2003 turn on auto mount drive (www.google.fr) [Referral]
powershell find specific usb drive (www.google.com) [Referral]
"mount folder" "removable drive" (www.google.com) [Referral]
how to unmount folder in windows xp (www.google.com) [Referral]
windows xp how to mount new drive (www.google.ee) [Referral]
"share usb drive" & "automatically" (www.google.se) [Referral]
2003 server automount disc (www.google.pl) [Referral]
register-objectevent (groups.google.com) [Referral]
PSDrive wmi (www.google.fr) [Referral]
disallow mount usb windows (www.google.com.br) [Referral]
windows xp removable unmount issues (www.google.com) [Referral]
windows 2000 disable automount (www.google.de) [Referral]
is automount enabled in windows 2000 server (www.google.es) [Referral]
automatic unmount a folder (www.google.pt) [Referral]
windows unmount usb disk from shell (www.google.es) [Referral]
powershell v2 map network drive -wscript (www.google.com) [Referral]
windows 2000 server enable automount (www.google.com.ar) [Referral]
ubuntu remove automount network drive (www.google.dk) [Referral]
usbkey auto unmount (www.google.it) [Referral]
vista mount unmount usb drive (www.google.de) [Referral]
How to disable Windows server automount automount (www.google.de) [Referral]
"deactivate automount ubuntu" (www.google.com) [Referral]
how to disable automount of USB drive in Windows XP (www.google.com) [Referral]
UNMOUNTED DRIVES (www.google.com) [Referral]
umount auto volume ubuntu (www.google.ro) [Referral]
how to enable win 2000 automount (www.google.com.my) [Referral]
ubuntu mount unmounted device shell (www.google.hr) [Referral]
AUTOMOUNT DRIVE IN XP (www.google.be) [Referral]
http://www.exalead.com/ [Referral]
xp unmount (www.google.com) [Referral]
turn off automatic mounting of removable drives (www.google.fr) [Referral]
windows 2000 automount enable (search.live.com) [Referral]
unmount xp (www.google.com) [Referral]
how to unmount disk vista (www.google.bg) [Referral]
http://groups.google.com/group/microsoft.public.windows.powe... [Referral]
hard disk power consume unmounted (www.google.com) [Referral]
"disable auto mount" "windows xp" (www.google.cz) [Referral]
2008 automatically mount new drive (www.google.com) [Referral]
how to mount drive in vista (www.google.com) [Referral]
powershell unmount database (www.google.ch) [Referral]
usb automount windows disable (www.google.com.br) [Referral]
how to enable Automount in windows 2000 (www.google.co.il) [Referral]
powershell unmount database (www.google.fr) [Referral]
wmii automount (www.google.fr) [Referral]
windows powershell unmount a drive? (www.google.com) [Referral]
"turn off hard drive" windows xp (www.google.gr) [Referral]
"vmware server 2" manage removable device on XP (www.google.it) [Referral]
mount local drive script Windows xp (www.google.co.th) [Referral]
unmount network drive (www.google.it) [Referral]
automount removable disk ubuntu (www.google.co.uk) [Referral]
auto unmount network share vista (www.google.co.uk) [Referral]
disable ubuntu automount (search.yahoo.com) [Referral]
how to unmount drives in windows (www.google.com) [Referral]
can you mount drives on windows xp desktop (search.yahoo.com) [Referral]
auto map win2003 (www.google.com.vn) [Referral]
http://masteringmenjaro.blogspot.com/2008/07/genius-returns.... [Referral]
wmi script to mount drive (www.google.com) [Referral]
automount hdd disk + server 2003 (www.google.ru) [Referral]
win2000 automount (www.google.de) [Referral]
xp drive unmount/mount (www.google.com) [Referral]
automount network drive ubuntu (www.google.com) [Referral]
powershell psdrive (www.google.com) [Referral]
powershell mounted dirves (www.google.de) [Referral]
mount network folder as local hard drive (www.google.co.uk) [Referral]
mount unmounted drive (www.google.es) [Referral]
xp automount disable (www.google.com) [Referral]
auto mount +vista +windows (www.google.de) [Referral]
windows 2008 "mount share" "local drive" (www.google.com.au) [Referral]
mount removable devices on the desktop "windows xp" (www.google.com.br) [Referral]
how to unmount network disk ubuntu (www.google.dk) [Referral]
windows 2000 automount (www.google.de) [Referral]
shareport network usb auto (www.google.com) [Referral]
vmware server 2.0 xp usb unmounten (www.google.de) [Referral]
windows unmount usb disk script (www.google.si) [Referral]
mount flashdisk vmware (www.google.co.id) [Referral]
Windows XP mount network drive WMI (www.google.co.uk) [Referral]
window server 2003 auto mount drives (www.google.com.au) [Referral]
wmi querying ".NET interfaces" (www.google.nl) [Referral]
wmii automount (www.google.fr) [Referral]
automount hdd (www.google.com) [Referral]
shell unmount net drive (www.google.com) [Referral]
managementEventWatcher removable device (www.google.com.br) [Referral]
"windows 2000" automount (www.google.de) [Referral]
how to unmount hard drives in server 2003 (search.yahoo.com) [Referral]
WINCE mount folder (www.google.co.in) [Referral]
auto mount removable +ubuntu (www.google.com) [Referral]
new-psdrive credential (www.google.de) [Referral]
Powershell new-psdrive credentials (www.google.com) [Referral]
powershell scripts map drive (www.google.de) [Referral]
automount usb disk ubuntu vmware (www.google.pt) [Referral]
enabling automount windows 2000 (www.google.ch) [Referral]
vista wmi mount hard disk (www.google.com) [Referral]
automatic mounting volume ubuntu (www.google.fr) [Referral]
mount unmount drives in windows 7 (www.bing.com) [Referral]
how to stop drive mounting in ubuntu? (www.google.com.eg) [Referral]
unmount a drive in windows (www.bing.com) [Referral]
windows 2000 server disable automount (www.google.com) [Referral]
disable auto-mounting of volumes windows xp (www.google.com) [Referral]
how to stop Linux from automounting my external hard drive (www.google.com) [Referral]
xp auto unmount hard drive (www.google.com) [Referral]
Powershell mount network shAre (www.bing.com) [Referral]
ubuntu stop drives mounting automatically (www.bing.com) [Referral]
disable automount network share xp (www.google.com) [Referral]
diable ubuntu unmount for hd (www.google.nl) [Referral]
mount drive ubuntu server auto (www.google.com) [Referral]
unmounting usb external hard drive server 2003 (www.google.com) [Referral]
unmount drive powershell (www.google.com) [Referral]
windows 2008 map drive unmount (www.google.com) [Referral]
start up script to mount network disk drive (www.bing.com) [Referral]
windows 2000 enable automount (www.google.com) [Referral]
mount drive wmi (fr.yhs.search.yahoo.com) [Referral]
registry key win server 2003 automount disk (www.google.hr) [Referral]
powershell psdrive (www.google.lu) [Referral]
powershell trap MapNetworkDrive (www.google.com) [Referral]
xp mount usb to desktop (www.google.nl) [Referral]
enable disable disk powershell (www.bing.com) [Referral]
wmi enabled mounted drive (www.bing.com) [Referral]
powershell map network drive (www.google.com) [Referral]
ubuntu automount windows share (www.google.co.th) [Referral]
enable automount windows 2003 (www.google.com.tw) [Referral]
powershell usb hdd mounten (www.google.de) [Referral]
how to block usb & cddrive in win2003 network (www.google.com) [Referral]
network shares on removable devices (www.google.com) [Referral]
automouting a windows network drive with ubuntu (www.google.com) [Referral]
script to unmount drive windows (www.google.com) [Referral]
Comments are closed.