473,395 Members | 1,541 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Windows Update

Hey all,

Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking

Thanks
--
/Jonny
Nov 16 '05 #1
14 3462
Jonny <Jo***@discussions.microsoft.com> wrote:
Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking


You're right, this isn't the proper place - I suggest you ask in the
proper place instead. microsoft.public.windowsupdate is the first place
I'd look...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #2
Thanks.

I was looking to see if it is possible to create an application that could
be used as a patch management tool. similar to Netchk, but would have a more
coprehensive tool/option set.

/J

"Jon Skeet [C# MVP]" wrote:
Jonny <Jo***@discussions.microsoft.com> wrote:
Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking


You're right, this isn't the proper place - I suggest you ask in the
proper place instead. microsoft.public.windowsupdate is the first place
I'd look...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 16 '05 #3
Jonny,

I don't know this for sure, but I would guess that when you make a
request to see what is at windows update, you either send a list of items
you have installed (not directly, but perhaps an encoded representation),
and it sends back what is new or what needs to be replaced. Either that, or
what WU does is send back the whole list of what is available since the last
time you checked, and compares it locally with what you have on the machine,
giving you a list of what is not installed. This way, you don't violate
privacy concerns (as you never tell MS what you have, just what you want).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
Hey all,

Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking

Thanks
--
/Jonny

Nov 16 '05 #4
Hi Nicholas,

Thanks, that was what i assumed was going on. The part that I really would
be interested in is how the service can 'tell' what patches are releative to
each system... I assume it compiles a list of the installed Applications and
the installed Updates and then check against its own database to see what
patches are relevent. I guess what i really need is what parameters need to
be checked to ensure only the correct patches are installed.

The application I would like to write will allow users to scan remote
machiens and be prompted with the list of relevant patches that are then
selected and installed. A full record of each patch and the patch history for
each machine would be kept.

Thanks Again,

/J

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I don't know this for sure, but I would guess that when you make a
request to see what is at windows update, you either send a list of items
you have installed (not directly, but perhaps an encoded representation),
and it sends back what is new or what needs to be replaced. Either that, or
what WU does is send back the whole list of what is available since the last
time you checked, and compares it locally with what you have on the machine,
giving you a list of what is not installed. This way, you don't violate
privacy concerns (as you never tell MS what you have, just what you want).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
Hey all,

Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking

Thanks
--
/Jonny


Nov 16 '05 #5
There is a log file with the installed patches in the system root named
"Windows Update.log".
Then the ActiveX that's installing the updates is checking against the
server with the list they have published as updates.
I'm not sure how it works with SUS - probably a GPO running - just guessing
:).
You should ask in microsoft.public.windowsupdate for details.

If you're interested in writing an app with auto update, you should check
out the Application Updater App Block - it's available at
http://msdn.microsoft.com/library/de...ml/updater.asp

Cheers,
Branimir
--
Branimir Giurov
MCSD.NET, MCDBA
www.sofiadev.org

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:ef**************@TK2MSFTNGP11.phx.gbl...
Jonny,

I don't know this for sure, but I would guess that when you make a
request to see what is at windows update, you either send a list of items
you have installed (not directly, but perhaps an encoded representation),
and it sends back what is new or what needs to be replaced. Either that, or what WU does is send back the whole list of what is available since the last time you checked, and compares it locally with what you have on the machine, giving you a list of what is not installed. This way, you don't violate
privacy concerns (as you never tell MS what you have, just what you want).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
Hey all,

Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking

Thanks
--
/Jonny


Nov 16 '05 #6
Jonny,

If you are writing a .NET app that you want to be auto-updated, you
might want to check on ClickOnce, as it will eliminate the need for you to
do all of this yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:1D**********************************@microsof t.com...
Hi Nicholas,

Thanks, that was what i assumed was going on. The part that I really would
be interested in is how the service can 'tell' what patches are releative to each system... I assume it compiles a list of the installed Applications and the installed Updates and then check against its own database to see what
patches are relevent. I guess what i really need is what parameters need to be checked to ensure only the correct patches are installed.

The application I would like to write will allow users to scan remote
machiens and be prompted with the list of relevant patches that are then
selected and installed. A full record of each patch and the patch history for each machine would be kept.

Thanks Again,

/J

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I don't know this for sure, but I would guess that when you make a
request to see what is at windows update, you either send a list of items you have installed (not directly, but perhaps an encoded representation), and it sends back what is new or what needs to be replaced. Either that, or what WU does is send back the whole list of what is available since the last time you checked, and compares it locally with what you have on the machine, giving you a list of what is not installed. This way, you don't violate
privacy concerns (as you never tell MS what you have, just what you want).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
Hey all,

Just a query, How does WUS (Windows Update Service) work? How does it
identify what patches to install, and what are not valid patches for
OS/Software Installed??

I know this isn't the proper place for this one, but i'm just checking

Thanks
--
/Jonny


Nov 16 '05 #7
I want to write an application that will allow an network admin to see and
control what patches are on their network.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

If you are writing a .NET app that you want to be auto-updated, you
might want to check on ClickOnce, as it will eliminate the need for you to
do all of this yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:1D**********************************@microsof t.com...
Hi Nicholas,

Thanks, that was what i assumed was going on. The part that I really would
be interested in is how the service can 'tell' what patches are releative

to
each system... I assume it compiles a list of the installed Applications

and
the installed Updates and then check against its own database to see what
patches are relevent. I guess what i really need is what parameters need

to
be checked to ensure only the correct patches are installed.

The application I would like to write will allow users to scan remote
machiens and be prompted with the list of relevant patches that are then
selected and installed. A full record of each patch and the patch history

for
each machine would be kept.

Thanks Again,

/J

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I don't know this for sure, but I would guess that when you make a
request to see what is at windows update, you either send a list of items you have installed (not directly, but perhaps an encoded representation), and it sends back what is new or what needs to be replaced. Either that, or what WU does is send back the whole list of what is available since the last time you checked, and compares it locally with what you have on the machine, giving you a list of what is not installed. This way, you don't violate
privacy concerns (as you never tell MS what you have, just what you want).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
> Hey all,
>
> Just a query, How does WUS (Windows Update Service) work? How does it
> identify what patches to install, and what are not valid patches for
> OS/Software Installed??
>
> I know this isn't the proper place for this one, but i'm just checking
>
> Thanks
> --
> /Jonny


Nov 16 '05 #8
Jonny,

I would look into SMS then. It already does this for windows machines,
and you wouldn't have to maintain it yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:55**********************************@microsof t.com...
I want to write an application that will allow an network admin to see and
control what patches are on their network.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

If you are writing a .NET app that you want to be auto-updated, you
might want to check on ClickOnce, as it will eliminate the need for you to do all of this yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:1D**********************************@microsof t.com...
Hi Nicholas,

Thanks, that was what i assumed was going on. The part that I really would be interested in is how the service can 'tell' what patches are releative
to
each system... I assume it compiles a list of the installed
Applications and
the installed Updates and then check against its own database to see
what patches are relevent. I guess what i really need is what parameters need to
be checked to ensure only the correct patches are installed.

The application I would like to write will allow users to scan remote
machiens and be prompted with the list of relevant patches that are
then selected and installed. A full record of each patch and the patch history for
each machine would be kept.

Thanks Again,

/J

"Nicholas Paldino [.NET/C# MVP]" wrote:

> Jonny,
>
> I don't know this for sure, but I would guess that when you make
a > request to see what is at windows update, you either send a list of

items
> you have installed (not directly, but perhaps an encoded

representation),
> and it sends back what is new or what needs to be replaced. Either

that, or
> what WU does is send back the whole list of what is available since the last
> time you checked, and compares it locally with what you have on the

machine,
> giving you a list of what is not installed. This way, you don't

violate > privacy concerns (as you never tell MS what you have, just what you

want).
>
> Hope this helps.
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> news:D3**********************************@microsof t.com...
> > Hey all,
> >
> > Just a query, How does WUS (Windows Update Service) work? How does it > > identify what patches to install, and what are not valid patches for > > OS/Software Installed??
> >
> > I know this isn't the proper place for this one, but i'm just checking > >
> > Thanks
> > --
> > /Jonny
>
>
>


Nov 16 '05 #9
Thanks, Nicholas.

SMS would not be suitable for this. The main purpose of this app is to
simplify the patch deployment process. There would be no client required, and
all you have to do to install a patch is select a machine or group of
machines and then click 'send'. The patch is silently and automatically
installed.

No further interferance is required, you then have a record of when the
patch was issued, to which machines, from which machine and by who.

Based on this general reports can be created for record keeping and if
needed back-up lists. We already have an application that keeps track of
software (installed) and hardware changes (RAM, CPU, BIOS etc..).

Thanks again,

Jonny

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I would look into SMS then. It already does this for windows machines,
and you wouldn't have to maintain it yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:55**********************************@microsof t.com...
I want to write an application that will allow an network admin to see and
control what patches are on their network.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

If you are writing a .NET app that you want to be auto-updated, you
might want to check on ClickOnce, as it will eliminate the need for you to do all of this yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:1D**********************************@microsof t.com...
> Hi Nicholas,
>
> Thanks, that was what i assumed was going on. The part that I really would > be interested in is how the service can 'tell' what patches are releative to
> each system... I assume it compiles a list of the installed Applications and
> the installed Updates and then check against its own database to see what > patches are relevent. I guess what i really need is what parameters need to
> be checked to ensure only the correct patches are installed.
>
> The application I would like to write will allow users to scan remote
> machiens and be prompted with the list of relevant patches that are then > selected and installed. A full record of each patch and the patch history for
> each machine would be kept.
>
> Thanks Again,
>
> /J
>
>
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
> > Jonny,
> >
> > I don't know this for sure, but I would guess that when you make a > > request to see what is at windows update, you either send a list of
items
> > you have installed (not directly, but perhaps an encoded
representation),
> > and it sends back what is new or what needs to be replaced. Either
that, or
> > what WU does is send back the whole list of what is available since the last
> > time you checked, and compares it locally with what you have on the
machine,
> > giving you a list of what is not installed. This way, you don't violate > > privacy concerns (as you never tell MS what you have, just what you
want).
> >
> > Hope this helps.
> >
> >
> > --
> > - Nicholas Paldino [.NET/C# MVP]
> > - mv*@spam.guard.caspershouse.com
> >
> > "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> > news:D3**********************************@microsof t.com...
> > > Hey all,
> > >
> > > Just a query, How does WUS (Windows Update Service) work? How does it > > > identify what patches to install, and what are not valid patches for > > > OS/Software Installed??
> > >
> > > I know this isn't the proper place for this one, but i'm just checking > > >
> > > Thanks
> > > --
> > > /Jonny
> >
> >
> >


Nov 16 '05 #10
Jonny,

Based on what you said, it appears that SMS would work:

http://www.microsoft.com/smserver/ev...ew/default.asp
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:C9**********************************@microsof t.com...
Thanks, Nicholas.

SMS would not be suitable for this. The main purpose of this app is to
simplify the patch deployment process. There would be no client required, and all you have to do to install a patch is select a machine or group of
machines and then click 'send'. The patch is silently and automatically
installed.

No further interferance is required, you then have a record of when the
patch was issued, to which machines, from which machine and by who.

Based on this general reports can be created for record keeping and if
needed back-up lists. We already have an application that keeps track of
software (installed) and hardware changes (RAM, CPU, BIOS etc..).

Thanks again,

Jonny

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I would look into SMS then. It already does this for windows machines, and you wouldn't have to maintain it yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:55**********************************@microsof t.com...
I want to write an application that will allow an network admin to see and control what patches are on their network.

"Nicholas Paldino [.NET/C# MVP]" wrote:

> Jonny,
>
> If you are writing a .NET app that you want to be auto-updated, you > might want to check on ClickOnce, as it will eliminate the need for you
to
> do all of this yourself.
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> news:1D**********************************@microsof t.com...
> > Hi Nicholas,
> >
> > Thanks, that was what i assumed was going on. The part that I
really would
> > be interested in is how the service can 'tell' what patches are

releative
> to
> > each system... I assume it compiles a list of the installed

Applications
> and
> > the installed Updates and then check against its own database to
see what
> > patches are relevent. I guess what i really need is what
parameters need
> to
> > be checked to ensure only the correct patches are installed.
> >
> > The application I would like to write will allow users to scan
remote > > machiens and be prompted with the list of relevant patches that are then
> > selected and installed. A full record of each patch and the patch

history
> for
> > each machine would be kept.
> >
> > Thanks Again,
> >
> > /J
> >
> >
> >
> > "Nicholas Paldino [.NET/C# MVP]" wrote:
> >
> > > Jonny,
> > >
> > > I don't know this for sure, but I would guess that when you
make a
> > > request to see what is at windows update, you either send a list
of > items
> > > you have installed (not directly, but perhaps an encoded
> representation),
> > > and it sends back what is new or what needs to be replaced. Either > that, or
> > > what WU does is send back the whole list of what is available since the
> last
> > > time you checked, and compares it locally with what you have on
the > machine,
> > > giving you a list of what is not installed. This way, you don't

violate
> > > privacy concerns (as you never tell MS what you have, just what you > want).
> > >
> > > Hope this helps.
> > >
> > >
> > > --
> > > - Nicholas Paldino [.NET/C# MVP]
> > > - mv*@spam.guard.caspershouse.com
> > >
> > > "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> > > news:D3**********************************@microsof t.com...
> > > > Hey all,
> > > >
> > > > Just a query, How does WUS (Windows Update Service) work? How

does it
> > > > identify what patches to install, and what are not valid
patches for
> > > > OS/Software Installed??
> > > >
> > > > I know this isn't the proper place for this one, but i'm just

checking
> > > >
> > > > Thanks
> > > > --
> > > > /Jonny
> > >
> > >
> > >
>
>
>


Nov 16 '05 #11
SMS still requires a client to be setup, we are looking to create a
clientless solution.

/J

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

Based on what you said, it appears that SMS would work:

http://www.microsoft.com/smserver/ev...ew/default.asp
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:C9**********************************@microsof t.com...
Thanks, Nicholas.

SMS would not be suitable for this. The main purpose of this app is to
simplify the patch deployment process. There would be no client required,

and
all you have to do to install a patch is select a machine or group of
machines and then click 'send'. The patch is silently and automatically
installed.

No further interferance is required, you then have a record of when the
patch was issued, to which machines, from which machine and by who.

Based on this general reports can be created for record keeping and if
needed back-up lists. We already have an application that keeps track of
software (installed) and hardware changes (RAM, CPU, BIOS etc..).

Thanks again,

Jonny

"Nicholas Paldino [.NET/C# MVP]" wrote:
Jonny,

I would look into SMS then. It already does this for windows machines, and you wouldn't have to maintain it yourself.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Jonny" <Jo***@discussions.microsoft.com> wrote in message
news:55**********************************@microsof t.com...
> I want to write an application that will allow an network admin to see and > control what patches are on their network.
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
> > Jonny,
> >
> > If you are writing a .NET app that you want to be auto-updated, you > > might want to check on ClickOnce, as it will eliminate the need for you to
> > do all of this yourself.
> >
> >
> > --
> > - Nicholas Paldino [.NET/C# MVP]
> > - mv*@spam.guard.caspershouse.com
> >
> > "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> > news:1D**********************************@microsof t.com...
> > > Hi Nicholas,
> > >
> > > Thanks, that was what i assumed was going on. The part that I really would
> > > be interested in is how the service can 'tell' what patches are
releative
> > to
> > > each system... I assume it compiles a list of the installed
Applications
> > and
> > > the installed Updates and then check against its own database to see what
> > > patches are relevent. I guess what i really need is what parameters need
> > to
> > > be checked to ensure only the correct patches are installed.
> > >
> > > The application I would like to write will allow users to scan remote > > > machiens and be prompted with the list of relevant patches that are then
> > > selected and installed. A full record of each patch and the patch
history
> > for
> > > each machine would be kept.
> > >
> > > Thanks Again,
> > >
> > > /J
> > >
> > >
> > >
> > > "Nicholas Paldino [.NET/C# MVP]" wrote:
> > >
> > > > Jonny,
> > > >
> > > > I don't know this for sure, but I would guess that when you make a
> > > > request to see what is at windows update, you either send a list of > > items
> > > > you have installed (not directly, but perhaps an encoded
> > representation),
> > > > and it sends back what is new or what needs to be replaced. Either > > that, or
> > > > what WU does is send back the whole list of what is available since the
> > last
> > > > time you checked, and compares it locally with what you have on the > > machine,
> > > > giving you a list of what is not installed. This way, you don't
violate
> > > > privacy concerns (as you never tell MS what you have, just what you > > want).
> > > >
> > > > Hope this helps.
> > > >
> > > >
> > > > --
> > > > - Nicholas Paldino [.NET/C# MVP]
> > > > - mv*@spam.guard.caspershouse.com
> > > >
> > > > "Jonny" <Jo***@discussions.microsoft.com> wrote in message
> > > > news:D3**********************************@microsof t.com...
> > > > > Hey all,
> > > > >
> > > > > Just a query, How does WUS (Windows Update Service) work? How does it
> > > > > identify what patches to install, and what are not valid patches for
> > > > > OS/Software Installed??
> > > > >
> > > > > I know this isn't the proper place for this one, but i'm just
checking
> > > > >
> > > > > Thanks
> > > > > --
> > > > > /Jonny
> > > >
> > > >
> > > >
> >
> >
> >


Nov 16 '05 #12
Jonny <Jo***@discussions.microsoft.com> wrote:
SMS still requires a client to be setup, we are looking to create a
clientless solution.


You want a clientless solution which allows you to push data to the
computer... don't you think that might be a bit of a security hole?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #13
Jonny <Jo***@discussions.microsoft.com> wrote:
It's not opening up anything that is not already there.


Well, if it's all that open to start with, I'm not sure what the
problem is - just get your server box to look at the files on the
client and decide what's required.

If you still want to know about how Windows Update works (even though
it has a client), I still recommend you ask on the WU newsgroup.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #14
I already have, I was asking to see if anyone here knew aswell. Its the
specific registry enteries I am looking for. Again what i'm looking to build
is a clientless solution.

Thanks,

/Jonny
"Jon Skeet [C# MVP]" wrote:
Jonny <Jo***@discussions.microsoft.com> wrote:
It's not opening up anything that is not already there.


Well, if it's all that open to start with, I'm not sure what the
problem is - just get your server box to look at the files on the
client and decide what's required.

If you still want to know about how Windows Update works (even though
it has a client), I still recommend you ask on the WU newsgroup.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 16 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Paul Rubin | last post by:
As what must be penance for something or other, I'm needing to release a Python app for use under Windows XP. Please be gentle with me since I'm a Un*x weenie and the only thing I've had much...
3
by: PAUL EDWARDS | last post by:
I have a windows form that is bound to a datatable. In VB6 I could just update the field contents and it would be updated in the database, however if I update the text property of the control from...
1
by: Aurimas Norkevicius | last post by:
How to create application whitch acts like the one on the windows update page. I created windows forms control whitch uses ActiveX object. I want to host that control on the web page. Every...
3
by: Brian Keating EI9FXB | last post by:
Hello again, I've already placed a few posts on this topic. This time i've a simple application that exhibits my problem, I've placed sample solution 8k on my website should anyone be interested...
2
by: robert | last post by:
I've trouble compiling win32all. VC98 and latest SDK installed (otherwise with original SDK it won't even compile). It tells that uuid.lib(cguid_i.obj) : fatal error LNK1103: debug info is...
6
by: Chris Marsh | last post by:
All I have a database table, changes to the data within which I am interested in acting on. The approach that I'm taking is to have the database update a file every time data is updated. This...
60
by: FAQ server | last post by:
----------------------------------------------------------------------- FAQ Topic - How do I prompt a "Save As" dialog for an accepted mime type?...
1
by: =?Utf-8?B?UmljaGFyZCBCaXJk?= | last post by:
Hello, I have an issue with the recent Windows Automated Update disabling my ATI All-In-Wonder video capture card in Windows XP. Then when I reload the ATI software, the card works until the next...
1
by: =?Utf-8?B?TXIuIFQ=?= | last post by:
When I power down for the day, I am presented with a notice that an update is in progress and to not turn off power manually (it will occur automatically). The screen remains and the text flashes,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.