473,396 Members | 2,011 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,396 software developers and data experts.

Problem beim Löschen eines Reg Keys

Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen
das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel nicht
vorhanden ist"
RegistryPermission regPerm;
RegistryPermission perm = new RegistryPermission (
RegistryPermissionAccess.AllAccess,
@"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
perm.Demand ();
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkEncryptionKey = null;
rkEncryptionKey = rkHKLM.OpenSubKey
(@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
rkEncryptionKey.DeleteSubKey (@"License");
rkEncryptionKey.Close ();

Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?

VD.
GR. Andreas
Dec 4 '05 #1
8 2996
Hi,

This is an english group , most of the people (me included) knows no german

"Andi Reisenhofer" <so***@aon.at> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen
das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
nicht
vorhanden ist"
RegistryPermission regPerm;
RegistryPermission perm = new RegistryPermission (
RegistryPermissionAccess.AllAccess,
@"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
perm.Demand ();
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkEncryptionKey = null;
rkEncryptionKey = rkHKLM.OpenSubKey
(@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
rkEncryptionKey.DeleteSubKey (@"License");
rkEncryptionKey.Close ();

Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?

VD.
GR. Andreas

Dec 5 '05 #2

"Andi Reisenhofer" <so***@aon.at> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen
das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
nicht
vorhanden ist"
RegistryPermission regPerm;
RegistryPermission perm = new RegistryPermission (
RegistryPermissionAccess.AllAccess,
@"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
perm.Demand ();
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkEncryptionKey = null;
rkEncryptionKey = rkHKLM.OpenSubKey
(@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
rkEncryptionKey.DeleteSubKey (@"License");
rkEncryptionKey.Close ();

Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?

VD.
GR. Andreas


The reason that you can't delete the sub-key is that it's 'protected',
that's also the reason why you can't open it with regedit. Guess that the
key has an ACL that gets set by the program to protect it from deletion,
what are you trying to achieve here?

Willy.
Willy.
Dec 5 '05 #3
Hallo Willy Denoyette,

Sorry I posted it to the wrong newsgroup.
Nevertheless I will try explain in English.
First thanks for your lines, you nearly found out what the situation I have.

The Winhound Anti Spyware Software from www.winhound.com got installed on 2
of my
PC's like a Trojan or Back Door. I told the Winhound company but they told
that it is not their
practice to do so.
Fact is that their Setup (WinHoundInstaller.exe) is creating a Key in the
HKEY_LOCAL_MACHINE\SOFTWARE registry path.

I deinstalled with their Uninstall.exe Programm but it didn't remove
the HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key.
Also their WinHound.exe is not removed from the HKLM\...\Run Key.
What makes me crazy is that if I try to remove the
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key than
it is not possible because
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or deleted. My trial with the C# Code also didn't work, so
I try to get some informations from
the C# gurus to accomplish this. It is a shame that a company doesn't create
a good Uninstall.exe Programm
and now waste my time (days). I wrote that company many mails with all
details be no answer.

You can try yourself if you want. You only have to donwload
http://download.winhound.com/WinHoundInstaller.exe
and than install and uninstall it and than you will see that the registry
key:
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or removed.

Thanks f. any hints, to get "winhound" out of my registry.
Regards Andreas

"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im Newsbeitrag
news:uC**************@TK2MSFTNGP11.phx.gbl...

"Andi Reisenhofer" <so***@aon.at> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
nicht
vorhanden ist"
RegistryPermission regPerm;
RegistryPermission perm = new RegistryPermission (
RegistryPermissionAccess.AllAccess,
@"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
perm.Demand ();
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkEncryptionKey = null;
rkEncryptionKey = rkHKLM.OpenSubKey
(@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
rkEncryptionKey.DeleteSubKey (@"License");
rkEncryptionKey.Close ();

Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?

VD.
GR. Andreas


The reason that you can't delete the sub-key is that it's 'protected',
that's also the reason why you can't open it with regedit. Guess that the
key has an ACL that gets set by the program to protect it from deletion,
what are you trying to achieve here?

Willy.
Willy.

Dec 5 '05 #4
Did you try to remove the WinHound.exe from HKLM\..\Run? Note that you
should kill the WinHound process (if it's running) before doing so. Once
this is done you could try to remove the key.
If this all fails again, you will have to kill the process and run regedit
in a SYSTEM logon session.

Willy.
"Andi Reisenhofer" <so***@aon.at> wrote in message
news:OH****************@TK2MSFTNGP10.phx.gbl...
Hallo Willy Denoyette,

Sorry I posted it to the wrong newsgroup.
Nevertheless I will try explain in English.
First thanks for your lines, you nearly found out what the situation I
have.

The Winhound Anti Spyware Software from www.winhound.com got installed on
2
of my
PC's like a Trojan or Back Door. I told the Winhound company but they told
that it is not their
practice to do so.
Fact is that their Setup (WinHoundInstaller.exe) is creating a Key in the
HKEY_LOCAL_MACHINE\SOFTWARE registry path.

I deinstalled with their Uninstall.exe Programm but it didn't remove
the HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key.
Also their WinHound.exe is not removed from the HKLM\...\Run Key.
What makes me crazy is that if I try to remove the
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key than
it is not possible because
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or deleted. My trial with the C# Code also didn't work,
so
I try to get some informations from
the C# gurus to accomplish this. It is a shame that a company doesn't
create
a good Uninstall.exe Programm
and now waste my time (days). I wrote that company many mails with all
details be no answer.

You can try yourself if you want. You only have to donwload
http://download.winhound.com/WinHoundInstaller.exe
and than install and uninstall it and than you will see that the registry
key:
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or removed.

Thanks f. any hints, to get "winhound" out of my registry.
Regards Andreas

"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im
Newsbeitrag
news:uC**************@TK2MSFTNGP11.phx.gbl...

"Andi Reisenhofer" <so***@aon.at> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
> Hallo,
>
> Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen > das sich immer wieder bei mir
> "einnistet".
>
> Der Schlüssel
> HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
> lässt
> sich
> mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
> Schlüssels" License kann nicht geöffnet werden.
>
> Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
> bekomme ich
> "Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
> nicht
> vorhanden ist"
>
>
> RegistryPermission regPerm;
> RegistryPermission perm = new RegistryPermission (
> RegistryPermissionAccess.AllAccess,
> @"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
> perm.Demand ();
> RegistryKey rkHKLM = Registry.LocalMachine;
> RegistryKey rkEncryptionKey = null;
> rkEncryptionKey = rkHKLM.OpenSubKey
> (@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
> rkEncryptionKey.DeleteSubKey (@"License");
> rkEncryptionKey.Close ();
>
> Unlogisch da der Key mit regedit gesehen wird.
> Ist das möglich das der zu löschende Key gesperrt wird oder korrupt
> ist?
>
> VD.
> GR. Andreas
>
>


The reason that you can't delete the sub-key is that it's 'protected',
that's also the reason why you can't open it with regedit. Guess that the
key has an ACL that gets set by the program to protect it from deletion,
what are you trying to achieve here?

Willy.
Willy.


Dec 5 '05 #5
Hallo Willy,

- Yes I removed WinHound.exe from HKLM\..\Run key
- No process from WinHound is running
- I put a cleanup.bat to
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\RunOnce
with content:
regedit C:\temp\winnhound.reg
winnhound.reg:
REGEDIT4
[-HKEY_LOCAL_MACHINE\Software\WinHound.com]

- I stopped all systemstarts and Systemservices with msconfig.

Nothing helped, no success :((

any ideas left?
Regards Andras
"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im Newsbeitrag
news:Of****************@TK2MSFTNGP09.phx.gbl...
Did you try to remove the WinHound.exe from HKLM\..\Run? Note that you
should kill the WinHound process (if it's running) before doing so. Once
this is done you could try to remove the key.
If this all fails again, you will have to kill the process and run regedit
in a SYSTEM logon session.

Willy.
"Andi Reisenhofer" <so***@aon.at> wrote in message
news:OH****************@TK2MSFTNGP10.phx.gbl...
Hallo Willy Denoyette,

Sorry I posted it to the wrong newsgroup.
Nevertheless I will try explain in English.
First thanks for your lines, you nearly found out what the situation I
have.

The Winhound Anti Spyware Software from www.winhound.com got installed on
2
of my
PC's like a Trojan or Back Door. I told the Winhound company but they
told
that it is not their
practice to do so.
Fact is that their Setup (WinHoundInstaller.exe) is creating a Key in the
HKEY_LOCAL_MACHINE\SOFTWARE registry path.

I deinstalled with their Uninstall.exe Programm but it didn't remove
the HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key.
Also their WinHound.exe is not removed from the HKLM\...\Run Key.
What makes me crazy is that if I try to remove the
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com key than
it is not possible because
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or deleted. My trial with the C# Code also didn't work,
so
I try to get some informations from
the C# gurus to accomplish this. It is a shame that a company doesn't
create
a good Uninstall.exe Programm
and now waste my time (days). I wrote that company many mails with all
details be no answer.

You can try yourself if you want. You only have to donwload
http://download.winhound.com/WinHoundInstaller.exe
and than install and uninstall it and than you will see that the registry
key:
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License
cannot be opened or removed.

Thanks f. any hints, to get "winhound" out of my registry.
Regards Andreas

"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im
Newsbeitrag
news:uC**************@TK2MSFTNGP11.phx.gbl...

Dec 5 '05 #6
Hallo Willy,

After fideling around serveral hours I found the reason why the key

was not deleteable. It had NULL's on the end.
With the VERY GOOD tool from Mark Russinovich
http://www.sysinternals.com/Utilities/RegDelNull.html
I could delete the key with the following command:

RegDelNull hklm\SOFTWARE -s

RegDelNull v1.00 - Delete Registry keys with embedded Nulls
Copyright (C) 2005 Mark Russinovich
Sysinternals - www.sysinternals.com

Null-embedded key (Nulls are replaced by '*'):

HKLM\SOFTWARE\WinHound.com\WinHound\WinHound\Licen se*

Delete? (y/n) y
Scan complete.

I am so happy now, to found
Reg. Andreas
"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im Newsbeitrag
news:Of****************@TK2MSFTNGP09.phx.gbl...
Did you try to remove the WinHound.exe from HKLM\..\Run? Note that you
should kill the WinHound process (if it's running) before doing so. Once
this is done you could try to remove the key.
If this all fails again, you will have to kill the process and run regedit
in a SYSTEM logon session.

Willy.

Dec 5 '05 #7
Hello Andi,
Hallo Willy,

After fideling around serveral hours I found the reason why the key

was not deleteable. It had NULL's on the end.
With the VERY GOOD tool from Mark Russinovich
http://www.sysinternals.com/Utilities/RegDelNull.html
I could delete the key with the following command:
RegDelNull hklm\SOFTWARE -s

RegDelNull v1.00 - Delete Registry keys with embedded Nulls
Copyright (C) 2005 Mark Russinovich
Sysinternals - www.sysinternals.com
Null-embedded key (Nulls are replaced by '*'):

HKLM\SOFTWARE\WinHound.com\WinHound\WinHound\Licen se*

Delete? (y/n) y
Scan complete.
I am so happy now, to found
Reg. Andreas
"Willy Denoyette [MVP]" <wi*************@telenet.be> schrieb im
Newsbeitrag news:Of****************@TK2MSFTNGP09.phx.gbl...
Did you try to remove the WinHound.exe from HKLM\..\Run? Note that
you
should kill the WinHound process (if it's running) before doing so.
Once
this is done you could try to remove the key.
If this all fails again, you will have to kill the process and run
regedit
in a SYSTEM logon session.
Willy.

Great, this trick is often used by malware.

Willy.
Dec 5 '05 #8
translation using altavista babel fish (http://babelfish.altavista.com/tr):
Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu entfernen das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
nicht
vorhanden ist"
Hello, I try to remove a key from a program (www.winhound.com) again and
again with me "einnistet". The key
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License cannot be
opened with regdit also. Error message "error when opening the key" License
cannot be opened. If I try to delete with the following program code the key
get I "a Unterschluessel can am not deleted, there the Unterschluessel is
missing"
after the code:
Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?
The key illogically there is seen with regedit. Is that possible the key
which can be deleted closed becomes or is corrupt?

Ab. :)
http://joehacker.blogspot.com

"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:O3****************@TK2MSFTNGP10.phx.gbl...
Hi,

This is an english group , most of the people (me included) knows no german
"Andi Reisenhofer" <so***@aon.at> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Hallo,

Ich versuche einen Key von einem Programm (www.winhound.com) zu

entfernen das sich immer wieder bei mir
"einnistet".

Der Schlüssel
HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHound\ WinHound\License lässt
sich
mit regdit auch nicht öffnen. Fehlermeldung "Fehler beim Öffnen des
Schlüssels" License kann nicht geöffnet werden.

Wenn ich mit folgendem Programmcode den Schlüssel zu löschen versuche
bekomme ich
"Ein Unterschlüssel kann nicht gelöscht werden, da der Unterschlüssel
nicht
vorhanden ist"
RegistryPermission regPerm;
RegistryPermission perm = new RegistryPermission (
RegistryPermissionAccess.AllAccess,
@"HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com\WinHoun d\WinHound\License");
perm.Demand ();
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkEncryptionKey = null;
rkEncryptionKey = rkHKLM.OpenSubKey
(@"SOFTWARE\WinHound.com\WinHound\WinHound",true );
rkEncryptionKey.DeleteSubKey (@"License");
rkEncryptionKey.Close ();

Unlogisch da der Key mit regedit gesehen wird.
Ist das möglich das der zu löschende Key gesperrt wird oder korrupt ist?

VD.
GR. Andreas


Dec 6 '05 #9

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

Similar topics

0
by: Melanie | last post by:
Hallo Ich habe folgendes Problem: In einem JPanel zeige ich mehrere Textfelder und RadioButtons an. Mit den RadioButtons sorge ich dafür, dass das Textfeld welches ausgewählt wurde nicht...
0
by: Holger Joukl | last post by:
Hi, what version of python are you using? I got the same error when invoking a customized, 2-year-old version of distutils with python 2.3.3 (instead of 1.5.2, as before). Reason is code in...
0
by: Holger Joukl | last post by:
Hi there, I have severe problems running python 1.5.2 (yes I know, but this is a productive environment; cannot switch to py 2.3.3 until later this year...) on several multi-processor sun...
2
by: Holger Joukl | last post by:
Hi, migrating from good old python 1.5.2 to python 2.3, I have a problem running a program that features some threads which execute calls to an extension module. Problem is that all of a sudden,...
1
by: Andreas Schmitt | last post by:
Hi, ich programmiere gerade zum Spaß und zum Lernen von C++ eine recht simple Simulation eines Fussballspiels. Die Logik arbeitet momentan so: = Konstanter Schnittwert Tore/Spiel jede...
1
by: Thomas | last post by:
Hi, I implemented a composite pattern which should be serializable to xml. After spending some time in the newsgroups, i finally managed serializing, even with utf-8 instead of utf-16, which...
0
by: Matthias Jürgens | last post by:
Ich habe eine Datenbank die vorher komplett in Access war. Jetzt habe ich die Tabellen von Access auf SQL-Server portiert und in die Access-Datenbank als Frontend verknüpft. Jetzt habe ich...
2
by: juergen.tippmann | last post by:
Hallo, kann mir jemand sagen ob ich beim Öffnen eines Formulars in Access2003, abfragen kann ob z.B. die Strg-Taste gedrückt ist oder nicht?
8
by: Wernfried Schwenkner | last post by:
I've run a site with beta 1.0 without any problems. Since I've installed Beta 2.0 I can't even run a simple empty page. Creating an empty site, adding a Default.aspx form. This runs on the...
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.