Update registry key in Powershell

Hi
I want to loop through a bunch of registry keys in powershell. In one of the keys there's a value I want to change.
I thought this would work and just return an error for all the keys where the values didn't exist
get-childitem
"hklm:\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}"
| foreach {set-itemproperty
-path $_
-name 'ChangeMe'
-value '22'}
However I'm getting this errors for all the keys even where the value exists.
set-itemproperty : Cannot find path 'C:\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0009' because it does not exist.
I've tinkered with Set-Location but it doesn't seem to make much difference. How can I transfer the path of the subkey to Set-itemProperty
Cheers
Alex

actually it is not mapped drive, it is more like registry object. 
for example:
set-location HKLM:\
get-childitem "hklm:\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}" | foreach {set-itemproperty -path $_ -name 'ChangeMe' -value '22'}
will add new property ChangeMe with value 22 to every item in this path:
hklm:\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}
Imposible is nothing

Similar Messages

  • Updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home

    We are installing 11gR2 32 bit on Window XP Professional . During the installation its stucked on given below operation (setup files operation ). I have tried multiple time , but every time it is stucking on same point (setup files operation -- updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1') . Not able to install 11gR2 on Window XP.

    This appears to be a download or extraction corruption.
    -Ensure the download size of the files are correct.
    -Don't use Windows native extraction to unzip the files, use something like winzip or 7-zip.
    -Ensure that the installation files are stored locally in a directory without spaces, such as c:\temp
    -Both zip files need to be extracted into the same directory. If you end up with more that one folder (ie: database), then you did the extraction improperly.
    -Do not install into c:\Program Files, install into a directory without spaces such as c:\oracle.
    Possible permissions issue:
    -Ensure you are an administrator on the system.
    -Ensure that the Workstation or Server services are running.
    -Turn-off system/virus protection
    -Do the installation from the console, not remote desktop.
    -Ensure failed installations are properly removed/cleaned.
    - run from the command prompt the deinstall utility (Oracle De-install Utility (11.2.0.1.0) for Microsoft Windows (32-bit))
    answered by:-user9954668
    source:-http://cn.forums.oracle.com/forums/thread.jspa?threadID=1119504

  • How to read and update Registry keys on Windows?

    I nedd to be able to read registry as well as DACL
    to set permissions on WinNT File System.
    I did that in VB, but need to do it in Java.
    Any help would be appriciated.

    I'm not sure if there is any freely available API for reading the registry. I'm really not very knowledgeable with any of the MS Windows operating sytems. I would imgaine the registry keys are compiled- that you can not access them via some plain text file, correct? Is there a DOS command for displaying the results of a particular registry query? This solution would be a hack, but if such a command exists, you could run it via the RunTime class and then parse the output. I would suggest using a search engine, if you have not all ready tried. I am sure that some API exists for reading the registry, but it might be a commerical package.... .... If you find an answer post it. I believe this question has arisen before, but I'm not sure if an answer was posted.

  • Modify Registry Key in PowerShell

    I am trying to create a script to change a registry key or import a key into multiple computers. This is what I have but it is not working....this is what I have 
    $computer = Get-Content -path c:\computers.txt
    foreach ($computer in $computer) {
    Set- -cn $computer -ScriptBlock New-Item -Path HKLM:\SOFTWARE\Citrix\ICA Client\Engine\Lockdown Profiles\All Regions\Lockdown\Virtual Channels\Seamless Windows -Name DeferredUpdateMode -Value False -Type String
    Thanks in advance!

    You need to use an explicit ScriptBlock:
    $sb={
    New-Item -Path 'HKLM:\SOFTWARE\Citrix\ICA Client\Engine\Lockdown Profiles\All Regions\Lockdown\Virtual Channels\Seamless Windows' -Name DeferredUpdateMode -Value False -Type String
    $computer = Get-Content -path c:\computers.txt
    foreach($computer in $computer){
    Invoke-Command -cn $computer -ScriptBlock $sb
    It would be best to do this with Group Policy.  It would be consistent and  automatic.
    ¯\_(ツ)_/¯

  • Problem when install ODAC 11g " Updating registry key "

    Hi every one,
    I have O/S Windows XP with service Pack 3 , and i install Oracle DataBase 10g Release 1 , and install Microsoft Visula Studio 2005.
    The problem is :
    When install ODAC 11g v.11.1.0.6.21 and the install reach ( progress ) to 60% i see a message _" The specified Home Nam e was not found in the registry "_ , with two option :
    * Stop installation of all product.
    * Stop installation of this component only.
    By the way,the installation process stop when it is : Copying files for ' Oracle Services For Microsoft transaction Server '
    Can any one tell me what is the problem ?
    with regards
    Naif

    Well, the MTS services that is part of ODAC 11g is for Oracle DB 11g. So if you are using Oracle Database 10g, you cannot install that. Just check off the components you need to install and leave the others unchecked.

  • How to get registry key lastwritetime using batch/powershell

    Hello,
    I want to get a registry key's LastWriteTime using batch/powershell.  These are what i have tried..
    1. Launch regedit and manually export the key using the UI, this gives me the lastwritetime, but I need a commandline version of this.  regedit /e only exports the key and value data.
    2. dir HKLM:\software\mykey
    nothing returned
    3. Get-ChildItem HKLM:\software\mykey |  Select-Object *
    nothing returned
    4. Get-ItemProperty HKLM:\software\mykey | Select-Object *
    LastWriteTime not returned; other values are returned
    5. (Get-Item HKLM:\software\mykey).LastWriteTime
    Nothing is returned
    Is the only way to do this by using pinvoke with RegQueryInfoKey? 
    Thanks in advance
    ss883r

    The
    .zip on the repository will still work for version 2. Basically, you'll get a definition for a function called 'Add-RegKeyMember'. You can dot source the provided script, or you can copy the function definition into your own script. You would use it like
    this:
    # Using Get-Item:
    PS> Get-Item HKLM:\SOFTWARE | Add-RegKeyMember | select Name, LastWriteTime, ClassName  
    # Using Get-ChildItem:
    PS> Get-ChildItem HKLM:\SOFTWARE | Add-RegKeyMember | select Name, LastWriteTime, ClassName  
    # Passing a path:
    PS> Add-RegKeyMember HKLM:\SOFTWARE | select Name, LastWriteTime, ClassName
    There's also a proxy function for Get-ChildItem that will automatically add the property anytime you use Get-ChildItem (dir, ls, gci) on a registry path. The PSv3 only method I was talking about simply updates the type data to automatically call the function
    on any RegistryKey object. You can actually set version 2 up to do that, but it requires an XML file.

  • I can not re-install/ update apple iTunes on my HP PC running Win7-64.  I get a registry key error when installing and am asked to make sure I have access.  IT is a home PC with one user and I have admin priveledges.

    When the updater notified me of an iTunes update, I selected the update option.  The update failed and killed the version I was running.  I have tried for a year to fix the problem without sucess.  I can't completely remove all Apple products.  I can not install any apple products especially iTunes which is the only one I am interested in.
    When I install iTunes now I get a registry key error similar to this:
    I am using a machine where I am the only user and am the Admin.   I have looked at the security settings on this key and see nothing wrond with it or the parent keys.  I tried removing all apple products but ran into similar problems.  At this time I still have Bonjour. Mobile Device Support, Software Update, and Application Support installed.

    These ones are tricky. But the following instructions are worth a try.
    First do a complete uninstall of iTunes and related components (but don't reinstall just yet), as per the following document:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    a. Launch regedit (Start >> Search Programs and Files >> type Regedit and open the regedit that comes up.)
    b. Access the following Location: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData \S-1-5-18\Components
    c. Perform the following actions
    i. Right Click on Components Folder
    ii. Select Permissions
    iii. Select Full Control and Read Permissions options
    iv. Select Advanced Button
    v. Select Owner Tab
    vi. Select to Change Owner to the Administrators
    vii. Check the option “Replace owner on subcontainers and objects”
    viii. Select OK when prompted that it may not change all.
    ix. Select Apply
    x. Select Apply again
    xi. Exit the Registry Editor
    Now try reinstalling iTunes again. Does it go in properly this time?

  • Have mutiple registry key error while installing visual studio 2013 update 4

    please find the log below after the installation visual studio 2013 
    2588:1F14][2015-03-11T09:24:55]i000: MUX:  SetupAction: Install
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  ProductVersion: 12.0.31101.00.00
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  ProductLanguage: 1033
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Branch: Rel
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OS: Windows 7 Enterprise
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSVersion: 6.1.7601.65536
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSLanguage: 1033
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSArchitecture: AMD64
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Ux Initialized
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Aquiring mutex 'Global\Devdiv' with a timeout of 0 ms
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Mutex 'Global\Devdiv' ownership: True
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Seen existing cache mutex 'Global\Devdiv CacheMutex': False
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Aquiring mutex 'Global\Devdiv CacheMutex' with a timeout of 60000 ms
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Mutex 'Global\Devdiv CacheMutex' ownership: True
    [2588:1C24][2015-03-11T09:24:55]i100: Detect begin, 246 packages
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Wait for Detect to complete
    [2588:1C24][2015-03-11T09:24:55]i000: MUX:  Detection Phase
    [2588:1C24][2015-03-11T09:24:55]i000: MUX:  ---------------
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'blend_core_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'bliss_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerCore'; variable = 'compilerCore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerCore86'; variable = 'compilerCore86_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore86_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore86'; variable = 'compilerCore86D11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore86D11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore86'; variable = 'compilerCore86D11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore'; variable = 'compilerCoreD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCoreD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore'; variable = 'compilerCoreD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCoreWP80'; variable = 'compilerCoreWP80_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCoreWP80_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCoreWP80'; variable = 'compilerCoreWP80_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64Arm'; variable = 'compilerx64arm_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64arm_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64Nat'; variable = 'compilerx64nat_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64nat_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64X86'; variable = 'compilerx64x86_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64x86_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '11.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Dev11_VC_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'Dev11_VC_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\devenv'; variable = 'devenv_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'devenv_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'DevEnvAppIdKeyPath' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot'; variable = 'DisableRootAutoUpdate'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft Corporation\DataFxTools\12.0.0.0'; variable = 'EFTools_2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Ews_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\professional'; variable = 'FLP_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'help3vs_49_DetectKey' to value '2.1.21005'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'help3vs_49_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'IEsvcVersionExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'IEsvcVersion' to value '10.0.9200.17229'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore86'; variable = 'libraryCore86D11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'libraryCore86D11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore86'; variable = 'libraryCore86D11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore'; variable = 'libraryCoreD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'libraryCoreD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore'; variable = 'libraryCoreD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\lightswitch'; variable = 'lightswitchcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'lightswitchcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\lightswitch\1033'; variable = 'lightswitchcoreres_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'lightswitchcoreres_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010AuthRootExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\ROOT\Certificates\3B1EFD3A66EA28B16697394703A72CA340A05BD5'; variable = 'MicrosoftRootCertificateAuthority2010RootExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010RootExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011AuthRootExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\ROOT\Certificates\8F43288AD272F3103B6FB1428485EA3014C0BCFE'; variable = 'MicrosoftRootCertificateAuthority2011RootExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011RootExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full', Value = 'CBS'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'netfxfullredist_43_DetectKey' to value '4.5.50938'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxFullRedist_InstalledRelease' to value '378758'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'NetFxFullRedist_InstalledReleaseExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxInstallRoot' to value 'C:\Windows\Microsoft.NET\Framework\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxInstallRoot64' to value 'C:\Windows\Microsoft.NET\Framework64\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'OpenXmlSDK_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'OS_BuildNumber' to value '7601'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\MobileTools\Servicing\11.0\WPSDKCore'; variable = 'Phone80Sdk_detectkey'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {2BB587DC-B13D-48C2-A4E0-6523821BCE7D}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'PortableLibrary_DTP_Exists' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\premium'; variable = 'premiumcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'premiumcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\professional'; variable = 'professionalcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'professionalcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'Ria_Services_Dev12_DetectKey' to value '4.1.62812.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Ria_Services_Dev12_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'silverlight5_DRT_DetectKey' to value '5.1.30514.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'silverlight5_SDK_DetectKey' to value '5.0.61118.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'silverlight5_SDK_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'SP15_Client_DetectKey' to value '15.0.4569.1506'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\sptools\Servicing\12.0\setup'; variable = 'SPTools_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'SPTools_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\sptools\Servicing\12.0\setup\1033'; variable = 'SPToolsLOC_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'SPToolsLOC_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssceruntime_x64_msi_DetectKey' to value '4.0.8876.1'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ssceruntime_x64_msi_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssceruntime_x86_msi_DetectKey' to value '4.0.8876.1'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ssceruntime_x86_msi_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssdt_lang_detect_enu' to value '1033'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\tfs\Servicing\12.0\storyboardingcore'; variable = 'storyboardingcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'storyboardingcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\tfs\Servicing\12.0\storyboardingcore'; variable = 'storyboardingcore_x64_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'storyboardingcore_x64_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemDataVersion' to value '2.0.50727.5483'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemData64Version' to value '2.0.50727.5483'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemWebVersion' to value '2.0.50727.5477'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemWeb64Version' to value '2.0.50727.5477'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\teamExplorerCore'; variable = 'teamExplorercore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'teamExplorercore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_84_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_84_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12_84_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_core_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt12lp_85_DetectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt12lp_85_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12lp_85_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_83_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_83_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14_83_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_core_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt14lp_86_DetectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt14lp_86_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14lp_86_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'trintrir_71_DetectKey' to value '10.0.50903'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trintrir_71_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'trintrir_72_DetectKey' to value '10.0.50903'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trintrir_72_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\ultimate'; variable = 'ultimatecore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ultimatecore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {A910AA6F-893F-3B76-AB22-B285913B5CE1}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'UltimateCore_Version' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\VC\Servicing\11.0\RuntimeDebug'; variable = 'vcRuntimeDebugD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'vcRuntimeDebugD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\VC\Servicing\11.0\RuntimeDebug'; variable = 'vcRuntimeDebugD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '12.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'VS_Install_Path_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'VS_Install_Path_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '12.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'VS_Install_Path_VC_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'VS_Install_Path_VC_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'VSComponentPathVariable' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'vsupdate_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'VSWinExpressAppIdKeyPath' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'webdeploy_x64_en_usmsi_902_DetectKey' to value '9.0.1763.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'webdeploy_x86_en_usmsi_901_DetectKey' to value '9.0.1763.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 12'; variable = 'WebTools_VS2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 2013'; variable = 'WebTools_VS2013_VersionKey_2'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 12 for Web'; variable = 'WebTools_VWD2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 2013 for Web'; variable = 'WebTools_VWD2013_VersionKey_2'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WIF_DetectKey' to value 'C:\Program Files\Windows Identity Foundation\v3.5\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WIF_DetectKey_64' to value 'C:\Program Files\Windows Identity Foundation\v3.5\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIF_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIF_DetectKeyExists_64' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0'; variable = 'WIFEXT_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIFEXT_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIFEXT_DetectKeyExists_64' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VisualStudio\11.0\Setup\VS'; variable = 'Win8Dev_Dev11Path_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Win8Dev_Dev11Path_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'Win8Dev_Dev11Path_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\Win8\Servicing\12.0\DevTools'; variable = 'Win8DevTools_detectkey'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {1D2CEC61-C3F0-C27E-7280-F9D6B10378BE}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {F395FD4F-40E5-7B56-2BCB-B3CF52B3B52C}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx64x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {550760A2-DC4A-CD2B-3C1B-01E0F9F1279E}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {76FF502F-6811-F75B-2FEB-0B69BB584031}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx86x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Common_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Common_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Common_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Desktop_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Desktop_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Desktop_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Intellisense_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Intellisense_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Intellisense_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {984022F2-9BCA-A41D-6A38-1AE658F01415}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDK_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKDXRem_x64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {A1CB8286-CFB3-A985-D799-721A0F2A27F3}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKDXRem_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {37464E70-B0B9-9DFF-649A-CBE169BAD657}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStore_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {96F4525A-470D-F15C-796E-58D9988C3E5F}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStoreDXRem_x64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {56AD3004-0B49-967F-F682-B05650B61A78}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStoreDXRem_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'Software\Microsoft\Windows Kits\Installed Roots'; variable = 'Windows_EspCD11_LP_detectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WindowsBuildNumber' to value '7601'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\winexpress\Servicing\12.0\coremsi\1033'; variable = 'WinExpress12_detectkey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinSDK_Desktop_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinSDK_Desktop_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinSDK_Desktop_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {D82433A9-1D86-3695-B4C5-25E8B1794AE2}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'BuildTools_CoreRes_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {7A02D697-899C-3AB4-8A85-421BE7CBFD9E}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'BuildTools_Core_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\MobileTools\Servicing\11.0\WPSDKCore\1033'; variable = 'WpSdk_detectkey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {D3FFD34D-B716-4496-BFF0-0C34E536DC64}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'PythonTools_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i106: Calculating patch applicability for target product code: {CFEF48A8-BFB8-3EAC-8BA5-DE4F8AA267CE}, context: Machine
    [2588:1C24][2015-03-11T09:24:55]i106: Calculating patch applicability for target product code: {0398BFBC-991B-3275-9463-D2BF91B3C80B}, context: Machine
    [2588:1C24][2015-03-11T09:24:56]i106: Calculating patch applicability for target product code: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, context: Machine
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(CurrentOperation = "Repair") OR (CurrentOperation = "Uninstall")' evaluates to false.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vs_preclean_vs to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(NOT(RelationType = "Patch") AND NOT (CurrentOperation = "Install"))' evaluates to false.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: Preparation_Uninstall_vs_premium to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeMinimum_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: VCRedistD11x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: VCRedistD11x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeAdditional_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeAdditional_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebug_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebug_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebugD11_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebugD11_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(((SystemDataVersion >= v2.0.50727.5459) AND (SystemDataVersion < v2.0.50727.5650)) OR (SystemDataVersion >= v2.0.50727.5721)) AND (((SystemWebVersion >= v2.0.50727.5459) AND (SystemWebVersion <
    v2.0.50727.5650)) OR (SystemWebVersion >= v2.0.50727.5721))' evaluates to true.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: windows61_kb2664825_x86msu to package detect list

    Hello Pavanredd,
    From current logs you pasted, your error may due to the following:
    1. The installation package is corrupt. Ensure you are trying to download the ISO from official site and try verify checksum before use it.
    2. You do not have the right to install this product, ensure you are admin when installing and AV software disabled.
    3. Your OS has registry error, this may due to corrupt OS and you need to repair or reinstall.
    To resolve the above things, please do the following:
    1. Downlad the ISO and verify the ISO checksum first, you can find download link from official site and here is the article for you to verify your ISO
    https://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs
    In this way you will be able to use a good ISO to install, it will fix corruptpackage problem.
    2. Check your privilege and run the setup as admin
    3. It is hard to say whether it is a OS issue. Maybe more logs are required, please use 
    http://aka.ms/vscollect 
    to gather the installation logs. After using it, you will find vslogs.cab from %temp% folder. Please upload the file to
    https://skydrive.live.com/ 
    and share the link here.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Activate Updater with registry key

    Hi there,
    i have got a problem. I will make it quick. I look for a way to set the updater to status "download all updates and install them automatically".
    I want to do this with a registry key which i will send to all clients in our organisation for installation.
    Can someone tell me which registry key is changed when i set the status to "download all updates and install them automatically"?
    We are using Adobe Reader 9.3.
    Thanks in advance.

    see here :
    http://forums.adobe.com/thread/616675?tstart=30

  • Registry key for disabling automatic Viewer updates

    Hi everybody,
    you can disable to receive regular automatic updates in the CR Viewer 2008 if you click on "?". Can someone tell me what registry key is written so that these updates are disabled?
    Thanks,
    Pascal

    HI,
    unfortunately, the registry key is always for the logged-in user.
    But I received the solution from another colleague:
    You can disable the Update mechanism by removing the com.businessobjects.crystalreports.designer.updateserviceplugin_12.2.xxx.jar plugin from the \Program Files\Business Objects\Crystal Reports Viewer 2008\plugins\ folder.  This will disable it for all users.
    Note:  Make sure to remove the localized versions of the same plugin.
    Best regards,
    Pascal

  • How to disable Quick Time in registry key?

    My organization with windows 7, server 2003 and server 2008 and have install Apple Quick Time Player 7.74.80.86 for over 100,000 machines. Can you advice any registry key to disable auto update so that I can use PowerShell Script push to all the machines?

    But when I swipe down RIGHT when I get a text message, the notification tells me to reply right away. I don't want that. Is there a way to turn off this feature?

  • Adding Registry Keys To Code

    Is there any way of having code to create a registry key into the JAVA Script instead of when the program is installed, having it outside. I have heard in other languages that you can create a registry key within a few liens of code, is it also possible in JAVA?
    Example of another language:
    <registrySet>
    <key>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
    Control\Session Manager\Environment</key>
    <name>MY_APPDIR</name>
    <value>${installed}</value>
    </registrySet>

    Hi,
    You could add your own custom information to the custom alert fields of the alert.
    For more information, please review the link below:
    Updating custom alert fields using subscriptions and powershell
    http://blogs.msdn.com/b/steverac/archive/2010/08/17/updating-custom-alert-fields-using-subscriptions-and-powershell.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Java Plug-in not working with WinXP SP2 Registry Key Missing Error Pop-Up

    I have WinXp PRO with SP2 and the Oct 12 Security Update Patch for SP2 loaded and I went to my Control Panel and saw that the JavaRuntime Environment 1.4.2_04 icon was missing and when I went to click the Java Plugin icon to Open it, I got the following message in a Error Pop-Up window:
    The system cannot find the registry key specified:
    HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java pPlug-in\1.4.2_04\JavaHome
    I then went to Chage Access Program Controls and when I clicked on the Change box for the program, it wanted me to re-install the whole environment.
    Prior to doing this, and potentially screwing up my MS winXp environment, I went to the Sun support page for Java Plug-in and I did get the dancing elmo appear as they said I would but I noticed that my environment was MS VM, not Java and that I was out of date and a newer update was avaliable.
    The downloads page for the plug-in states clearly that it supports WinXp SP1 and NOT SP2.
    SO, my question is, do I need to re-install anything or wait till the whole SP2 issue and java with (BITS) issue gets resolved and just use the MS VM engine during my browsing time? Is there a workaround and what impact will this have on my system? I am not developing Java Apps but am a Power user in Windows who is wondering if applets and general browsing might be easier, faster and more fluid if the Java Runtime was enabled as opposed to the MS VM solution?
    Any ideas or thoughts on this very timely issue would be greatly appreciated as I see others have tried to post related issues but none that succinctly combines what I have asked for here in this post.
    Thanks from NYC -Phil

    did you know that XP SP2 has so many technical problems? try SP1 or contact the WindowsXP Vendor

  • I have a new hard drive and itunes and my computer (windows XP) no longer recognise my ipod. I also had the problem with the registry keys not being present but this has now been fixed. However i can no longer link my ipod up with itunes.

    When I first tried itunes with my new hard drive there was the problem with the registry keys but something also flagged up about needing a signed driver. Is this anything to do with why Itunes and my computer no longer recognises when my ipod is linked up? Whatever i try under 'devices' my ipod is never available to sync up. If anyone can help I would be most grateful.

    Thanks for your reply. Unfortunately this has not worked. I didn't have quicktime to begin with so I don't know if that makes a difference? After following the instructions, I get the "registry keys missing" problem appear again (which I've subsequently fixed again) and then when I connected the ipod I got the following message - 'Device driver software was not successfully installed'.
    I've tried windows update but this doesn't do anything as '...the service is not running'.
    Any suggestions?

  • How do I identify the latest file modifications, application install, and registry key modification for Security Forensics.... using GP Audit for registry/file system

    Hello,
    Title pretty much states it all. I initially set out (as part of a Security Forensics initiative) to identify the most recently installed applications, modified files, and registry key changes using PowerShell. I attempted to pull this information and sort
    them by date installed/last modified, but it was brought to my attention this information isn't always present and can be modified - so it's not accurate.
    At that time it was suggested we use Group Policy auditing for Registry and File System -  but I'm not sure how I'm going to use/pull these in PowerShell? This will be used on remote host all over the world so local physical access isn't an option.
    My question is:
    Once Group Policy Auditing for Registry and File System has been enabled, how would I go about pulling those audit logs for review once a system has been identified as compromised? I'm brand new to this GP Auditing (we have a separate team for that) so feel
    free to take it from the beginning. :)
    Thanks in advance!

    Hi,
    Here are a few suggestions for you:
    Ensure Remote Registry service is started on local and remote machines.
    Add the – Credential option and supply administrative credentials within the command.
    More information for you:
    Get-Eventlog doesn't work against Vista/W7 clients
    https://social.technet.microsoft.com/Forums/en-US/c5185a01-b0d2-49a7-9aa7-52e6534ada04/geteventlog-doesnt-work-against-vistaw7-clients?forum=winserverpowershell
    PowerShell - How to Get XML EventData - Remote Eventlogs - Exchange Events
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/382b10c9-d740-46b1-b81c-b24de911eb14/powershell-how-to-get-xml-eventdata-remote-eventlogs-exchange-events-?forum=ITCG
    Powershell script to gather failed logon attempts by event id and type from the security events log
    https://social.technet.microsoft.com/Forums/scriptcenter/es-ES/00a62492-c63a-4c8b-92f9-1cc857223a00/powershell-script-to-gather-failed-logon-attempts-by-event-id-and-type-from-the-security-events-log?forum=ITCG
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • Problem with using DSA signatures ON CARD

    Hi ppl, I've encountered a rather really wierd problem using DSA signatures on a java card applet. I just create the key using these two lines and i get a response which is not supposed to happen... KeyPair dsakey = new KeyPair (KeyPair.ALG_DSA, KeyB

  • Bluetooth ports added and unchangeable after os 10.8.5 update

    Anyone have any ideas? I just updated my system software and now my bluetooth preferences are showing 2 new serial ports (modem) that I can NOT erase. Everytime I try, they keep on returning within in an hour or on reboot. On top of that, the box tha

  • After Effects CS5.5 error: crash in progress last logged message was 3300 DynamicLink 5

    Randomly when I start after effects CS5.5 and premiere pro CS5.5 I get the following error: After effects error: crash in progress last logged message was <3300> <DynamicLink> <5> 000000001AAB2080 I have all programs updated. PC Specs: i7 930 @ 2.8GH

  • Black window appears on the desktop with white writing

    I pressed something and black window appeared on the desktop with white writing describing every step i do every button i press. How to remove it?

  • ITunes 9 Selecting Standard Definition?

    I only need Standard Definition video as my iPod Touch won't play HD. In the last version of iTunes, there was a link you could click to switch from the HD video list to a Standard Def list. I can't find anything like that in the new iTunes 9 store..