VBScript to Delete Registry Keys

I have a VBscript that I use to delete some keys and change some keys in the registry. We use it in our environment because we have SCCM which ties Windows Update to the SCCM server. Sometimes that server doesn't have the latest updates, so I normally run
this script and it deletes the keys that tie the computer to the SCCM server, and re-enables Windows Update.
The script was working fine for quite some time, and still does work on Windows 7, however since I've upgraded to Windows 8 or 8.1, it no longer actually deletes the keys, it seems to run, but then when I open Windows Update, it's still disabled, and if
I look under the appropriate keys in the registry, none of them are deleted. I think it must be some kind of security change in Windows 8 or something. Can anyone help me get this working under Windows 8?

Hi,
Please take a try to edit this registry key: EnableLinkedConnections, follow the steps below:
1. Click Start, type regedit in the
Start programs and files box, and then press ENTER.
2. Locate and then right-click the registry subkey HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System.
3. Point to New, and then click DWORD Value.
4. Type EnableLinkedConnections, and then press ENTER.
5. Right-click EnableLinkedConnections, and then click
Modify.
6. In the Value data box, type 1, and then click
OK.
7. Exit Registry Editor, and then restart the computer.
Here is a similar thread for reference:
http://social.technet.microsoft.com/Forums/en-US/5fbf0b79-d3a1-428d-a45e-8ee650a10f82/logon-script-doesnt-work-in-windows-8?forum=ITCG
More information here:
Some Programs Cannot Access Network Locations When UAC Is Enabled
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • Dopacity registry key deletes itself when closing acrobat 9.5.1

    Hello,
    Everytime the user closes out of acrobat, the registry key (dopacity) deletes itself.  When you relaunch it, it creates a new dopacity key with the value of 0.0005, then the typewriter tool does not work.  We manually change that key to 1.0 and it is fine until closing out of acrobat.  We ran a repair, same issue, updated and repaired also did not fix the issue.  Apart from the user running the registry key everytime, and completely uninstalling the program and re-installing (Not positive that uninstalling and re-installing will work), is there any way to fix this issue.
    Thanks
    Greg

    Hello,
    Everytime the user closes out of acrobat, the registry key (dopacity) deletes itself.  When you relaunch it, it creates a new dopacity key with the value of 0.0005, then the typewriter tool does not work.  We manually change that key to 1.0 and it is fine until closing out of acrobat.  We ran a repair, same issue, updated and repaired also did not fix the issue.  Apart from the user running the registry key everytime, and completely uninstalling the program and re-installing (Not positive that uninstalling and re-installing will work), is there any way to fix this issue.
    Thanks
    Greg

  • Search Server Error - Illegal operation attempted on a registry key that has been marked for deletion

    Hello,
    I have a 5 server farm (DC, 2 WFEs, 1 SQL,1 CA w/ search) and am experiencing an issue when returning search results.  This issue just started occurring recently, and basically the search page throws a correlation id whenever used.  The error returned
    is:
    SearchServiceApplication::Execute--Exception: System.Runtime.InteropServices.COMException (0x800703FA): Illegal operation attempted on a registry key that has been marked for deletion. (Exception from HRESULT: 0x800703FA)
    SearchServiceApplicationProxy::Execute--Error occured: System.ServiceModel.FaultException`1[System.ServiceModel.ExceptionDetail]: Illegal operation attempted on a registry key that has been marked for deletion. (Exception from HRESULT: 0x800703FA) (Fault Detail
    is equal to An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is: System.Runtime.InteropServices.COMException: Illegal operation attempted on a registry key that has been marked for deletion. (Exception from HRESULT: 0x800703FA)
    I even attempted to create an out of the box enterprise search site with OOB masterpages and I still am receiving this error.  
    I have also tried the  ‘Do not forcefully unload the registry at user logoff’ registry edit, but it did not work.
    Has anyone ran into this issue and has another solution other than the ‘Do not forcefully unload the registry at user logoff’ registry edit?
    Thanks!

    IISReset works for me (but after some time it fails again)
    Check this posts: http://pacsharepoint.com/2011/11/sharepoint-search-illegal-operation.html
    http://blogs.msdn.com/b/distributedservices/archive/2009/11/06/a-com-server-application-may-stop-working-on-windows-server-2008.aspx
    hope it helps,

  • VBScript, check to see if registry keys exist before running script

    Hi there, 
    I am trying to run the following script in my environment and want to ensure that once it's run once and the registry keys are in place, it does not execute again/ run again as this causes issues. I am going
    to set it up to run when users log into their machine via group policy so really need to make sure once run it won't execute again. Can anyone advise what I need to add to it to make sure it checks first for the keys in the registry before running again? e8cb48869c395445ade13e3c1c80d154
    and 5cb93b24ff710741b7d83b9cb6317992 
    '-=-=-=-=-=-=-=-=-=-=-=-=-=-
    'Written By James McWhinney
    'Vancouver BC, Canada
    'www.importfanatik.com
    'April 26th, 2006
    '-=-=-=-=-=-=-=-=-=-=-=-=-=-
    const HKEY_CURRENT_USER = &H80000001
    strComputer = "."
    Set oReg=GetObject( "winmgmts:{impersonationLevel=impersonate}!\\" _
        & strComputer & "\root\default:StdRegProv")
    RegistryFolder = "Software\Microsoft\Windows NT\" & _ 
      "CurrentVersion\Windows Messaging Subsystem\Profiles\OutlookProfile\"
    LDAPdisplayname = "Domino Directory"
    LDAPserver = "dominodirectory.company.co.uk"
    LDAPport = "389"
    LDAPsearchbase = "o=company.co.uk"
    'Add Ldap Type Key
    sKeyPath = RegistryFolder & "e8cb48869c395445ade13e3c1c80d154\"
    oReg.CreateKey HKEY_CURRENT_USER, sKeyPath 
    oReg.SetBinaryValue HKEY_CURRENT_USER, _
         sKeyPath, "00033009", Array(0,0,0,0)
    oReg.SetBinaryValue HKEY_CURRENT_USER, _
         sKeyPath, "00033e03", Array(&H23,0,0,0)
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e3001", "Microsoft LDAP Directory"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e3006", "Microsoft LDAP Directory"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e300a", "EMABLT.DLL"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e3d09", "EMABLT"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e3d13", "{6485D268-C2AC-11D1-AD3E-10A0C911C9C0}"
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, _
        "01023d0c", Array(&H5c,&Hb9,&H3b,&H24, _
        &Hff,&H71,&H07,&H41,&Hb7,&Hd8,_
        &H3b,&H9c,&Hb6,&H31,&H79,&H92)
    'Add Ldap connection settings key
    sKeyPath = RegistryFolder & "5cb93b24ff710741b7d83b9cb6317992\"
    oReg.CreateKey HKEY_CURRENT_USER, sKeyPath
    oReg.SetBinaryValue HKEY_CURRENT_USER, _
         sKeyPath, "00033009", Array(&H20,0,0,0)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "000b6613", Array(0,0)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "000b6615", Array(0,0)
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e3001", LDAPdisplayname
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e3d09", "EMABLT"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e3d0a", "BJABLR.DLL"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e3d0b", "ServiceEntry"
    oReg.SetStringValue HKEY_CURRENT_USER, _
         sKeyPath , "001e3d13", "{6485D268-C2AC-11D1-AD3E-10A0C911C9C0}"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6600", LDAPserver
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6601", LDAPport
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6602", ""
    oReg.SetStringValue HKEY_CURRENT_USER, _
         sKeyPath , "001e6603", LDAPsearchbase
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , _
         "001e6604", "(&(mail=*)(|(mail=%s*)" & _ 
         "(|(cn=%s*)(|(sn=%s*)(givenName=%s*)))))"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6605", "SMTP"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6606", "mail"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6607", "60"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6608", "100"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6609", "120"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660a", "15"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660b", ""
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660c", "OFF"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660d", "OFF"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660e", "NONE"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e660f", "OFF"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6610", "postalAddress"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6611", "cn"
    oReg.SetStringValue HKEY_CURRENT_USER, sKeyPath , "001e6612", "1"
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "001e67f1", Array(&H0a)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "01023615", _
         Array(&H50,&Ha7,&H0a,&H61,&H55,&Hde,_
         &Hd3,&H11,&H9d,&H60,&H00,_
         &Hc0,&H4f,&H4c,&H8e,&Hfa)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "01023d01", _
         Array(&He8,&Hcb,&H48,&H86,&H9c,&H39,_
         &H54,&H45,&Had,&He1,&H3e,&H3c,_
         &H1c,&H80,&Hd1,&H54)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "01026631", _
         Array(&H98,&H17,&H82,&H92,&H5b,&H43,_
         &H03,&H4b,&H99,&H5d,&H5c,_
         &Hc6,&H74,&H88,&H7b,&H34)
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "101e3d0f", _
         Array(&H02,&H00,&H00,&H00,&H0c,&H00,_
         &H00,&H00,&H17,&H00,&H00,&H00,_
         &H45,&H4d,&H41,&H42,&H4c,&H54,_
         &H2e,&H44,&H4c,&H4c,&H00,&H42,_
         &H4a,&H41,&H42,&H4c,&H52,&H2e,_
         &H44,&Hc,&H4c,&H00)
    'Append to Backup Key for ldap types
    sKeyPath = RegistryFolder & "9207f3e0a3b11019908b08002b2a56c2\"
    oReg.getBinaryValue HKEY_CURRENT_USER,sKeyPath, "01023d01",Backup
    Dim oldLength
    oldLength = UBound(Backup)
    ReDim Preserve Backup(oldLength+16)
    Backup(oldLength+1) = &He8
    Backup(oldLength+2) = &Hcb
    Backup(oldLength+3) = &H48
    Backup(oldLength+4) = &H86
    Backup(oldLength+5) = &H9c
    Backup(oldLength+6) = &H39
    Backup(oldLength+7) = &H54
    Backup(oldLength+8) = &H45
    Backup(oldLength+9) = &Had
    Backup(oldLength+10) = &He1
    Backup(oldLength+11) = &H3e
    Backup(oldLength+12) = &H3c
    Backup(oldLength+13) = &H1c
    Backup(oldLength+14) = &H80
    Backup(oldLength+15) = &Hd1
    Backup(oldLength+16) = &H54
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "01023d01", Backup
    'Append to Backup Key for ldap connection settings
    sKeyPath = RegistryFolder & "9207f3e0a3b11019908b08002b2a56c2\"
    oReg.getBinaryValue HKEY_CURRENT_USER,sKeyPath, "01023d0e",Backup
    oldLength = UBound(Backup)
    ReDim Preserve Backup(oldLength+16)
    Backup(oldLength+1) = &H5c
    Backup(oldLength+2) = &Hb9
    Backup(oldLength+3) = &H3b
    Backup(oldLength+4) = &H24
    Backup(oldLength+5) = &Hff
    Backup(oldLength+6) = &H71
    Backup(oldLength+7) = &H07
    Backup(oldLength+8) = &H41
    Backup(oldLength+9) = &Hb7
    Backup(oldLength+10) = &Hd8
    Backup(oldLength+11) = &H3b
    Backup(oldLength+12) = &H9c
    Backup(oldLength+13) = &Hb6
    Backup(oldLength+14) = &H31
    Backup(oldLength+15) = &H79
    Backup(oldLength+16) = &H92
    oReg.SetBinaryValue HKEY_CURRENT_USER, sKeyPath, "01023d0e", Backup
    'Delete Active Books List Key
    sKeyPath = RegistryFolder & "9375CFF0413111d3B88A001" & _ 
               "04B2A6676\{ED475419-B0D6-11D2-8C3B-00104B2A6676}"
    oReg.DeleteKey HKEY_CURRENT_USER, sKeyPath

    this will help to read computer names from c:\computerlist.txt and connect to each computer and check if the registry exists or not. you need to make sure you run with user that has access to all the computer. this script only checks if the regkey exists
    or not. you will have to include logic from your script as to what actually should happen when registry key not found.  as always please use this as example and use it at your own risk. 
    Const HKEY_CURRENT_USER = &H80000001
    Const FORREADING = 1
    strComputer = "."
    inFilename = "c:\Computerlist.txt"
    Set fsoIn = CreateObject("scripting.filesystemobject")
    Set inFile = fsoIn.OpenTextFile(inFilename, ForReading, True)
    While Not inFile.AtEndOfStream
    arrComputerNames = Split(inFile.Readline,",")
    ' arrComputerNames(0) contains the computer name
    strComputer = arrComputerNames(0)
    StrRegExistFlage = "No"
    Set oReg=GetObject( "winmgmts:{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\default:StdRegProv")
    strKeyPath = "Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\EvOutlookDeploymentProfile"
    oReg.EnumKey HKEY_CURRENT_USER, strKeyPath, arrSubKeys
    If isarray(arrSubKeys) then
    For Each subkey In arrSubKeys
    If subkey = "e8cb48869c395445ade13e3c1c80d154" Then
    StrRegExistFlage = "Yes"
    ElseIf subkey = "5cb93b24ff710741b7d83b9cb6317992" Then
    StrRegExistFlage = "Yes"
    End If
    Next
    Else
    Wscript.echo "Reg folder not found on computer " & strComputer
    End If
    If StrRegExistFlage = "Yes" Then
    Wscript.echo "exit script on computer " & strComputer
    Else
    Wscript.echo "execute script on comptuer " & strComputer
    End If
    Wend
    inFile.close

  • Installer Properties -- Registry: delete a key?

    I know I can easily add registry keys and values under Windows specifying them in the Installer Properties --> Registry page of LabVIEW 8.2.1.
    Is it possible to delete keys and values in the same way? I tried with the '-' character as I can do in a .reg file, but It doesn't work.
    Is there a simple way?
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

    battler. wrote:
    Hi,
    I'm having trouble writing registry keys in Vista.  Access seems to be denied for HKEY_LOCAL_MACHINE and only works for HKEY_CURRENT_USER.
    For example, refer to the LV shipped example "write to registry.vi" and try it.
    My application needs to write certain values to keys in the registry after installation then read them later.  I have been placing these values in the HKEY_LOCAL_MACHINE until now.  Is there a work-around to writing at run-time to HKEY_LOCAL_MACHINE?  Is there another location in the registry which I can store the values for all users?
    Thanks for your help.
    Battler.
    Sorry, I can't resist. The workaround is not to use Vista! And of course Windows 7.
    The longer answer is you need to write code that elevates the impersonation level of the current user which will of course cause a login dialog to appear. And no there are no VIs for that so far, so it's about writing C code.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • After completely uninstalling iTunes and QuickTime, registry keys remain!

    I have completely uninstalled iTunes and QuickTime from my PC (OS = XP Home) and deleted all folders and files associated with Apple, iTunes or QuickTime that were not removed during the normal uninstall procedure.
    Also, I have cleaned my registry using Registry Mechanic. However, about 120 registry keys for iTunes and QuickTime stubbornly remain. I have tried to remove them several times, but on the next scan they are still there. Manual removal using Regedit also fails, resulting in the message:
    "Cannot delete **: error while deleting key".
    I don't understand how a program that has been completely deleted can still have registry traces. The offending keys (listed below) are in the Custom Controls section. How can I delete them?
    Location: HKEYCLASSESROOT\daap\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\daap\shell\open\command
    Value : (default) = C:\Program Files\iTunes\iTunes.exe /url "%1"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itms\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itms\shell\open\command
    Value : (default) = C:\Program Files\iTunes\iTunes.exe /url "%1"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itmss\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itmss\shell\open\command
    Value : (default) = C:\Program Files\iTunes\iTunes.exe /url "%1"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itpc\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\itpc\shell\open\command
    Value : (default) = C:\Program Files\iTunes\iTunes.exe /url "%1"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aa\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-130
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aa\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aa\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aax
    Value : FriendlyTypeName = @C:\Program Files\iTunes\iTunes.Resources\iTunesRegistry.dll,-4
    Parsed : c:\program files\itunes\itunes.resources\itunesregistry.dll
    Location: HKEYCLASSESROOT\iTunes.aax\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-130
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aax\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aax\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aif\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-132
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aif\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aif\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aifc\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-132
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aifc\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aifc\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aiff\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-132
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aiff\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.aiff\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.BurnCD\shell\burn\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /AutoPlayBurn "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cda\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-256
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cda\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cda\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cdda\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-256
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cdda\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.cdda\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ImportSongsOnCD\shell\import\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /AutoPlayImportSongs "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipa
    Value : FriendlyTypeName = @C:\Program Files\iTunes\iTunes.Resources\iTunesRegistry.dll,-203
    Parsed : c:\program files\itunes\itunes.resources\itunesregistry.dll
    Location: HKEYCLASSESROOT\iTunes.ipa\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-163
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipa\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipg\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-162
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipg\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipg\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipsw\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-163
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ipsw\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itb
    Value : FriendlyTypeName = @C:\Program Files\iTunes\iTunes.Resources\iTunesRegistry.dll,-204
    Parsed : c:\program files\itunes\itunes.resources\itunesregistry.dll
    Location: HKEYCLASSESROOT\iTunes.itb\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-165
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itb\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itb\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itl\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-145
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itl\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itl\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itms\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-161
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itms\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itms\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itpc\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-148
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itpc\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.itpc\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-149
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u8
    Value : FriendlyTypeName = @C:\Program Files\iTunes\iTunes.Resources\iTunesRegistry.dll,-205
    Parsed : c:\program files\itunes\itunes.resources\itunesregistry.dll
    Location: HKEYCLASSESROOT\iTunes.m3u8\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-149
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u8\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m3u8\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4a\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-141
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4a\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4a\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4b\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-143
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4b\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4b\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4p\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-143
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4p\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4p\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4r
    Value : FriendlyTypeName = @C:\Program Files\iTunes\iTunes.Resources\iTunesRegistry.dll,-202
    Parsed : c:\program files\itunes\itunes.resources\itunesregistry.dll
    Location: HKEYCLASSESROOT\iTunes.m4r\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-164
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4r\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4r\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4v\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-141
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4v\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.m4v\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mov\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-135
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mov\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mov\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp2\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-137
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp2\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp2\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp3\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-129
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp3\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mp3\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpeg\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-133
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpeg\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpeg\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpg\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-133
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpg\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.mpg\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pcast\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-148
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pcast\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pcast\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.PlaySongsOnCD\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /playCD "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pls\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-149
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pls\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.pls\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.rmp\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-148
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.rmp\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.rmp\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.ShowSongsOnCD\shell\showsongs\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /AutoPlayShowSongs "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wav\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-134
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wav\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wav\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wave\DefaultIcon
    Value : (default) = C:\Program Files\iTunes\iTunes.exe,-134
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wave\shell\open\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /open "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\iTunes.wave\shell\play\command
    Value : (default) = "C:\Program Files\iTunes\iTunes.exe" /play "%L"
    Parsed : c:\program files\itunes\itunes.exe
    Location: HKEYCLASSESROOT\QuickTime.m15\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m15\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1a\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1a\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1s\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1s\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1v\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m1v\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m75\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.m75\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mp2\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mp2\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpa\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpa\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpeg\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpeg\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpg\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpg\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpm\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpm\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpv\DefaultIcon
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe,-130
    Parsed : c:\program files\quicktime\quicktimeplayer.exe
    Location: HKEYCLASSESROOT\QuickTime.mpv\shell\open\command
    Value : (default) = C:\Program Files\QuickTime\QuickTimePlayer.exe "%1"
    Parsed : c:\program files\quicktime\quicktimeplayer.exe

    Manual removal using Regedit also fails
    In regedit, check the permissions on one of the keys that you're failing to remove. Does the user account that you're logged into (while doing the regedit) have full permissions on the key?

  • Can't Install R7 of iTunes because QuickTime can't open the registry key

    When I try to update iTunes to R7 I get the message "Cannot open key: HKEYLOCALMACHINE\Software\Classes\QuickTime.QuickTime\CLSID Verify sufficient access or contact your support personnel" I've tried deleting QuickTime and the key but nothing has worked. Now I can't use iTunes becasue QuickTime is not there. What to do?

    Click on this link and scroll about half way down and look for the list of steps to grant permissions to the Quicktime registry keys.
    http://discussions.apple.com/thread.jspa?threadID=688433&tstart=0

  • Itunes wont install, access to registry key denied. key listed in message

    I tried opening regedit and changing the permissions to allow access, went to dozens of other forums, and nothing has worked so far. Anyone know how to fix this?
    I get about 2 bars into the installation, right after it says copying new files.
    then it says:
    Could not open registry key:
    hkeylocalmachine\software\classes\interface\{915DA835-02FE-4953-92FA-624BDF5D85ab}\proxys tubclsid
    Please check to see if you have permission to access these files.
    I should have permission i'm the owner account and the only account on it. I can install any other program fine.
    Please help me with this, I would really appreciate it.

    I figured it out. I just ran the installer after deleting each registry key it said i didn't have access to (about 6) and then it ran through like a clean install and rewrote the registry files

  • Unable to write to registry key for Acrobat XI - error 1406

    Hi all,
    I have a problem regarding the installation of Adobe Acrobat XI 11.0.07 on an ASUS laptop with Windows 7 Home Premium OS.
    In short, I am unable to complete the installation of Adobe Acrobat XI on this machine because Acrobat is not able to write the value to the registry key situated here:
         HKEY_LOCAL_MACHINE --> SOFTWARE --> Microsoft --> Internet Explorer --> Toolbar.
    I tried to find solutions on the internet, and have found one webpage at the Adobe Forums, which is this one: Error 1406.Could not write value Adobe ARM - and it was not very helpful, since the person asking solved his problem, but did not tell how he did. So, I found this page at Acrobat Help, called Error 1402 | Error 1406 | Acrobat, Reader where I tried the different solutions, but so far none of these have worked. What I did was to remove all previous versions of Adobe Acrobat, Reader, Air and so on. In fact, I deleted all software from Adobe in case one of these softwares were to blame, but it has not worked. But before I deleted all this software, I deleted Acrobat and Reader several times, but as you probably already have found out, it did not work. As this did not work, I tried the next solution at Acrobat Help, which was to "Set permissions to their defaults in the registry". I followed the solution completely and did everything it said, but it has not worked. As a note, I have to say that the registry key type I have problems with is called "Locked", the type is REG_DWORD and the data value is (0). Does this have anything to do with it? I am not too familiar with editing the registry. Though, I did try to change the value to (1) and updating the registry, but it did not work...
    More information: nevertheless if I install the complete version of Adobe Acrobat XI or the typical installation, the same error comes up: error 1406. And I did scan my system with my antivirus software, called Bullguard, to see if there were any viruses; there were none. I also closed my antivirus software and diabled the firewall of Bullguard, but that was not succesful either, and I did a scan of my system using cmd as an administrator (sfc /scannow), and the program found some errors it could not fix. As far as I can see, it found three .dll files with errors. I have the document called sfcdetails.txt if that would be any helpful to you.
    Besides that, I am not sure what to do. I did pay for Adobe Acrobat the 23rd of January, 2015, and I have not managed to make it work properly yet, and I cannot update the software, since I have this problem with the registry. I am able to use the software for what I had to use it for until now, but I would like to be able to use it for everything it stands for and update it to prevent any lapse in security.
    Thank you. I hope you have any ideas for my problem and will be able to help me!
    Best regards,
    Mads

    Hi Rahul,
    Thank you for your answer. Though, it did not solve my problem! I did what you said: I tried using the Adobe Acrobat cleaner tool, and afterwards, I restarted my computer. After this, I downloaded the program from your link and I tried to install the program, but I did not succeed, because the same error came up, which is this:
         Error 1406. Could not write value {47833539-D0C5-4125-9FA8-0819E2EAAC93} to key \SOFTWARE\Microsoft\Internet Explorer\Toolbar.
    With this error, the only options are to abort, retry or ignore the install, but none of these solves the issue, I am afraid.
    But what I think it is all about is how to gain access to the registry. I followed the tutorial, I mentioned above, but I were not able to solve it... I gained administrator access to the registry, I made the current administrator account the owner of the key (the current administrator is not the original administrator of the computer, since I changed this long time ago), and I made the permissions correctly, I guess. I followed the tutorial, anyhow. Though, what confuses me, is that when pressing the button, called "Advanced", and entering the menu called "Advanced security settings for Toolbar" (I have the Danish version of Windows, excuse me if I did not translate it correctly), I see many persmission posts, two of which have the name of the current administrator account. One of these have full control, the persmissions from this are not inherited and they are used on "this key and underkeys". The second only has a special permission, it is inherited from "MACHINE\SOFTWARE\..." and it is used only on this key. How to change this, I am not sure. But I do not suspect that there should be two permissions for the same administrator account? Do you know if this is right?
    Thank you.
    Best regards,
    Mads

  • SCCM 2012 - Hardware Inventory - Dynamic Registry Key Inventory

    Hi all,
    I am trying to inventory a set of registry values based upon a dynamic registry key. The  application is called ACME and different versions of it exist on all clients. For example:
    Some clients have:
    HKLM\Software\ACME\5.0.1
    While others have:
    HKLM\Software\ACME\5.0.2
    While others have:
    HKLM\Software\ACME\5.0.3
    The common denominator is that under the version key, all of the subkeys are consistent and the same.
    The two values I am looking for are "LastUser" and "LastExecuted" which reside under the version key.
    HKLM
    ------> Software
    --------------------> ACME
    ------------------------------>5.0.1
    --------------------------------------> LastUser & LastExecuted
    So i basically want to do a dynamic lookup for the first child key under "ACME".
    I have been using RegKeyToMOF but I am unable to get the data populated into the database. The configuration.mof file compiles successfully (as can be seen in dataldr.log).
    Below are the configs I am using. Can anyone shed some light as to why its not populating anything in the DB?
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME")]
    Class ACME
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;
    #pragma namespace ("\\\\.\\root\\cimv2\\SMS")
    #pragma deleteclass("ACME", NOFAIL)
    [SMS_Report(TRUE),SMS_Group_Name("ACME"),SMS_Class_ID("ACME")]
    Class ACME: SMS_Class_Template
    [SMS_Report(TRUE),key] string KeyName;
    [SMS_Report(TRUE)] String LastUser;
    [SMS_Report(TRUE)] String LastExecuted;
    From the client when it hits HINV cycle
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, KeyName, LastExecuted, LastUser FROM ACME; Timeout = 600 secs.
    TIA!

    You have to specify the full path in the MOF to collect the data. I have an example of how you can embed a WMI trigger and a vbscript into a MOF file that will populate any information you want from the registry into a cimv2 class, but that may actually
    be more than you really need. Why don't you just inventory each version? It is not as clean, but will be easier.
    example of Acme 5.0.1:
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME501", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME\\5.0.1")]
    Class ACME501
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;

  • Registry Key Issue of Installing Tuxedo 10gR3

    Folks,
    Hello. I am installing Tuxedo 10gR3 for PeopleTools 8.50 and the following message comes up:
    "Warning! Detected installation of Oracle Software, tuxedo 9.1 on this machine. It is recomended that you exit installation and remove tuxedo 9.1".
    I ignore the "Warning" and continue to install Tuxedo 10gR3 in the Wizard, the following message comes up:
    "The value of -TUXDIR- is not set. Registry key -\10.3.0.0_VS2005\Enviroment\TUXDIR- is empty. You must cancel this installation. If you do not, the installer will continue to run but tuxeo 10gr3 with vs2005 will not be installed"
    I click "CANCEL" button to exit install.
    I have found "Registry Key - \10.3.0.0_VS2005\Enviroment" by running Start>Run>regedit>RegistryEditor>HKEY_LOCAL_MACHINE>Software>Oracle>Tuxedo>10.3.0.0_VS2005>Environment
    There is no "TUXDIR" under "Environmnet". There are 2 fields inside it - Value Name and Value Data. The 2 files have no value. I think the issue is caused at this point.
    How to solve the issue ?

    This sounds similar to another issue raised on OTN. Have you uninstalled Tuxedo 9.1 completely?
    You may need to delete the entire registry key for to tuxedo 10gR3 (from the top) through regedit and try again.

  • Cannot remove registry key for Mozilla 4.0. Keeps populating even after uninstall

    registry key keeps coming back after unistall and delete from registry, and turning off system restore in system.
    HKEY_USERS\S-1-5-21-1078081533-179605362-1801674531-1115\Software\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent\Post Platform
    In that key: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
    This causes web sites to report that I am running IE 6 when in fact i am running IE8.

    That is an internet explorer issue (see the MSIE 6.0 part). Microsoft labels their User Agent Mozilla/ x for website compatibility, for it isn't related to Firefox at all. You can see a list of all the Internet Explorer user Agent strings [http://www.useragentstring.com/pages/Internet%20Explorer/ http://www.useragentstring.com/pages/Internet%20Explorer/]. Unfortunately, there isn't much I can do to help you, but you can try to reset Internet Explorer, [http://support.microsoft.com/kb/923737 http://support.microsoft.com/kb/923737].

  • "Add registry key to VHD to run VmRemoteTool on boot" task fails on SRIOVBasicVerification test

    Hi,
    I am running SRIOVBasicVerification test. I see below subtask "Add registry key to VHD to run VmRemoteTool on boot" is failing and does not produce any log.
    I have passed below parameters to the test.
    VMName    :Test
    VHDName  : 2012R2.vhd
    VHDPath    : c:\VHDs
    I have placed 2012R2.vhd in c:\VHDs of test machine.
    PS C:\VHDs> get-netadaptersriov
    Name                 : Ethernet 3
    InterfaceDescription : Network Adapter
    Enabled              : True
    SriovSupport         : Supported
    SwitchName           : Default Switch
    NumVFs               : 32
    Name                 : Ethernet 4
    InterfaceDescription :Network Adapter #2
    Enabled              : True
    SriovSupport         : Supported
    SwitchName           : Default Switch
    NumVFs               : 32
    Thanks, Krishna

    I use this vbscript at the end of my SCCM TS which writes the following to a regkey in HKLM\Software\SCCM_OSD
    It doesn't populate all the values but it does most of them and has been very helpful to me.
    This is what it writes to the key:
    Date Installed
    TaskSequenceName
    AdvertisementID
    Organization
    TaskSequence ID
    TSVersion
    SMSClientGUID (This is the original SMSClient Guid before OSD)
    On error resume next
    dim osd
    dim strkeypath
    set env = CreateObject("Microsoft.SMS.TSEnvironment")
    const HKEY_LOCAL_MACHINE = &H80000002
    'variables
    TaskSequenceName = env("_SMSTSPackageName")
    AdvertisementID = env("_SMSTSAdvertID")
    Organization = env("_SMSTSOrgName")
    TaskSequenceID = env("_SMSTSPackageID")
    Packagename = env("_SMSTSPackageName")
    MediaType = env("_SMSTSMediaType")
    TSVersion = env("TSVersion")
    SMSClientGUID = env("_SMSTSClientGUID")
    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    '----------- Write to registry ---------------
    strKeyPath = "SOFTWARE\SCCM_OSD"
    oReg.CreateKey HKEY_LOCAL_MACHINE,strKeyPath
    strValueName ="Installed Date"
    strValue = formatdatetime(date,2) & " " & formatdatetime(time,3)
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue
    strValueName = "TaskSequenceName"
    strvalue = TaskSequenceName
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,TaskSequenceName
    strValueName = "AdvertisementID"
    strvalue = AdvertisementID
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,AdvertisementID
    strValueName = "Organization"
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,Organization
    strValueName = "TaskSequence ID"
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,TaskSequenceID
    strValueName = "TSVersion"
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,TSVersion
    strValueName = "SMSClientGUID"
    oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,SMSClientGUID

  • After effects cs5 crashing - dynamiclinkmanager, Language registry key, Ivideosource

    Hey everyone,
    I'm running After Effects CS5 (10.0.2 - most up to date) in OSX 10.6.8 on a Mac Pro tower
    2x2.66 ghz dual-core Intel Xenon
    7gb DDR2
    ATI Radeon x1900 XT 512mb
    Dual monitors
    I keep getting the following error messages, most frequent to least
    <140735089106112> <5> /Library/Application Support/Adobe/Common/dynamiclink/CS5/dyanmiclinkmanager.app.
    <140735243008352> <ASL.ResourceUtils.GetLanguageIDFromRegistry> <0> Unable to obtain the User 'Language' registry key at: Software\Adobe\After Effects\10.5.1\ Defaulting to 'en_US'.
    <140735089106112> <Ivideosource> <5> AE push total_frames 180, MC pull frames w/safety margin 180, margin 0.
    I have also gotten other error messages pertaining to these problems invovling the gaussian blur filter and some pdf error.
    After Effects error: crash occured while invoking effect plug-in "Gaussian Blur".
    After Effects error: There was an error processing this PDF Document. (1074397201) ( 50 :: 29 )
    I am working with AI files, some have been converted to footage, some still AI - continously rasterizing. I even cleared all AI files out to see if they might have been the problem, still crashing. File works fine on PC. Have reinstalled twice. Need to stay on cs5 because I'm working on files with others.
    Crashes randomly in a variety of processes such as scrubbing the time, RAM previews, composing, etc. I have tried resetting all preferences, deleting prefs manually, and some open GL things.
    Would cs5.5 or 6 work? We have additional licenses for both. Could also upgrade to mountain lion?
    Any other solutions or ideas would be greatly appreciated! Trying to get work done for a client and have tried running AE CS5 on OSX 10.6.8 on a macbook pro - getting the same problems, and its not the file (fine on pc).

    Well, I see the letters "PDF" in the error message, and that's where I smell the rat. 
    Illustrator can open PDF's: just choose the page you want for multiple-page PDF's.  Then make any necessary changes, and save as an RGB Illustrator document.  Backsave to an earlier Illustrator version if you can.
    You can even sort the PDF out into separate Illustrator LAYERS -- not shapes or groups -- which can be used in AE as layers.  Very handy.  Just make sure to create a new layer in Illustrator; most hard-core Illustrator users who aren't used to AE tend to overlook that nifty little feature.

  • Get "Invalid root in registry key" when call RegWrite function on Wow6432Node

    My environment is Windows 2008 R2. I have the local administrator permission and the UAC is turned off.
    There is a 32bit application installed on the server and I need to update its registry key value "AuditTime" under this node
    HKLM\Software\Wow6432Node\Myapplication
    I simply run this just two line vbscript
    Set Wshell = CreateObject("Wscript.Shell")
    Wshell.RegWrite "HKLM\Software\Wow6432Node\Myapplication\AuditTime",Now(),"REG_SZ"
    But I got error as following:
    Invalid root in registry key "HKLM\Software\Wow6432Node\Myapplication\AuditTime"
    Then I updated the script to perform a little test. The script is like this
    Set Wshell = CreateObject("Wscript.Shell")
    Wshell.RegWrite "HKLM\Software\Myapplication2\AuditTime",Now(),"REG_SZ"
    Wshell.RegWrite "HKLM\Software\Wow6432Node\Myapplication\AuditTime",Now(),"REG_SZ"
    The first RegWrite is successfully run and I got the value written as expected however the second RegWrite failed again with the same error.
    So it is clear nothing to do with permission since I have full access. I can create the values under both hive in Regedit.exe.
    A little further testing shows the Invalid root error just showing when I tried to update valued under HKLM\Software\Wow6432Node hive.
    Any suggestion?

    On Windows Server 2008R2 the VBScript works with NO errors and creates the key as expected.
    PS C:\scripts> .\regtest.vbs
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    PS C:\scripts> dir HKLM:\Software\Wow6432Node\Myapplication*
    Hive: HKEY_LOCAL_MACHINE\Software\Wow6432Node
    SKC VC Name Property
    0 1 Myapplication32 {AuditTime}
    0 1 Myapplication6432 {AuditTime}
    PS C:\scripts> dir HKLM:\Software\My*
    Hive: HKEY_LOCAL_MACHINE\Software
    SKC VC Name Property
    0 1 Myapplication32 {AuditTime}
    0 1 Myapplication6432 {AuditTime}
    PS C:\scripts> [environment]::Is64BitProcess
    False
    The vbscript used for both keys is as follows:
    Set Wshell = CreateObject("Wscript.Shell")
    Wshell.RegWrite "HKLM\Software\Wow6432Node\Myapplication32\AuditTime",Now(),"REG_SZ"
    Run from either system it creates a shared key under WoW6432Node on both systems.  When created from the 32 bit system the key also shows up under HKLM:\Software.  It does not show on the 64 bit system under HKLM:\Software.  Youust explicitly
    crate the keys under that key.  64 bit process look at both.  32 bit processes only see HKLM:\Software which is why we create the shared keys under WoW6432.  The 32 bit systems will work as they always have but 64 bit process MUST look under
    WoW6332Node if it wants to see a 32 bit process registry settings.  We can als sync the keys if needed.
    You do not need to create two sets of keys for one process. The system can do this for you.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • Trial Balance not Balancing

    Hi All, I have a client who runs their trial balance and it doesn't balance. Isn't a trial balance supposed to always balance? I have recently upgraded this client without any issues, so their database is correct. Any ideas on how to solve this or wh

  • Export in Excel, Password Protection

    Although I don't use Excel much, I understand it is commonplace when sending an Excel spreadsheet as an email attachment to Password Protect it. I just converted a Numbers document to Excel via Export, but can't send it if I can't password protect it

  • Using TableView and MVC

    I have a problem with TableView. I use TableView to display a table which is an attribute of my model class. Code in the view looks like this:   <htmlb:tableView        id            = "TEST_ID"        table         = "//model/t_selected_employees"  

  • [CS4/5][JS] Script causes InDesign to crash

    Hello, I'm having a bit of an issue with some InDesign scripting i'm working on, and wonder if anyone else has had the same issue. I have a script that uses app.dialog to prompt for user information.  It then takes the result of that dialog, and uses

  • ThinkPad External DVD Reader / Writer USB 2.0??

    Hi, one of the largest online selling and buying website in New Zealand, trademe, has listed via a buyer a ThinkPad External DVD Reader / Writer USB 2.0. One of my friend bought it and found that it is shown on the computer hard drve as a Philips DVD