T Table16 New member Joined Feb 14, 2008 Messages 4 Programming Experience Beginner Feb 14, 2008 #1 Does anyone know if its possible for vb.net to create a virtual disk drive on the computer? Kind of like what DAEMON Tools does? Thanks.
Does anyone know if its possible for vb.net to create a virtual disk drive on the computer? Kind of like what DAEMON Tools does? Thanks.
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,875 Location Norway Programming Experience 10+ Feb 14, 2008 #2 You can use the Subst command. VB.NET: Process.Start("subst.exe", "x: d:\test") 'add drive Process.Start("subst.exe", "x: /d") 'remove drive Upvote 0 Downvote
You can use the Subst command. VB.NET: Process.Start("subst.exe", "x: d:\test") 'add drive Process.Start("subst.exe", "x: /d") 'remove drive
T Table16 New member Joined Feb 14, 2008 Messages 4 Programming Experience Beginner Feb 14, 2008 #3 Is that what I would code then, the Process.Start(....)? Upvote 0 Downvote