Pro Audio Support

Q:
Disappearing Hard Drive Icon with NI products.
 
A:
Launch ScriptEditor and copy and paste this into the script window:

tell application "System Events"
set visible of disk "NameofDisk" to true
end tell
tell application "Finder" to quit
delay 1
tell application "Finder" to launch

Replace NameofDisk with the actual name of your disk, hit the Compile icon to make sure the script didn't acquire any errors, and then hit run. This should set the visible attribute back to visible and quit and relaunch the Finder, thus making the change available.