473,806 Members | 2,787 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Registry Error...Still couldn't be fixed

2 New Member
i have tried all the ways that i already know about....
1.) Disable the command in gpedit
2.) I heard it could be one of these bugs
•%System%\ 3D Animation.scr
•%Windows%\ inf\orBtok.exe
•%UserProfile%\ Local Settings\ Application Data\ csrss.exe
•%UserProfile%\ Local Settings\ Application Data\ services.exe
•%UserProfile%\ Local Settings\ Application Data\ inetinfo.exe
•%UserProfile%\ Local Settings\ Application Data\ lsass.exe
•%UserProfile%\ Local Settings\ Application Data\ smss.exe
•%UserProfile%\ Start Menu\ Programs\ Startup\Empty.p if
•%UserProfile%\ Templates\ A.kotnorB.com
•folder Bron.tok-XX ใน %UserProfile%\ Local Settings\ Application Data

so i dled anti-virus programs specifically for founding viruses that block reg-edit, about 4 programs infact...all saying that i dont have any problem...so just to be completely sure, i turned off system restore, went on to safe mode, and try finding these files myself, which should be in the files showed above...found NONE... anybody have any other solutions to this? (I'm beginning to think the cd i bought for windows blocked reg-edit intentionally T T)
Sep 30 '07 #1
5 1504
bartonc
6,596 Recognized Expert Expert
Just checking to make sure that you have Local Computer Policy->User Configuration->Administrati ve Templates->System->"Prevent access to registry editing tools" disabled in the Group Policy Editor on XP Professional.
Oct 1 '07 #2
dafodil
392 Contributor
To activate or disable your registry try this script:

Expand|Select|Wrap|Line Numbers
  1. 'Dafodil
  2. Option Explicit
  3. 'Declare variables
  4. Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
  5. Dim jobfunc, itemtype
  6.  
  7. On Error Resume Next
  8.  
  9. Set WSHShell = WScript.CreateObject("WScript.Shell")
  10. val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  11. val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  12. itemtype = "REG_DWORD"
  13. jobfunc = "Registry Editing Tools are now "
  14. ttl = "Result"
  15.  
  16. 'reads the registry key value.
  17. rr = WSHShell.RegRead (val)
  18. rr2 = WSHShell.RegRead (val2)
  19.  
  20. toggle=1
  21. If (rr=1 or rr2=1) Then toggle=0
  22.  
  23. If toggle = 1 Then
  24.     WSHShell.RegWrite val, 1, itemtype
  25.     WSHShell.RegWrite val2, 1, itemtype
  26.     Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
  27. Else
  28.     WSHShell.RegDelete val
  29.     WSHShell.RegDelete val2
  30.     Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
  31. End If
  32.  
Just copy and save it as .vbs

Double click to run...

:)
Oct 1 '07 #3
bartonc
6,596 Recognized Expert Expert
For those of you who are unfamiliar with posting code, please note:
  • Use [code] tags for readability
  • Use the reply button to get to the raw text for a clean copy
Thanks.

Especially, thanks to dafodil for the script!
Oct 1 '07 #4
HotDoGGy
2 New Member
I'm sorry but using the .vbs script still doesn't work, although the script itself seem to work, it comes up as "Registry Editing Tools are now disabled, and try pressing it again would enable it. But when leaving it at disabled and try opening reg-edit. Same problem would pop-up, it's been disabled by the administrator. Does anybody have any other solutions? (i'm a few clicks away to reinstalling windows)
Oct 1 '07 #5
dafodil
392 Contributor
You should leave it as enabled, not disabled... If it still doesen't work try scanning your pc for a virus. Remove the virus first before running the script again.

I recommend avg.
Oct 1 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

6
8629
by: paul calvert | last post by:
I hope somewhere here has encountered and solved a similar problem in the past. 1) on a new Win2000 PC: installed Visual C++ 6.0 download & install single file Service Pack 5.0 2) try to build my gui and dll projects, whose project, workspace, source files all resided on network drive mapped to H. The H mapping,
5
7237
by: K. Shier | last post by:
when attempting to edit code in a class file, i see the bug "Visual Basic ..NET compiler is unable to recover from the following error: System Error &Hc0000005&(Visual Basic internal compiler error) Save your work and restart Visual Studio .NET." has anyone seen this bug and can you confirm one way or the other whether or not it can corrupt your source files? (by 'corrupt' i mean: do anything to it that will cause it to fail to load and...
1
16328
by: rdavis7408 | last post by:
I have a database that has a form that opens a report using date parameters. I have been using it for six months and last week I began to get the following Error Message: "File sharing lock count exceeded. Increase MaxLocksPerFile registry entry." I checked in the Tools - Options - Advance. I have the database shared with no locks selected and record level locking selected.
3
2518
by: bfprog | last post by:
Using IBM iSeries client access OLEDB provider to connect to DB2 on AS/400, but cannot create connection using .NET web app. Using following code: Dim cnTest As New OleDbConnection("Provider=IBMDA400; Data Source=S10324NM; User ID=THEUSER; Password=THESECRET") Works fine in console app, but fails in web app with: System.Security.SecurityException: Requested registry access is not allowed.
6
12931
by: Steve Teeples | last post by:
I have a piece of code (written is Visual Studio 2005) that is only reading the Security EventLog. On Windows XP Professiona/Home this code works just fine. int numberOfEntries = myEventLog.Entries.Count; if (numberOfEntries > 0) ... However, when run under Windows Vista I get the error "Requested registry access is not allowed." This error occurs when the first line of code is executed.
0
2227
by: Michael Fay in SB | last post by:
A month ago I posted: "I built my application with Access 2003 and made a distribution using the Microsoft Office Access 2003 Developer Extensions. (I also install Jet 8 as a follow-on action at the end of the installation.) I can install the application on my development PC and on a "bare" PC. Regardless of the PC where I install, in the installed application (but not the development version) File->Export from a Report brings up a...
8
4490
by: someone | last post by:
I'm making an program that encodes text, and then writes it into another text file. The problem is that I can't seem to get the "file exists" checking right. If I use the command (coder is the application): coder something.txt an_exsiting_file.txt, then if I chose to overwrite "an_exsiting_file.txt", an error message pops up, saying that to many files are open <EMFILE>. Any help would be appreciated. Here is the code (incomplete but still...
0
4010
by: tmsprowl | last post by:
Greetings! I was wondering if someone could help me with a problem I'm having. My department is just one of many within my organization. My organization has control over the network domain, but my department has a couple of web servers of our own that are part of my organization's domain. I am trying to read LDAP information on my organization's domain controller from a web application on one of my department's servers. I have been...
21
6899
by: one2001boy | last post by:
PostMessage() function returns ERROR_NOT_ENOUGH_QUOTA after running in a loop for 700 times, but the disk space and memory are still big enough. any suggestion to resolve this problem? thanks.
1
1839
by: projectVBA | last post by:
Hi , I wrote some add in for PowerPoint and i'm trying to find an automatic way to load it every time PowerPoint starts. I found Microsoft Code example (see below ) BUT the problem is : I can't find all appear function declaration and VBA also errors regarding all the default variable values give in the code like ERROR_SUCCESS etc. May be you can help me to make this code run?? Function RegisterAddin( _ strBranch As String, _...
0
9719
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10371
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10111
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9193
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7650
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5684
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4330
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3010
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.