Notices
Computer & Technology Related Post here for help and discussion of computing and related technology. Internet, TVs, phones, consoles, computers, tablets and any other gadgets.

Disabling DVD Drive

Thread Tools
 
Search this Thread
 
Old 19 April 2002, 07:05 PM
  #1  
super_si
Scooby Regular
Thread Starter
 
super_si's Avatar
 
Join Date: Feb 2002
Location: Lurkin Somewhere
Posts: 7,951
Likes: 0
Received 0 Likes on 0 Posts
Post

How can you prevent someone from using a DVD drive??

But its only 1 user ??? so cant prevent 1 type of user?

I couldnt see security either?

Cheers


Si
Old 19 April 2002, 08:42 PM
  #2  
jbryant
Scooby Regular
 
jbryant's Avatar
 
Join Date: Feb 2000
Posts: 1,082
Likes: 0
Received 0 Likes on 0 Posts
Post

Glue it shut?

Seriously though if you have an NT based OS (ie. NT4, 2000 or XP)then you can prevent a user from accessing certain files on the hard disk (such as the DVD player software folder)

Joolz
Old 20 April 2002, 02:11 PM
  #3  
super_si
Scooby Regular
Thread Starter
 
super_si's Avatar
 
Join Date: Feb 2002
Location: Lurkin Somewhere
Posts: 7,951
Likes: 0
Received 0 Likes on 0 Posts
Post

yeah disabl software just at my dads work some one keeps playing dvds on it and its n open access machine
Old 21 April 2002, 09:29 AM
  #4  
ChristianR
Scooby Regular
iTrader: (1)
 
ChristianR's Avatar
 
Join Date: May 2001
Location: Europe
Posts: 6,329
Likes: 0
Received 1 Like on 1 Post
Post

why not hide the drive letter in policies for that group of users?
Old 21 April 2002, 09:40 AM
  #5  
Jayemm
Scooby Regular
 
Jayemm's Avatar
 
Join Date: Feb 2002
Posts: 447
Likes: 0
Received 0 Likes on 0 Posts
Post

Control Panel
System
Select DVD
Select Properties
Disable
Old 22 April 2002, 10:42 AM
  #6  
David_Wallis
Scooby Regular
 
David_Wallis's Avatar
 
Join Date: Nov 2001
Location: Leeds - It was 562.4bhp@28psi on Optimax, How much closer to 600 with race fuel and a bigger turbo?
Posts: 15,239
Likes: 0
Received 1 Like on 1 Post
Post

We hide all drive letters apart from s and p... so I wrote the following script to find cd rom drives and make them visible... you could alter it do the opposite...

' ************************************************** *************
' * Enumerate CD-Rom Drive Letter and Change Visible Drive Mask *
' * David Wallis, PC / Server Support, 25/02/2002 *
' ************************************************** *************
On Error Resume Next
Dim FSys, xDrive, xDrives, intTestAsc

Set WShell = CreateObject("Wscript.Shell")
Set FSys = CreateObject("Scripting.FileSystemObject")
Set xDrives = FSys.Drives
intCurrValue = "" ' Set to avoid problems with an empty reg key and using <> 0

For Each xDrive in xDrives
If xDrive.DriveType = 4 Then
intAsciDriveLetter = (Asc(xDrive.DriveLetter))
intTmpValue = intAsciDriveLetter - 64
intDecValue = 2 ^ intTmpValue
intTmpValue = NOT(intDecValue)
intcurrValue = WShell.RegRead("HKCU\Software\Microsoft\Windows\Cu rrentVersion\Policies\Explorer\NoDrives")
If intCurrValue <> "" Then
intNewValue = intTmpValue AND intCurrValue
RetCode = WShell.RegWrite("HKCU\Software\Microsoft\Windows\C urrentVersion\Policies\Explorer\NoDrives", intNewValue,"REG_SZ")
End If
End If
Next

Set xDrive = Nothing
Set xDrives = Nothing
Set FSys = Nothing
Set WShell = Nothing

May have to click edit post for formatting...

David
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
JimBowen
ICE
5
02 July 2023 01:54 PM
KAS35RSTI
Subaru
27
04 November 2021 07:12 PM
gazzawrx
Non Car Related Items For sale
13
17 October 2015 06:51 PM
Ganz1983
Subaru
5
02 October 2015 09:22 AM
Littleted
Computer & Technology Related
0
25 September 2015 08:44 AM



Quick Reply: Disabling DVD Drive



All times are GMT +1. The time now is 08:57 PM.