Tagged Questions
13
votes
4answers
832 views
How to restart my application if Windows Update forces a reboot?
At the office, when I leave for the night I very rarely log off or reboot. I simply lock my workstation and go home, leaving all my development tools exactly how I left them.
If Windows-Update rolls ...
5
votes
1answer
108 views
Download Windows Updates Using C#
Is there any way to Download updates of windows programmatic using c#.
(Then we can manage it)
4
votes
0answers
142 views
Updates using WSUS instead of Microsoft Windows website
I want to search wsus or a local folder for the updates instead of microsoft. Any ideas? Here is what I have but this only connects to Windows Updates using the internet.
UPDATE
I FOUND OUT THE ...
3
votes
6answers
602 views
How to you determine when Windows is done rebooting?
I am using the Windows Update API to update a bunch of VM's. With Windows Update comes the inevitable reboots. Can anyone think of a way that I could tell from a remote server if the windows box has ...
2
votes
1answer
120 views
Using WUA remotely using C#
I am trying to connect to a remote machine and determine if there are any Windows Updates to be installed using C# and WUApiLib. It seems pretty straightforward, however I cannot find out how to ...
2
votes
2answers
137 views
windows update appliction
I wrote here an application that uses the WUA COM interfaces (IUpdateSearcher, IUpdate etc.). I use this application to scan for available updates, download the updates and install them. Everything ...
1
vote
2answers
1k views
Querying WMI class Win32_QuickFixEngineering returns mucho weirdo timestamps (C#)
Class documentation here. The InstalledOn property is supposed to have a timestamp of (well, duh) when the fix was installed. But the doc doesn't say what's the format. I get something unintelligible, ...
1
vote
5answers
2k views
Use C# to interact with Windows Update
Is there any API for writing a C# program that could interface with Windows update, and use it to selectively install certain updates?
I'm thinking somewhere along the lines of storing a list in a ...
0
votes
1answer
68 views
Fetching a KB hotfix in C#
I'm trying to fetch a certain hotfix (KB976477) from a C# program. Using the WUApi (Windows Update Agent Api) is not working so far because the IUpdateSearcher.Search method only provides Software and ...
0
votes
0answers
58 views
MBSA, WUApi: Getting appliable updates
Anybody familiar with MBSA or WUApi? Due to limitations in our distribution system, I am tasked to look for a way to get a list of updates that are applicable for specific applications.
What I have ...
0
votes
1answer
141 views
Using WUAPI to quietly install updates in CSharp
I'm trying to create a program that will handle updates silently. I am using the wuapilib.dll, which comes with a number of classes (c#). My first revision of the program was as follows (ignore typo ...
0
votes
0answers
98 views
Getting OS Updates using WUApi from a remote machine
I am having trouble getting OS updates from a remote machine. I saw the MS documentation from here (http://msdn.microsoft.com/en-us/library/aa387288%28v=VS.85%29.aspx) but have not found any sample ...
0
votes
1answer
356 views
Windows Update API - Report Client Status
I have an application that uses WSUS client API to download and install updates. I have been trying to figure out how to report the client's status to the server once installs are complete, without ...