Thursday, March 3, 2022

DPM Backup Restore to remote server with folder rename and delete

DPM Backup Restore to remote server with folder rename and delete

Hi,

I have some trouble to automate this task.

I have 2 servers lets say Srv-Dpm and Srv-HyperV, what I want to do is to rename older backup with a script than currently is on the HyperV server, next restore DPM backups on a Drive on HyperV server and after that delete old folders. All this with the scheduler if possible...

Restore Script on DPM Server:

 

#### Main ####    param([string] $restorePath = "F:\DPM", [string] $targetServerName = "Srv-HyperV"#0. Initialize variables    $dpmName = $env:computername    if(!$restorePath)    {        $restorePath = Read-Host "Enter the path to where the VMs should be restored"    }        if (!$targetServerName)    {        $targetServerName = Read-AHost "Enter netbios name of the target server"    }        #1. Get all Protection Groups    $pgList = Get-ProtectionGroup -dpmServerName $dpmName        #2. Get all Hyper-V Datasources    $hypervDSList = @()    ForEach ($pg in $pgList)    {     $hypervDSList += @(Get-Datasource -protectionGroup $pg | where {$_.Type.Name -eq "Hyper-V" -and $_.Name -notcontains "Initial Store"})    }        #3. Do Inquiry on target server for DPM to discover the available volumes    Write-Host "Getting available volumes on Target Server"    $targetServer = Get-ProductionServer -dpmServerName $dpmName | where {$_.NetBiosName -eq $targetServerName}    Get-Datasource -ProductionServer $targetServer -Inquire | Out-Null        #4. Recover datasources one by one.    ForEach ($hypervDS in $hypervDSList)    {     #4.1 Get the latest recovery point.     $recoveryPoints = @(Get-RecoveryPoint -datasource $hypervDS | sort -property RepresentedPointInTime -Descending)        if ($recoveryPoints.Length -eq 0)        {            Write-Host "No recovery point available for" $hypervDS.Name -ForeGroundColor Yellow            Continue        }        $latestRecoveryPoint = $recoveryPoints[0]     #4.2 Recover it to target server as files     $rop = New-RecoveryOption -HyperVDatasource -targetServer $targetServerName -recoveryLocation CopyToFolder -RecoveryType Restore -TargetLocation $restorePath        Write-Host "Recovering" $hypervDS.Name -NoNewLine     $recoveryJob = Recover-RecoverableItem -RecoverableItem $latestRecoveryPoint -recoveryoption $rop -JobStateChangedEventHandler $jobStateChangeHandler        if(!$recoveryJob)        {            Write-Host "Failure on invoking Recover-RecoverableItem" -ForeGroundColor Red            continue        }        #4.3 Wait till the recovery job completes        while (! $recoveryJob.hasCompleted )        {             # Show a progress bar            Write-Host "." -NoNewLine            Start-Sleep 5        }        Write-Host     if($recoveryJob.Status -ne "Succeeded")        {            Write-Host "Recovery failed" -ForeGroundColor Red        }        else        {        Write-Host "Recovery successful" -ForeGroundColor Green        }    }        #6    Exit

 

Bat File Called from scheduler:


C:\Windows\system32\windowspowershell\v1.0\powershell.exe -PSConsoleFile "C:\Program Files\Microsoft DPM\DPM\bin\dpmshell.psc1" -noexit -command ".'C:\scripts\restore.ps1'"

Rename Script on HyperV

 

 

$FolderToRename = Get-ChildItem -Path F:\DPM        foreach ($str in $FolderToRename){         $Renomme = [string]$str.Name + ".old"     Rename-Item $str.FullName -NewName $Renomme        }

 

Delete Script on HyperV


 

$FolderToDel = Get-ChildItem F:\DPM | Where-Object {$_.name -like "*.old"}        foreach ($str in $FolderToDel){          Remove-Item F:\DPM\$str -recurse     }

 

Both Called from a Bat File.

The problem I have; first If I schedule the Bat file to launch for the DPM restore task nothing happens? Work great manualy

Second thing is, can I execute the Rename script before backup launch(all in one) for the remote HyperV server (tried Invoke-Command, but can't get it to work), and the Delete just after it finished of curse.

All this must go with scheduler, and nothing should be ask (example: "-credential from invoke-command with the password popup").

Really need some help on this! Thanks to read.


  • Edited by ludovic kennel Monday, December 5, 2011 3:34 PM
  • Moved by Marco Shaw Monday, December 5, 2011 11:46 PM (From:Windows PowerShell)
  • Changed type Yegor Startsev Monday, April 8, 2013 10:20 AM lack of activity

Reply:

Are you creating the task schedule to run with a specific domain account?

 


Thanks, Wilson Souza - MSFT This posting is provided "AS IS" with no warranties, and confers no rights

------------------------------------

Run a program on windows startup and auto click button also in startup

Hi,

I have one application for biometric punch in/out. i put that application on startup. but we need click "START" button after startup manually. i need "START" button click also on startup. how it is possible? please suggest me. if possible in windows powershellscript?


Dhakshinamoorthy Balasubramanian
  • Changed type Yegor Startsev Monday, April 8, 2013 10:17 AM lack of activity

Reply:
That application in question was written on which language?
Thanks, Wilson Souza - MSFT This posting is provided "AS IS" with no warranties, and confers no rights

------------------------------------

Variations on UAC management -good blog here

Not really a disussion but I thought many here would be able to use this info on UAC.

Mommy - Why is there a shield on my icon?

Shutup dearie and keep clicking!


jv
  • Edited by jrv Saturday, December 17, 2011 1:13 AM

Reply:
Interesting.  Thanks.
([string](0..9|%{[char][int](32+("39826578846355658268").substring(($_*2),2))})).replace(' ','')

------------------------------------

How do I Disable privileged instruction protection in XP

I am using an HP workstation to control lab hardware via the parallel port.

I want to use assembler for speed. Promelm is, XP won't let me execute

Mov Dx, 378H     ;Parallel Port data address
Out Dx, Al   ;Output LSB of accumulator

as OUT is a "privileged instruction". In Windows 98, this worked fine.

This is unbelievably dumb. There is no-one else using this computer, nothing else connected to it, and it doesn't have internet access, so I need protection - just full control over what it does.

 

So, please will somebody tell me what to type on the keytboard or what assembly instructions to insert in my prgram to change the privilege so I can do this

 

  • Moved by WadeWe Tuesday, April 19, 2011 9:02 PM Off Topic (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hello

Thank you for your post!

I'd like to suggest posting your question in one of the TechNet Forums:

Windows Client TechCenter > Windows XP IT Pro Forums > Windows XP Service Pack 3 (SP3)

Located at:

http://social.technet.microsoft.com/Forums/en-US/itproxpsp/threads

Hope this would be helpful.

Have a nice day!

------------------------------------

Outlook Express send problem

I have a client who is running Windows XP, Internet Explorer 7 and Outlook Express 6. Several days ago, he started having a problem sending emails. If he forwards an email or replies to one, everything is fine. However, if he creates an email and clicks Send, it hangs in the Outbox. It appears not to send and he eventually gets an error message (don't remember the wording because it didn't make much sense). What he has discovered is that even though the message is still sitting in the outbox, the recipient has actually received the message multiple times.  If he deletes the message from the outbox quickly after sending it, the recipient gets one message. If he doesn't delete the message, the recipient gets multiple copies and the message just sits in the outbox. I had him delete the outbox so it would recreate itself, but that hasn't helped. He has AT&T as his provider and I have checked all of the settings, so I know they are correct. Any suggestions would be appreciated. Thanks.
  • Moved by Dinesh Kattameda Tuesday, April 19, 2011 9:55 PM Not related to this forum (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hello

Thank you for your post!

I'd like to suggest posting your question in one of the TechNet Forums:

Office >Microsoft Office for IT Professionals Forums >Outlook IT Pro Discussions

Located at:

http://social.technet.microsoft.com/Forums/en-US/outlook/threads

Hope this would be helpful.

Have a nice day!

------------------------------------

when will I get windows browser support for 64bit

From abode reader or do I have to pay ?
  • Moved by Kenneth Lee Wednesday, April 20, 2011 11:46 PM forum cleanup (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hello

Thank you for your post!

I'd like to suggest posting your question in one of the TechNet Forums:

Resources for IT Professionals > Forums Home > Project Professional Forums > Project Standard and Professional General Questions and Answers

Located at:

http://social.technet.microsoft.com/Forums/en-IE/projectprofessional2010general/threads

Hope this would be helpful.


------------------------------------

Microsoft Office 2010 "None" Reminders Change to "0 minutes" Reminder on the PDA

From our Microsoft Outlook 2010 calendar I input an appointment, and the reminder is set at "None". When my boss receives the appointment on his PDA, the reminder is switched to "O minutes" which then reminds him right away. He wants to keep it at "None", and he does that through General Options, but it keeps going back. What's going on?
  • Changed type orietta Tuesday, January 25, 2011 9:19 PM
  • Moved by Kenneth Lee Tuesday, April 19, 2011 6:52 AM fq (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hello

Thank you for your post!

I'd like to suggest posting your question in one of the TechNet Forums:

Office > Microsoft Office for IT Professionals Forums > Outlook IT Pro Discussions

Located at:

http://social.technet.microsoft.com/Forums/en-US/outlook/threads

Hope this would be helpful.

Have a nice day!

------------------------------------

can you have windows 7 and download windows xp?

I just bought a Toshiba laptop that is running Windows 7. My printer will only run on Windows XP, can I have both programs downloaded so I can still use this printer?
  • Moved by Kenneth Lee Tuesday, April 19, 2011 6:43 AM forum cleanup (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hello

Thank you for your post!

I'd like to suggest posting your question in one of the TechNet Forums:

Windows Client TechCenter > Windows 7 IT Pro Forums > Windows 7 Miscellaneous

Located at:

http://social.technet.microsoft.com/Forums/en/w7itprogeneral/threads

Hope this would be helpful.

Have a nice day!

------------------------------------

Bugs on MS Technet Forums

Dear developers :)

I have realised that in MS technet forums some sentences which was posted by the moderator are out off the alignment. Is time for some bug fix :p


Guowen Su | CCNA, CCIP, MCP, MCSA, MCSE, MCTS, MCITP, CEH | http://www.microsoft.com/en/sg/default.aspx Our Goal? VERY SATISFIED Customers. If you're not...let's talk!!
  • Moved by Kenneth Lee Tuesday, April 19, 2011 6:30 AM forum cleanup (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

Hi Guowen,


Thanks for your post.

We'd suggest posting your question in bug report forum.

Located at: http://social.msdn.microsoft.com/Forums/en-US/reportabug/threads

 


Thanks
Liam Huang
EPX Customer Support
Server and Tools Online Operations Team

------------------------------------

HELP WITH MEMORY

HAVE A MAJOR PROBLEM. MY COMPUTER CRASHED YESTERDAY AND I HAD TO RE FORMAT IT AND REINSTALL MY WINDOWS TO IT. IT IS TELLING ME NOW THAT I AM OUT OF MEMORY. IT IS ONLY USING THE "C" DRIVE WHICH IS FULL. MY "D" DRIVE IS COMPLETELY EMPTY BUT IT IS NOT STORING ANYTHING ON IT.. IS THERE SOMETHING I NEED TO DO TO ALLOW IT START USING THE "D" DRIVE?? PLEASE HELP!!
  • Moved by Ming Ma Tuesday, April 19, 2011 3:20 AM forum cleanup (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)

Reply:

hi jewel,

 

Thanks for your post.

Per your description, we'd suggest you run the cleanup disk by using the system tools.

YOu can right click the C disk and choose the properties.

There is a cleanup button for you to clean the disk caches and useless files.

hope this would be helpful.


Thanks
Liam Huang
EPX Customer Support
Server and Tools Online Operations Team

------------------------------------

suggestions for Windows OS and new version office

To windows

1.Time zone table  with different country .better with  weather ,travel tips 

To Office outlook.

Add customer relation management   moudule 

1.Customer info.time zone ,follow up times.

2.Coversation mail  

3.Calculator 

4.Add Messager tool,MSN or Skype

5.Documents section ,I need't open one fold and next fold to find the file.       

 

James : xiaofanmine@163.com

  • Moved by Reed Copsey, JrMVP Saturday, November 26, 2011 6:01 PM Off topic (From:Windows Forms Designer)

Reply:

Hi there,

 

Thanks for your post.

We'd suggest posting your suggestion in the microsoft site by clicking the feedback.

Such as Office: you can post feedback at http://office.microsoft.com/en-us/downloads.

Window OS : http://windows.microsoft.com/en-US/windows/downloads

Hope this would be helpful


Thanks
Liam Huang
EPX Customer Support
Server and Tools Online Operations Team

------------------------------------

NAT doesn-t work

hello guys i have configured my Windows Server 2008 Enterprise R2, in my ethernet to internet i have a public address with correspond ip mask and gateway, in my internal i have configured a private address with out gateway and dns to himself. y have configured RRAS with assitant and choosed NAT, but in NAT Internal an External interfase no have nothing and mi clients can-t go to internet. i have configure DHCP and DNS fine, becouse in my clientes can resolve DNS *with nsloookup* and recive ip address properly with gateway fine.

some body can help me!! thanks


Reply:
from your client pc can u ping to the real ip which is configured in the 2nd nic in the server
Darshana Jayathilake

------------------------------------
Reply:

What type of outside interface do you have? Is it an ADSL service with PPPoE., or is it a NIC directly connected to by wire?

IF PPPoE:

================================
To configure NAT with a PPPoE dialup interface:

You may follow the workaround below to modify interface setting and try reconnecting :

1.  Start the Routing and Remote Access administrative tool. 
2.  Expand the options under your RAS server's name. 
3.  Click Ports , and then click Properties on the Action menu. 
4.  Click the appropriate port (L2TP, Modem, PPTP, LPT1, and so on), and then click Configure . 
5.  Click to select the Remote access connections (inbound only) check box, and then click OK . 
6.  Click Apply , and then click OK . 

If it works you can share this connection by running wizard:

RRAS Setup Wizard - NAT Internet Connection Page
http://technet.microsoft.com/en-us/library/dd469635(WS.10).aspx

Windows Server 2008 - permanent PPPOE connection - How do I setup the connection so it connects automatically on startup without logging on?
http://social.technet.microsoft.com/Forums/en/winserversetup/thread/1ebb2005-5941-4aea-b276-9dfbac7d9826 
================================

 

If not PPPoE:

How To Install and Configure RRAS NAT & VPN (YouTube Video):
How to install routing and remote access server and test the installation with a VPN connection.
http://www.youtube.com/watch?v=wpt2z3LA0dQ 

 

 


Ace Fekay
MVP, MCT, MCITP EA, MCTS Windows 2008 & Exchange 2007 & Exchange 2010, Exchange 2010 Enterprise Administrator, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php

This posting is provided AS-IS with no warranties or guarantees and confers no rights.

FaceBook Twitter LinkedIn

------------------------------------
Reply:

Hi Jiordie,

 

Thanks for posting here.

 

Do you mean internal clients can resolve and get the internet address of internet domain with the network settings which obtained from NAT server ?

 

> in my internal i have configured a private address with out gateway and dns to himself

 

Please configure the network setting for internal facing interface with flowing the introductions in the article below and reconfigure the NAT by running the wizard:

 

How to configure Network Address Translation in Windows Server 2003

http://support.microsoft.com/kb/816581/en-us

 

Enable and Configure NAT

http://technet.microsoft.com/en-us/library/dd469812(WS.10).aspx

 

Thanks.


Tiger Li


Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

------------------------------------
Reply:

thnaks for all, i resolved my problem, simply formating again my server, i found that the NIC's had active the "teamed" but couldn't fix it, then, i format again and ready!!!!

 

best regards!!!


Alexander Gómez

------------------------------------
Reply:

hi

I got the same problem as your. what do you mean by "the NIC's had active the "teamed..."?

 

thanks


------------------------------------

how about a new account for beyluxe?

how about a new accout for beyluxe


Reply:

how about a new accout for beyluxe



------------------------------------

New Feature(?): Finding the closest point of one geometry to another

 Hi There,

I've come across a requirement that, while I think is relatively simple, doesn't seem to be implemented by any of the inbuilt spatial functions.

Basically, I want to find the point(s) of one geometry that lie closest to a second, non-intersecting geometry. As a practical example, consider two non-intersecting linestrings representing two flight paths. I want to find the point along each path where the plane following that route flies closest to the other.

I think that SQL Server must already be identifying this point in order to calculate the result of STDistance() (since this calculates the shortest distance between two geometries), but it doesn't seem to expose it in any of the methods.

Assuming I haven't missed something and that this feature isn't currently available anywhere, I'd like to suggest a new extended function, Closest(), I imagine it to work something like this: (Four examples, in each case the result of the method is highlighted in red)

Where there are a number of closest points (such as parallel lines), then the method returns the simplest geometry representing all of the points - this could be a linestring, multipoint, or multilinestring.
Where the two geometries actually intersect, the 'closest' points would be those contained within the intersection - i.e. the method would return the same as STIntersection().

So, two questions really:

1.) Is there any way to implement this functionality currently? If not available via a single method, can anybody suggest a workaround?
2.) If not, can I suggest it as a feature in the future? (If so, should I raise it via Connect? I thought I'd raise it here first to get a discussion as to whether anybody would find it useful/whether it can actually already be done!)

Thanks!


Beginning Spatial with SQL Server http://www.apress.com/book/view/1430218290

Reply:
I always thought that it was odd that this functionality was missing from the spatial types as well.  Perhaps it's because it's not deterministic in the fact that you can calculate distance between two shapes without necessarily having to determine the full set of points that distance applies to.  IOW, suppose that there are multiple points equidistant from your shape that qualify as the closest - do you want to know just one of them, or all of them?  What if your point is the center of a circle, and you ask for the closest point on the circle?

Using a combination of buffer and intersection, I was able to get expected results.  To be honest, though, I don't know what edge cases this would fail for (or, perhaps this is an edge case that just happens to work...  /grin)

declare @g geometry = 'LINESTRING(0 0, 10 10)' 
declare @h geometry = 'POINT(0 10)' 
 
select @h.STBuffer(@h.STDistance(@g)).STIntersection(@g).ToString() 


------------------------------------
Reply:
That's a neat solution - thanks! In fact, this behaves in exactly the way I was imagining... I want the geometry created from all the points that are the 'closest' distance away - and that may be a multipoint or, in the case of the closest point on the circle to the centre, it would be the circle itself.

Now the only problem is that combining STBuffer(), STDistance() and STIntersection() is pretty computationally-heavy... so I still think there might be a case for a dedicated function for this, but at least your solution gets the right answer.
Beginning Spatial with SQL Server http://www.apress.com/book/view/1430218290

------------------------------------
Reply:
Hi Folks,

This is on our list of things to do---it just didn't make it for 2008.  I did make a note of this thread on the work item.  Feel free to file a Connect bug as well, though: it cannot hurt.

I love the workaround.  Very clever.  You could add a STStartPoint() to ensure that the result is a single point.

Cheers,
-Isaac


Isaac Kunen, Microsoft SQL Server

------------------------------------
Reply:

pity the workaround not always works... 

 

declare @h geometry = 'POINT(175346.325596772 202579.692494631)'

declare @g geometry = 'POLYGON((175373.37654079497 202663.47566268593, 175309.02370874584 202626.29556666315, 175328.32617276162 202595.99009463936, 175328.33046075702 202595.99284664169, 175335.22780476511 202600.4390546456, 175335.27100476623 202600.37697464228, 175335.33071676642 202600.29115064442, 175342.50012476742 202604.9433106482, 175343.06434877217 202605.3093906492, 175355.01686077565 202585.1888146326, 175355.22690878063 202584.8352146335, 175346.57487677038 202579.83649462834, 175350.90825277567 202572.54171062633, 175351.08706877381 202572.240654625, 175346.8919967711 202569.81697462127, 175345.81129277498 202569.19259062409, 175345.50646077097 202569.01646262407, 175352.43746877462 202558.13460661471, 175378.08418879658 202517.86843058839, 175378.47298879176 202517.2579985857, 175387.97513280064 202521.08609458804, 175392.46217280626 202523.75739059225, 175415.91702082008 202537.72103860229, 175429.48124483228 202545.79636660591, 175439.01698883623 202552.97799861059, 175438.9791008383 202553.04180661216, 175425.85634882748 202575.13236662746, 175373.37654079497 202663.47566268593), (175387.31574080139 202542.21063860506, 175387.92713280022 202542.56340660527,175385.82249280065 202546.25569460541, 175392.09526080638 202549.76961461082, 175391.75484480709 202550.37588660792, 175400.52566081286 202555.39905461296, 175402.95503681153 202551.16513460875, 175403.52956481278 202551.49115061015, 175408.33698881418 202543.07399860397, 175392.2850208059 202533.85300659761, 175387.31574080139 202542.21063860506))'

 

will return an empty geometrycollection


------------------------------------
Reply:

There's two limitations with the workaround:

Firstly, because you're buffering a point, you'll end up with a many-sided polygon rather than a "true" circle. Depending on where the vertices of that polygon fall, it may not intersect the other polygon, despite having been buffered by the correct amount

Secondly, because of coordinate precision issues, the distance returned by STDistance() may not exactly equal the required amount to buffer the point in order to make it touch the polygon.

Both of these issues can be fixed by just increasing the buffer distance a little bit. To ensure that you still only get a single point result, then select the STStartPoint() of the result:

  select   @h.STBuffer(@h.STDistance(@g)+0.0001).STIntersection(@g).STStartPoint().ToString()  

Beginning Spatial with SQL Server http://www.apress.com/book/view/1430218290

------------------------------------
Reply:

------------------------------------
Reply:

I've just posted on this topic on my blog:

A Short Discussion on the ShortestLineTo() Method


Ed Katibah Spatial Ed Blog

------------------------------------
Reply:

I implemented both of these workarounds, but I still get an empty geometry collection from the following:

declare @g geography = geography::STLineFromText('LINESTRING(-76.888752069 17.750538823,-77.788753595 18.781398145,-79.088749017 20.537241186,-79.888752069 22.712053988,-80.188747491 24.893236255,-79.188747491 28.96060422,-76.488750542 34.5215753,-72.488750542 41.39158699)', 4326)

declare @h geography = geography::STPointFromText('POINT(-81.592 30.241)', 4326)

select @h.STBuffer(@h.STDistance(@g)+0.0001).STIntersection(@g).STStartPoint().ToString()

Both geometries (geographies) are valid

I had to increase the buffer size adjustment (.0001) to 261.00 before I got a geometry returned: POINT (-78.983169361938636 29.409637269610098)

 

Thoughts as to why?


------------------------------------
Reply:

Try this:

  select @h.STBuffer(@h.ShortestLineTo(@g).STLength()).STIntersection(@g).STStartPoint().ToString()    


Ed Katibah Spatial Ed Blog

------------------------------------
Reply:

Actually both techniques produce the same result in SQL Server 2012 and SQL Azure:

 

select @h.STBuffer(@h.ShortestLineTo(@g).STLength()).STIntersection(@g).STStartPoint().ToString()  --Results: POINT (-79.002766274611474 29.367016180451238)    select @h.STBuffer(@h.STDistance(@g)).STIntersection(@g).STStartPoint().ToString()  --Results: POINT (-79.002766274611474 29.367016180451238)  

Why does this now work? This is (most likely) due to the increase in precision in the computational model used in the new versions of SQL spatial.  For a more detailed discussion on this topic, please see http://social.technet.microsoft.com/wiki/contents/articles/4136.aspx#Improved_Precision.

 


Ed Katibah Spatial Ed Blog
  • Edited by Spatial Ed Saturday, December 17, 2011 2:31 AM

------------------------------------

Cannot convalidate account creation on Blackberry

We have 5 Bpos users. Two of them have the mailbox syncronized on Blackberry. Yesterday after a password change due to 60 days expiration period, I can't reset password through our Blackberry mobile operator portal. When I try to change the password, I got the error "Cannot convalidate your mailbox account.". I'm 100% sure that the password was typed correctly (the Owa login and Outlook works perfectly). So I decided to delete the account on the Blackberry portal, and re-create it but with the same error. The mobile operator support told me maybe there is a temporarily problem.

Any suggestion will be appreciated.

Thanks

Alessandro - Italy

Post image installs ?

I've got the basics of the deploy toolkit. Now I got a HP laptop 6910p which doesn't pull all drivers through. Seems I need to install a few softpaqs after install. What would be the best way to do this ?

Reply:

Some of us that use HP computers deploy drivers using the Install Application feature of MDT. Keep the core drivers like network and sata in your boot image and out of box drivers. The others are then deployed as softpaqs often with the /s switch. Some also deploy all drivers as one application using HP SSM.

Lucky Dell users only have to download one file and import that into MDT out of box drivers. I wish HP could do the same.


------------------------------------

Windows Server 2008 can't load/refresh Roles/Features in Server Manager

Could not discover the state of the system. An unexpected exception was found:
System.Runtime.InteropServices.COMException (0x80070490): Element not found. (Exception from HRESULT: 0x80070490)
   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
   at Microsoft.Windows.ServerManager.ComponentInstaller.CreateSessionAndPackage(IntPtr& session, IntPtr& package)
   at Microsoft.Windows.ServerManager.ComponentInstaller.InitializeUpdateInfo()
   at Microsoft.Windows.ServerManager.ComponentInstaller.Initialize()
   at Microsoft.Windows.ServerManager.Common.Provider.Initialize(DocumentCollection documents)
   at Microsoft.Windows.ServerManager.ServerManagerModel.InternalRefreshModelResult(Object state)

  • Changed type Tim Quan Thursday, February 11, 2010 1:40 AM

Reply:

Hi,

 

Please run the System Update Readiness Tool in the following site and let me know the result in %SYSTEMROOT%\Logs\CBS\CheckSUR.log.

 

http://support.microsoft.com/default.aspx/kb/947821/

 

Tim Quan - MSFT

 


------------------------------------
Reply:

I have a similar issue.  I ran the System Update Readiness Tool, and here is the content of the CheckSUR.log file:

 

=================================

Checking System Update Readiness.

Binary Version 6.1.7601.21645

Package Version 13.0

2011-12-15 22:12

 

Checking Windows Servicing Packages

 

Checking Package Manifests and Catalogs

 

Checking Package Watchlist

 

Checking Component Watchlist

 

Checking Packages

 

Checking Component Store

(f) CSI Manifest Failed Catalog Check 0x00000000 winsxs\Manifests\wow64_microsoft-windows-ie-htmlrendering_31bf3856ad364e35_9.4.8112.16434_none_922e2c22293367b8.manifest wow64_microsoft-windows-ie-htmlrendering_31bf3856ad364e35_9.4.8112.16434_none_922e2c22293367b8

(f) CSI Corrupt Identity 0xC0150016 Microsoft-Windows-IIS-WebDAV-Deployment-LangmagePack, Culture=en-US, Version=6.1.7600.16385, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=amd64, versionScope=NonSpS amd64_microsoft-windows-y..oyment-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_91d7c28aa4e8c96c Bad identity

(f) CSI Manifest Missing 0x00000002 amd64_microsoft-windows-y..oyment-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_91d7c28aa4e8c96c.manifest amd64_microsoft-windows-y..oyment-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_91d7c28aa4e8c96c

 

Summary:

Seconds executed: 58

 Found 3 errors

  CSI Manifest Missing Total count: 1

  CSI Manifest Failed Catalog Check Total count: 1

  CSI Corrupt Identity Total count: 1

 

Unavailable repair files:

winsxs\manifests\wow64_microsoft-windows-ie-htmlrendering_31bf3856ad364e35_9.4.8112.16434_none_922e2c22293367b8.manifest

winsxs\manifests\amd64_microsoft-windows-y..oyment-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_91d7c28aa4e8c96c.manifest

 

 

It seems that I am missing the above two files. But where and how can I get those two files??

Thanks.

 

 


------------------------------------

How to test the backend Azure instance?

We are running Azure service in the cloud to communicate the App running Iphone/Ipad. We have to monitor the service and get the notification if there were failures. Is that possible to build windows/web/service to monitor?

Can anyone help me on this?


Reply:

Logeshr,

you can use the Windows Azure portal of course to check the health of your roles. Secondly, you can use the Service Management API to implement some health checking yourself. For example: The Get Hosted Service Properties operation retrieves system properties for the specified hosted service. You can check the overall state of your deployment (including all roles). These are the possible states: Running, Suspended, RunningTransitioning,SuspendedTransitioning
,Starting , Suspending , Deploying ,Deleting . Also checking the specific instance status can be helpful: RoleStateUnknown, CreatingVM, StartingVM, CreatingRole,
StartingRole, ReadyRole, BusyRole, StoppingRole, StoppingVM, DeletingVM, StoppedVM, RestartingRole, CyclingRole, FailedStartingVM, UnresponsiveRole.

What you can do is build a service that periodically checks the health of your core service and reports back to status or perform some action to recover it's health. Also sending sms or mail to your administrator can be usefull.

hope this helps,

Riccardo




------------------------------------
Reply:

For simple alerts, you can also download a free utility called AzurePing that will run as a Windows Service on any computer/VM of your choosing and monitor any number of Azure resources like storage tables, containers, SQL Azure databases, etc.  AzurePing is available for free at http://www.paraleap.com/azureping

Kind regards


Auto-scaling & monitoring service for Windows Azure applications at http://www.paraleap.com

  • Edited by Igor Papirov Saturday, December 17, 2011 12:37 AM

------------------------------------

V3 CTP 2 ISE - custom color scheme?

anyone using V3 and have a custom color setup?
 
did you know you can remove that setting from your profile now if you save
the scheme? (tools - options - colors and fonts)
 
I got my setup from Robert Robelo (who is MIA)
 
anyone have an interesting setup they'd like to share?
 
 

Justin Rich
http://jrich523.wordpress.com
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
  • Changed type jrich Thursday, December 15, 2011 3:24 PM NNTP Bridge

Reply:

Greetings,

I always admit that I am a lazy admin and an old school guy.

So if you want me change the background/text background/foreground and blahblahblah, I will +O( .

Personaly speaking, I prefer Monochrome Green, but it seems like I have to wait for a while. (Connect Site)

My second choice is "Dark Console, Dark Editor".

Anyway, I love the new Windows PowerShell ISE. ;)


After I watched the video "Richard St. John's 8 secrets of success" on TED.com, I learned this: "Being good at your job is not enough, you should be damn good at it."

------------------------------------
Reply:
lol im lazy as well, as I said, I took Roberts color scheme, a very nice
dark setup, I thought about changing it myself, but it probably wouldn't
have gone well :)
 
 

Justin Rich
http://jrich523.wordpress.com
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

------------------------------------

Cannot install SQL Express on Windows Server 2008 R2 Standard 64 Bit error 1603

Hi I am installing Backup Exec 2010 R3 on our Windows Server 2008 R2 Standard 64 Bit. Backup Exec requires the installation of SQL Server Express. The installation fails and the following log is generated. The error message that is displayed is 1603. I contacted Symantec and they attempted to fix the problem. The installer that is included with BE is R3. The Symantec person had me download the R2 version form Microsoft's site to no avail. He also looked at 'Add/Remove' Programs and no other version of SQL was running. As far as I can tell we have not loaded anything that would have loaded SQL sever.

Here is the log file:

=== Verbose logging started: 6/20/2011  11:10:24  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Windows\SysWOW64\msiexec.exe ===
MSI (c) (AC:44) [11:10:24:788]: Resetting cached policy values
MSI (c) (AC:44) [11:10:24:788]: Machine policy value 'Debug' is 0
MSI (c) (AC:44) [11:10:24:788]: ******* RunEngine:
           ******* Product: e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi
           ******* Action:
           ******* CommandLine: **********
MSI (c) (AC:44) [11:10:24:788]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (AC:44) [11:10:24:788]: Grabbed execution mutex.
MSI (c) (AC:44) [11:10:24:835]: Cloaking enabled.
MSI (c) (AC:44) [11:10:24:835]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (AC:44) [11:10:24:835]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (B0:D8) [11:10:24:850]: Running installation inside multi-package transaction e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi
MSI (s) (B0:D8) [11:10:24:850]: Grabbed execution mutex.
MSI (s) (B0:B8) [11:10:24:850]: Resetting cached policy values
MSI (s) (B0:B8) [11:10:24:850]: Machine policy value 'Debug' is 0
MSI (s) (B0:B8) [11:10:24:850]: ******* RunEngine:
           ******* Product: e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi
           ******* Action:
           ******* CommandLine: **********
MSI (s) (B0:B8) [11:10:24:850]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (B0:B8) [11:10:24:850]: SRSetRestorePoint skipped for this transaction.
MSI (s) (B0:B8) [11:10:24:850]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
MSI (s) (B0:B8) [11:10:24:850]: File will have security applied from OpCode.
MSI (s) (B0:B8) [11:10:24:866]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi' against software restriction policy
MSI (s) (B0:B8) [11:10:24:866]: SOFTWARE RESTRICTION POLICY: e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi has a digital signature
MSI (s) (B0:B8) [11:10:24:959]: SOFTWARE RESTRICTION POLICY: e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi is permitted to run at the 'unrestricted' authorization level.
MSI (s) (B0:B8) [11:10:24:959]: End dialog not enabled
MSI (s) (B0:B8) [11:10:24:959]: Original package ==> e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi
MSI (s) (B0:B8) [11:10:24:959]: Package we're running from ==> C:\Windows\Installer\455419.msi
MSI (s) (B0:B8) [11:10:24:959]: APPCOMPAT: Compatibility mode property overrides found.
MSI (s) (B0:B8) [11:10:24:959]: APPCOMPAT: looking for appcompat database entry with ProductCode '{79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}'.
MSI (s) (B0:B8) [11:10:24:959]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (B0:B8) [11:10:24:959]: MSCOREE not loaded loading copy from system32
MSI (s) (B0:B8) [11:10:24:959]: Machine policy value 'TransformsSecure' is 1
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'DisablePatch' is 0
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (B0:B8) [11:10:24:975]: APPCOMPAT: looking for appcompat database entry with ProductCode '{79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}'.
MSI (s) (B0:B8) [11:10:24:975]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (B0:B8) [11:10:24:975]: Transforms are not secure.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Program Files (x86)\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0003_SERVER1_SNAC.log'.
MSI (s) (B0:B8) [11:10:24:975]: Command Line: REBOOT=ReallySuppress SKIPPENDINGREBOOTCHECK=1 CURRENTDIRECTORY=e:\5f721d0eded6a0e16f42cd4f39b3b5ab CLIENTUILEVEL=3 CLIENTPROCESSID=5292
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{770BC9BC-CC72-4D98-BB90-326FF1BBBC3A}'.
MSI (s) (B0:B8) [11:10:24:975]: Product Code passed to Engine.Initialize:           ''
MSI (s) (B0:B8) [11:10:24:975]: Product Code from property table before transforms: '{79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}'
MSI (s) (B0:B8) [11:10:24:975]: Product Code from property table after transforms:  '{79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}'
MSI (s) (B0:B8) [11:10:24:975]: Product not registered: beginning first-time install
MSI (s) (B0:B8) [11:10:24:975]: Product {79BF7CB8-1E09-489F-9547-DB3EE8EA3F16} is not managed.
MSI (s) (B0:B8) [11:10:24:975]: MSI_LUA: Credential prompt not required, user is an admin
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (s) (B0:B8) [11:10:24:975]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (B0:B8) [11:10:24:975]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (B0:B8) [11:10:24:975]: Adding new sources is allowed.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (s) (B0:B8) [11:10:24:975]: Package name extracted from package path: 'sqlncli_x64.msi'
MSI (s) (B0:B8) [11:10:24:975]: Package to be registered: 'sqlncli_x64.msi'
MSI (s) (B0:B8) [11:10:24:975]: Note: 1: 2262 2: AdminProperties 3: -2147287038
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'DisableMsi' is 1
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (B0:B8) [11:10:24:975]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (B0:B8) [11:10:24:975]: Product installation will be elevated because user is admin and product is being installed per-machine.
MSI (s) (B0:B8) [11:10:24:975]: Running product '{79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}' with elevated privileges: Product is assigned.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding REBOOT property. Its value is 'ReallySuppress'.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding SKIPPENDINGREBOOTCHECK property. Its value is '1'.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'e:\5f721d0eded6a0e16f42cd4f39b3b5ab'.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '5292'.
MSI (s) (B0:B8) [11:10:24:975]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '5a3042a9256d414fa343d44b187c14b6'.
MSI (s) (B0:B8) [11:10:24:975]: RESTART MANAGER: Session opened.
MSI (s) (B0:B8) [11:10:24:975]: TRANSFORMS property is now:
MSI (s) (B0:B8) [11:10:24:975]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '301'.
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\Favorites
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\Documents
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Recent
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\SendTo
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Templates
MSI (s) (B0:B8) [11:10:24:975]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Local
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\Pictures
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (s) (B0:B8) [11:10:24:991]: SHELL32::SHGetFolderPath returned: C:\Users\michaels\Desktop
MSI (s) (B0:B8) [11:10:25:006]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (s) (B0:B8) [11:10:25:006]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
MSI (s) (B0:B8) [11:10:25:006]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows User'.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\455419.msi'.
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi'.
MSI (s) (B0:B8) [11:10:25:006]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (s) (B0:B8) [11:10:25:006]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2205 2:  3: PatchPackage
MSI (s) (B0:B8) [11:10:25:006]: Machine policy value 'DisableRollback' is 0
MSI (s) (B0:B8) [11:10:25:006]: User policy value 'DisableRollback' is 0
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
=== Logging started: 6/20/2011  11:10:25 ===
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: INSTALL
Action start 11:10:25: INSTALL.
MSI (s) (B0:B8) [11:10:25:006]: Running ExecuteSequence
MSI (s) (B0:B8) [11:10:25:006]: Doing action: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\'.
Action start 11:10:25: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E
Action ended 11:10:25: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\SysWOW64\'.
Action start 11:10:25: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E
Action ended 11:10:25: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\'.
Action start 11:10:25: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E
Action ended 11:10:25: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\SysWOW64\'.
Action start 11:10:25: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 11:10:25: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\'.
Action start 11:10:25: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 11:10:25: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\SysWOW64\'.
Action start 11:10:25: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 11:10:25: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\'.
Action start 11:10:25: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 11:10:25: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E'
MSI (s) (B0:B8) [11:10:25:006]: PROPERTY CHANGE: Adding SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\Windows\SysWOW64\'.
Action start 11:10:25: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: LaunchConditions
Action ended 11:10:25: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
Action start 11:10:25: LaunchConditions.
MSI (s) (B0:B8) [11:10:25:006]: Doing action: FindRelatedProducts
Action ended 11:10:25: LaunchConditions. Return value 1.
Action start 11:10:25: FindRelatedProducts.
MSI (s) (B0:B8) [11:10:25:006]: Skipping action: CA_SetRefCountUpgradeFlag (condition is false)
MSI (s) (B0:B8) [11:10:25:006]: Skipping action: CA_SetRefCountNewerFoundFlag (condition is false)
MSI (s) (B0:B8) [11:10:25:006]: Doing action: IsPendingRebootKey
Action ended 11:10:25: FindRelatedProducts. Return value 1.
MSI (s) (B0:B8) [11:10:25:006]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'IsPendingRebootKey'
MSI (s) (B0:58) [11:10:25:022]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI54B7.tmp, Entrypoint: IsPendingReboot
MSI (s) (B0:98) [11:10:25:022]: Generating random cookie.
MSI (s) (B0:98) [11:10:25:037]: Created Custom Action Server with PID 3976 (0xF88).
MSI (s) (B0:E8) [11:10:25:069]: Running as a service.
MSI (s) (B0:E8) [11:10:25:069]: Custom Action Server rejected - Wrong Context
MSI (s) (B0:98) [11:10:25:069]: CA Server Process has terminated.
Action start 11:10:25: IsPendingRebootKey.
MSI (s) (B0:B8) [11:10:25:069]: Note: 1: 1719
CustomAction IsPendingRebootKey returned actual error code 1601 (note this may not be 100% accurate if translation happened inside sandbox)
MSI (s) (B0:B8) [11:10:25:069]: Product: Microsoft SQL Server Native Client -- Error 1719. The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.

Error 1719. The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
Action ended 11:10:25: IsPendingRebootKey. Return value 3.
Action ended 11:10:25: INSTALL. Return value 3.
Property(S): VersionDatabase = 301
Property(S): ProductCode = {79BF7CB8-1E09-489F-9547-DB3EE8EA3F16}
Property(S): ProductLanguage = 1033
Property(S): UpgradeCode = {6EC3319D-84BE-4C32-AA91-7D6057CF05A5}
Property(S): Manufacturer = Microsoft Corporation
Property(S): MsiRestartManagerSessionKey = 5a3042a9256d414fa343d44b187c14b6
Property(S): ProductVersion = 9.00.4035.00
Property(S): Privileged = 1
Property(S): AppGuidRegKey = Redist_Uninstall_RegKey
Property(S): ARPPRODUCTICON = ARPIco
Property(S): PIDTemplate = 53934<````=````=````=````=`````>@@@@@
Property(S): PROMPTROLLBACKCOST = P
Property(S): DiskPrompt = [1]
Property(S): INSTALLLEVEL = 100
Property(S): ALLUSERS = 1
Property(S): InstallMode = Typical
Property(S): ErrorIcon = ErrorIco
Property(S): SuccessIcon = SuccessIco
Property(S): WarningIcon = WarningIco
Property(S): LicenseIcon = LicenseIco
Property(S): SetupIcon = SetupIco
Property(S): CompleteIcon = CompleteIco
Property(S): CustomIcon = CustomIco
Property(S): RepairIcon = RepairIco
Property(S): RemoveIcon = RemoveIco
Property(S): ModifyIcon = ModifyIco
Property(S): NewIcon = NewIco
Property(S): UpIcon = UpIco
Property(S): DialogBanner = BannerBmp
Property(S): WelcomeBmp = WelcomeBmp
Property(S): ApplicationUsers = AllUsers
Property(S): Details = 0
Property(S): AgreeToLicense = No
Property(S): _IsMaintenance = Reinstall
Property(S): _IsMaintenance2 = Modify
Property(S): ReinstallModeText = omus
Property(S): Display_IsBitmapDlg = 1
Property(S): Interrupted = 0
Property(S): ProductID = none
Property(S): ISENABLEDWUSFINISHDIALOG = 1
Property(S): SQLServerText1 = 0
Property(S): SQLServerVersionText1 = 0
Property(S): SQLServerVersionText2 = 0
Property(S): SQLServerVersionText3 = 0
Property(S): CA_ERRORCOUNT = 0
Property(S): CA_WARNINGCOUNT = 0
Property(S): CA_SUCCESSCOUNT = 0
Property(S): UI_SHOWCOPYRIGHT = yes
Property(S): ShowUserRegistrationDlg = 1
Property(S): SecureCustomProperties = NEWERFOUND.B605A41A_C8F0_417F_B2C4_2121F148D2DC;OLDERFOUND.B605A41A_C8F0_417F_B2C4_2121F148D2DC;OLDERFOUND2.B605A41A_C8F0_417F_B2C4_2121F148D2DC
Property(S): ErrorDialog = ErrorDlg
Property(S): DefaultUIFont = Tahoma8
Property(S): VersionNT = 601
Property(S): ButtonTextStyle = {\ButtonTextStyle}
Property(S): DlgTextStyle = {\DlgTextStyle}
Property(S): DlgTextStyleB = {\DlgTextStyleB}
Property(S): DlgTitleStyle = {\DlgTitleStyle}
Property(S): DlgTitleStyleB = {\DlgTitleStyleB}
Property(S): FixedStyle = {\FixedStyle}
Property(S): USERNAME = Windows User
Property(S): DialogTitleSetup = Setup
Property(S): DialogTitlePatch = Patch
Property(S): DialogTitleUpgrade = Upgrade
Property(S): Text_ArrowLeft = <
Property(S): Text_ArrowRight =  >
Property(S): ButtonText_Next = Next
Property(S): ButtonText_Next_Hot = &Next
Property(S): ButtonText_Cancel = Cancel
Property(S): ButtonText_Cancel_Hot = &Cancel
Property(S): ButtonText_Back = Back
Property(S): ButtonText_Back_Hot = &Back
Property(S): ButtonText_Finish = Finish
Property(S): ButtonText_Finish_Hot = &Finish
Property(S): ButtonText_Update = Update >
Property(S): ButtonText_Update_Hot = &Update >
Property(S): ButtonText_Ok = OK
Property(S): ButtonText_Ok_Hot = &OK
Property(S): ButtonText_Yes = Yes
Property(S): ButtonText_Yes_Hot = &Yes
Property(S): ButtonText_No = No
Property(S): ButtonText_No_Hot = &No
Property(S): ButtonText_Abort = Abort
Property(S): ButtonText_Abort_Hot = &Abort
Property(S): ButtonText_Ignore = Ignore
Property(S): ButtonText_Ignore_Hot = &Ignore
Property(S): ButtonText_Retry = Retry
Property(S): ButtonText_Retry_Hot = &Retry
Property(S): ButtonText_Change = Change...
Property(S): ButtonText_Change_Hot = &Change...
Property(S): ButtonText_Help = Help
Property(S): ButtonText_Help_Hot = &Help
Property(S): ButtonText_Install = Install
Property(S): ButtonText_Install_Hot = &Install
Property(S): ButtonText_Exit = Exit
Property(S): ButtonText_Exit_Hot = &Exit
Property(S): ButtonText_Remove = Remove
Property(S): ButtonText_Remove_Hot = &Remove
Property(S): ButtonText_Space = Space
Property(S): ButtonText_Space_Hot = &Space
Property(S): ButtonText_Browse = Browse...
Property(S): ButtonText_Browse_Hot = Bro&wse...
Property(S): ButtonText_DiskCost = Disk Cost...
Property(S): ButtonText_DiskCost_Hot = &Disk Cost...
Property(S): LabelText_Status = Status
Property(S): LabelText_SerialNumber = &Serial Number:
Property(S): LabelText_UserName = &User Name
Property(S): LabelText_PersonName = Name
Property(S): LabelText_PersonOrganization = Company
Property(S): LabelText_InstallTo = Install to
Property(S): LabelText_Modify = &Modify
Property(S): LabelText_Repair = Re&pair
Property(S): LabelText_Remove = &Remove
Property(S): LabelText_Complete = &Complete
Property(S): LabelText_Custom = Cu&stom
Property(S): LabelText_NetworkLocation = &Network location:
Property(S): LabelText_LookIn = &Look in
Property(S): LabelText_FolderName = &Folder name
Property(S): LabelText_FeatureDescription = Feature description
Property(S): LabelText_CopyFilesFrom = Copy Files from
Property(S): LabelText_InstallFor = Install this application for
Property(S): HeadText_AdminWelcome = Welcome to the Install Wizard for
Property(S): HeadText_InstallWelcome = Welcome to the Install Wizard for
Property(S): HeadText_WelcomePatch = Welcome to the Patch for
Property(S): HeadText_SetupWelcome = Welcome to the
Property(S): HeadText_SetupWelcome2 =  Setup
Property(S): HeadText_ResumeInstall = Resuming the Install Wizard for
Property(S): HeadText_SetupInterrupted =  Setup Interrupted
Property(S): HeadText_LicenseAgreement = License Agreement
Property(S): HeadText_FeatureSelection = Feature Selection
Property(S): HeadText_NetworkLocation = Network Location
Property(S): HeadText_ProgramMaintenance = Program Maintenance
Property(S): HeadText_DiskSpaceRequirements = Disk Space Requirements
Property(S): HeadText_FilesInUse = Files in Use
Property(S): HeadText_DatabaseFolder = Database Folder
Property(S): HeadText_RegistrationInformation = Registration Information
Property(S): HeadText_CompletingSetup = Completing the
Property(S): HeadText_CompletingSetup2 =  Setup
Property(S): HeadText_InstallingProduct = Installing
Property(S): HeadText_UninstallProduct = Uninstalling
Property(S): HeadText_ChangeDestinationFolder = Change Current Destination Folder
Property(S): HeadText_ReadyInstall = Ready to Install the Program
Property(S): HeadText_ReadyRepair = Ready to Repair the Program
Property(S): HeadText_ReadyModify = Ready to Modify the Program
Property(S): HeadText_RemoveProgram = Remove the Program
Property(S): HeadText_OutOfDiskSpace = Out of Disk Space
Property(S): DescText_FilesInUse = Some files that need to be updated are currently in use.
Property(S): DescText_RegistrationInformation = The following information will personalize your installation.
Property(S): DescText_ServerImage = Setup will create a server image of
Property(S): DescText_ServerImage2 =  at a specified network location. To continue, click Next.
Property(S): DescText_InstallModifyRemove = Setup helps you install, modify or remove
Property(S): DescText_InstallModifyRemove2 = . To continue, click Next.
Property(S): DescText_PatchInstall = The Install Wizard will install the Patch for
Property(S): DescText_PatchInstall2 =  on your computer. To continue, click Update.
Property(S): DescText_WizardComplete = The Install Wizard will complete the installation of
Property(S): DescText_WizardComplete2 =  on your computer. To continue, click Next.
Property(S): DescText_CompleteSuspended = The Install Wizard will complete the suspended installation of
Property(S): DescText_CompleteSuspended2 =  on your computer. To continue, click Next.
Property(S): DescText_SuccessfulInstallation = Setup has installed
Property(S): DescText_SuccessfulInstallation2 =  successfully. Click Finish to exit.
Property(S): DescText_SuccessfulRemove = Setup has removed
Property(S): DescText_SuccessfulRemove2 =  successfully. Click Finish to exit.
Property(S): DescText_SuccessfulRepair = Setup has repaired
Property(S): DescText_SuccessfulRepair2 =  successfully. Click Finish to exit.
Property(S): DescText_SuccessfulModify = Setup has modified
Property(S): DescText_SuccessfulModify2 =  successfully. Click Finish to exit.
Property(S): DescText_SetupInterrupted = Setup was interrupted before
Property(S): DescText_SetupInterrupted2 =  could be completely installed.
Property(S): DescText_PreparingSetup =  Setup is preparing the Install Wizard which will guide you through the program setup process. Please wait.
Property(S): DescText_FeatureSelection = Select the program features you want installed.
Property(S): DescText_ProgramFeaturesInstall = The program features you selected are being installed.
Property(S): DescText_ProgramFeaturesUninstall = The program features you selected are being uninstalled.
Property(S): DescText_ReadLicense = Please read the following license agreement carefully.
Property(S): DescText_SpecifyNetworkLocation = Specify a network location for the server image of the product.
Property(S): DescText_BrowseDestination = Browse to the destination folder.
Property(S): DescText_ModifyRepairRemove = Repair or remove the program.
Property(S): DescText_ReadyInstallation = Setup is ready to begin installation.
Property(S): DescText_ChosenRemove = You have chosen to remove the program from your system.
Property(S): DescText_DiskSpaceRequirements = The disk space required for the installation of the selected features.
Property(S): DescText_DiskExceedsAvailable = Disk space required for the installation exceeds available disk space.
Property(S): Text_ReRunSetup = Your system has not been modified. To complete installation at another time, please run setup again.
Property(S): Text_FinishExit = Click Finish to exit Setup.
Property(S): Text_RestoreState = You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.
Property(S): Text_RestoreClick = Click Restore or Continue Later to exit Setup.
Property(S): Text_InstallWait = Please wait while the Install Wizard installs
Property(S): Text_InstallWait2 = . This may take several minutes.
Property(S): Text_UninstallWaitText = Please wait while the Install Wizard uninstalls
Property(S): Text_UninstallWaitText2 = . This may take several minutes.
Property(S): Text_UninstallWait = Please wait while the Install Wizard uninstalls
Property(S): Text_UninstallWait2 = . This may take several minutes.
Property(S): Text_ProgressDone = Progress done
Property(S): Text_Copyright = WARNING: This program is protected by copyright law and international treaties.
Property(S): Text_BeginInstallation = Click Install to begin the installation.
Property(S): Text_ReviewChange = If you want to review or change any of your installation settings, click Back. Click Cancel to exit Setup.
Property(S): Text_AlterFeatureInstall = Click an icon in the following list to change how a feature is installed.
Property(S): Text_ConfirmExit = The installation is not yet complete. Are you sure you want to exit?
Property(S): Text_FeatureSelectionDescription = This feature requires 4 MB on your hard drive.
Property(S): Text_EnterNetworkLocation = Enter the network location or click Change to browse to a location. Click Install to create a server image of
Property(S): Text_EnterNetworkLocation2 =  at the specified network location or click Cancel to exit Setup.
Property(S): Text_SelectDifferentDrive = The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives.
Property(S): Text_RepairInstallationErrors = Repair installation errors in the program. This option fixes missing or corrupt files, shortcuts, and registry entries.
Property(S): Text_RemoveFromComputer = Remove
Property(S): Text_RemoveFromComputer2 =  from your computer.
Property(S): Text_UsingFilesRetry = The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue.
Property(S): Text_ClickRemove = Click Remove to remove
Property(S): Text_ClickRemove2 =  from your computer. After removal, this program will no longer be available for use.
Property(S): Text_ReviewChangeBack = If you want to review or change any settings, click Back.
Property(S): Text_AllUsers = &Anyone who uses this computer (all users)
Property(S): Text_OnlyMe = Only for &me ([USERNAME])
Property(S): Text_NotAcceptTerms = I &do not accept the terms in the license agreement
Property(S): Text_AcceptTerms = I &accept the terms in the license agreement
Property(S): Text_RegInfoNameAndOrg = Enter your name and the name of your organization in the fields below.
Property(S): Text_RegInfoOrg = Enter the name of your organization in the field below.
Property(S): Upgrade_Confirmation = A lower version of this product has been detected on your system. Would you like to upgrade your existing installation?
Property(S): AdminMessage = Setup requires user to be in the administrator group in order to continue the installation process. Setup is aborting as the current user is not in the administrator group.
Property(S): SupportedOSMessage = Installation of this product failed because it is not supported on this operating system. For information on supported configurations, see the product documentation.
Property(S): ShortCutText = Microsoft SQL Server Native Client
Property(S): DialogTitle = Microsoft SQL Server Native Client Setup
Property(S): ProductName = Microsoft SQL Server Native Client
Property(S): ShortName = Microsoft SQL Server Native Client
Property(S): SupportedProcTypeMessage = This Microsoft SQL Server Native Client package is not supported on the current processor type.
Property(S): DialogPatchTitle = Microsoft SQL Server Native Client Patch
Property(S): EnableDotNetCheck = 0
Property(S): EnableFeatureDlg = 1
Property(S): EnableBrowseButton = 0
Property(S): CustomPath = SNAC
Property(S): AdminUser = 1
Property(S): ARPHELPLINK = http://go.microsoft.com/fwlink/?LinkId=52153
Property(S): System64Folder = C:\Windows\system32\
Property(S): ProgramFilesFolder = C:\Program Files (x86)\
Property(S): ProgramFiles64Folder = C:\Program Files\
Property(S): CLIENTPROCESSID = 5292
Property(S): CLIENTUILEVEL = 3
Property(S): CURRENTDIRECTORY = e:\5f721d0eded6a0e16f42cd4f39b3b5ab
Property(S): SKIPPENDINGREBOOTCHECK = 1
Property(S): REBOOT = ReallySuppress
Property(S): PackagecodeChanging = 1
Property(S): ProductState = -1
Property(S): PackageCode = {770BC9BC-CC72-4D98-BB90-326FF1BBBC3A}
Property(S): MsiLogFileLocation = C:\Program Files (x86)\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0003_SERVER1_SNAC.log
Property(S): SNACMainModId.335C9CFA_7DD6_41E0_8E4F_44D6ED5B1A54 = E6F94A18_225A_4D91_8129_DB62CA84F36B
Property(S): SystemFolder = C:\Windows\SysWOW64\
Property(S): WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\
Property(S): SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
Property(S): WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\
Property(S): SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
Property(S): WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E = C:\Windows\
Property(S): SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
Property(S): WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E = C:\Windows\
Property(S): SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
Property(S): VersionMsi = 5.00
Property(S): VersionNT64 = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 2
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): TerminalServer = 1
Property(S): TempFolder = C:\Users\michaels\AppData\Local\Temp\
Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Users\michaels\AppData\Roaming\
Property(S): FavoritesFolder = C:\Users\michaels\Favorites\
Property(S): NetHoodFolder = C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Users\michaels\Documents\
Property(S): PrintHoodFolder = C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Users\michaels\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Users\michaels\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Users\michaels\AppData\Local\
Property(S): MyPicturesFolder = C:\Users\michaels\Pictures\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): MsiAMD64 = 6
Property(S): Msix64 = 6
Property(S): Intel = 6
Property(S): PhysicalMemory = 6103
Property(S): VirtualMemory = 10596
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = michaels
Property(S): UserSID = S-1-5-21-3101447390-3557650490-231330124-1120
Property(S): UserLanguageID = 1033
Property(S): ComputerName = SERVER1
Property(S): SystemLanguageID = 1033
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 19
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 11:10:25
Property(S): Date = 6/20/2011
Property(S): MsiNetAssemblySupport = 2.0.50727.4927
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): DATABASE = C:\Windows\Installer\455419.msi
Property(S): OriginalDatabase = e:\5f721d0eded6a0e16f42cd4f39b3b5ab\setup\sqlncli_x64.msi
Property(S): UILevel = 2
Property(S): ACTION = INSTALL
MSI (s) (B0:B8) [11:10:25:115]: Windows Installer installed the product. Product Name: Microsoft SQL Server Native Client. Product Version: 9.00.4035.00. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 1603.

MSI (s) (B0:B8) [11:10:25:115]: Deferring clean up of packages/files, if any exist
MSI (s) (B0:B8) [11:10:25:115]: MainEngineThread is returning 1603
MSI (s) (B0:D8) [11:10:25:115]: RESTART MANAGER: Session closed.
MSI (s) (B0:D8) [11:10:25:115]: No System Restore sequence number for this installation.
=== Logging stopped: 6/20/2011  11:10:25 ===
MSI (s) (B0:D8) [11:10:25:115]: User policy value 'DisableRollback' is 0
MSI (s) (B0:D8) [11:10:25:115]: Machine policy value 'DisableRollback' is 0
MSI (s) (B0:D8) [11:10:25:115]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (B0:D8) [11:10:25:115]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (B0:D8) [11:10:25:115]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (B0:D8) [11:10:25:115]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
MSI (s) (B0:D8) [11:10:25:115]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
MSI (s) (B0:D8) [11:10:25:115]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (s) (B0:D8) [11:10:25:115]: Restoring environment variables
MSI (s) (B0:D8) [11:10:25:115]: Destroying RemoteAPI object.
MSI (s) (B0:98) [11:10:25:115]: Custom Action Manager thread ending.
MSI (c) (AC:44) [11:10:25:115]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (AC:44) [11:10:25:115]: MainEngineThread is returning 1603
=== Verbose logging stopped: 6/20/2011  11:10:25 ===

Can anyone assist me please? Thanks in advance for your assistance.

Regards,

Michael

 


Reply:

Hi Michael

Based on the log, it looks like Windows Installer service might have been corrupted possibly, Please read this article http://blogs.msdn.com/b/astebner/archive/2006/07/20/673408.aspx on how to fix Windows Installer service.


Arunraj Chandrasekaran, MCTS, Author: SQLXpertise.com
If you found this post useful, Please "Mark as Answer" or "Vote as Helpful"

------------------------------------
Reply:

Hi Arunraj ,

Thanks for the post... unfortunately it did not help... same error message. If you or anyone else has a another solution, please let me know.

Regards,

Michael


------------------------------------
Reply:
I think that you need to activate your copy of Server 2008 r2.

------------------------------------

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...