|
-
Dec 4th, 2001, 04:17 PM
#1
Thread Starter
Fanatic Member
-
Dec 4th, 2001, 04:52 PM
#2
Install XP...
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Dec 4th, 2001, 05:34 PM
#3
Thread Starter
Fanatic Member
Going to at christmas, Remeber I am a student and I am not made of paper, ER money
-
Dec 4th, 2001, 07:51 PM
#4
with xp some function will not work like the ctrl+alt+del.
-
Dec 4th, 2001, 07:53 PM
#5
Thread Starter
Fanatic Member
Then how will those third party programs work on XP. Our school has a system called Fortess which does the above, will it still work on XP?
-
Dec 4th, 2001, 08:18 PM
#6
PowerPoster
Use TweakUI, the power tool from Microsoft, to remove the Recycle Bin from the desktop. I do that on my machine because I don't like the recycle bin, it's not necessary. If I deleted it, then oh well. I think you can disable other icons also, but I'll check to make sure.
-
Dec 4th, 2001, 08:20 PM
#7
PowerPoster
I guess you can't remove the My Computer Icon, but you can remove the Network Neighborhood. I forgot to post a link to tweakui. You can get it at: http://www.microsoft.com/ntworkstati.../NTTweakUI.asp
To remove My Documents, you can just right click on it and choose Remove From Desktop.
-
Dec 4th, 2001, 09:25 PM
#8
So Unbanned
I don't know about hiding my computer....
But...
You can hide all the drives in it.
path:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
key(DWORD):
NoDrives
value:
67108863
You can gets lots of help here:
http://registry.winguides.com/
-
Dec 4th, 2001, 09:32 PM
#9
Thread Starter
Fanatic Member
Fortress at school does this:
A) you cant CTRL-ALT-DEL or ALT-TAB
B) you cant right click on desktop or start button
C) when you double click on my computer it does nothing
D) my documents is deleted, Recycle bin is gone.
E) you cant edit AUTOEXEC.bat
F) has a feature where you input a password to enable all of the above.
It's biggest flaw is not by design its because it is being used in internet lab, and therefore internet explorer is needed. And with IE you can view everything you want.
What they should do is program a VB web browers that cant view the Drives.
-
Dec 4th, 2001, 09:50 PM
#10
So Unbanned
I'd like to see um make a program like that work on win2k when you have admin rights.
Wouldn't happen though.
-
Dec 4th, 2001, 09:58 PM
#11
Thread Starter
Fanatic Member
I have Windows 98 and I am to poor to upgrade
-
Jan 3rd, 2005, 11:06 AM
#12
Addicted Member
Re: Registry Tweaks
Okay this code will now do everything you wish this program to do.
VB Code:
Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Private Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long
Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long ' Note that if you declare the lpData parameter as String, you must pass it By Value.
Private Declare Function RegDeleteKey Lib "advapi32.dll" Alias "RegDeleteKeyA" (ByVal hKey As Long, ByVal lpSubKey As String) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Private Declare Function IsWindowVisible Lib "user32" (ByVal hwnd As Long) As Long
Private Enum RKEYS_
HKEY_CLASSES_ROOT = &H80000000
HKEY_CURRENT_USER = &H80000001
HKEY_LOCAL_MACHINE = &H80000002
HKEY_USERS = &H80000003
End Enum
Private Sub Form_Load()
Const REG_IDPATH As String = "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace"
Const REG_TSPATH As String = "Software\Microsoft\Windows\CurrentVersion\Policies\System"
Const REG_RCLICKPATH As String = "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
Const DI_CLSID_MYDOCUMENTS As String = "{450D8FBA-AD25-11D0-98A8-0800361B1103}"
Const DI_CLSID_RECYCLEBIN As String = "{645FF040-5081-101B-9F08-00AA002F954E}"
Const SW_SHOW As Long = &H1: Const SW_HIDE As Long = &H0
Dim lRegOp As Long
Dim lTskHw As Long
lRegOp = SetDWORD(HKEY_LOCAL_MACHINE, REG_RCLICKPATH, "NoViewContextMenu", &H1) 'Disable right click on desktop, may have to restart explorer
lRegOp = SetDWORD(HKEY_CURRENT_USER, REG_TSPATH, "DisableTaskMgr", &H1) 'Restrict CTRL+ALT+DEL, User specific
lRegOp = RegDeleteKey(HKEY_LOCAL_MACHINE, REG_IDPATH & "\" & DI_CLSID_MYDOCUMENTS) 'Disable My Documents
lRegOp = RegDeleteKey(HKEY_LOCAL_MACHINE, REG_IDPATH & "\" & DI_CLSID_RECYCLEBIN) 'Disable Recycle Bin
lTskHw = FindWindow("Shell_TrayWnd", "") 'Get taskbar handle
Select Case IsWindowVisible(lTskHw&)
Case 1: Call ShowWindow(lTskHw&, SW_HIDE) 'Visible, hide it
Case 0: Call ShowWindow(lTskHw&, SW_SHOW) 'Invisible, show it
End Select
End Sub
Private Function SetDWORD(RSECT_ As RKEYS_, stringP As String, stringV As String, lngData As Long) As Long
Const REG_DWORD As Long = &H4
Dim lRet As Long
Dim lKeyV As Long
lRet = RegCreateKey(RSECT_, stringP$, lKeyV)
lRet = RegSetValueEx(lKeyV, stringV, 0, REG_DWORD, lngData, REG_DWORD)
lRet = RegCloseKey(lKeyV&)
End Function
Last edited by Luke K; Jan 3rd, 2005 at 11:02 PM.
Reason: Update
Artificial Intelligence At War! - The best game of its genre
Program your own robot and watch it fight in 3d!
Droidarena 3
If I have been useful, please Rate My Post
Support FireFox - 
Microsoft Visual Studio .NET Professional 2003
Microsoft Visual Studio 6, Enterprise Edition
Microsoft Windows XP Professional, Service Pack 2
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|