Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am writing the following code to get windows updates installed. But I am getting error "The service cannot be started, either. (Exception from HRESULT: 0x80070422)" in GetTotalHistoryCount(). this code worked well in windows 7 but now gving this error in xp

this is my code
C#
var updateSession = new UpdateSession();
var updateSearcher = updateSession.CreateUpdateSearcher();
var count = updateSearcher.GetTotalHistoryCount();
var history = updateSearcher.QueryHistory(0, count);
for (int i = 0; i < count; ++i)
    ls.Add(history[i].Title);

thanks
swati
Posted
Updated 8-Nov-12 5:43am
v2

1 solution

dfgdsgf
C++
sdfgs
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900