How to remove a computer from my working group under XP and Windows 7?

We have recently implemented a network composed of our three computers (2 XP) Home Office and 1 Windows 7 to share files and printers.

However, we found its malfunction and could not share what we expect.  One of the reasons, we can see it, could be one of the computers have been infected.

So, we try to remove this computer from the working group.

However, no matter how hard I searched on Internet, there is no way to remove the infected computer's existing working group.

There that experts can help us?

Thank you very much!

Hello

You cannot remove a computer from a working group, but you can change the name of the working group.

http://support.Microsoft.com/kb/295017

http://www.SevenForums.com/tutorials/51711-workgroup-name-view-change.html

But that will not necessarily mean that they are not accessible by other computers on the network, or it will necessarily make the other less likely to be infected through this PC computers.

The only way to "withdrawal" of a computer on a network is to unplug the network cable or remove the name of the wireless network.

If you are concerned about a possible infection, you must get the malware to day and scan for malware protection.

However, I suspect it's more likley your problems are caused by the lack of knowledge in the topic network different Windows operating system. This can help...

http://Windows.Microsoft.com/en-us/Windows7/networking-home-computers-running-different-versions-of-Windows

If you are having specific problems post back with details and someone will almost certainly try to help.

Tricky

Tags: Windows

Similar Questions

  • How to remove my computer from the Adobe Digital Editions program?

    I allowed my computer with the incorrect Adobe ID, but now I can't authorize my computer with the correct ID of Adobe. It won't let me remove the bad account, or it is for me to allow the correct account.

    CTRL-SHIFT-D (Cmd-Shift-D Mac) should establish a dialogue exercise.

  • How can I remove my computer from vGrabber and back on Google Chrome?

    A friend sent me a video that requires the vGrabber download to see. Now, I can't get rid of vGrabber. Incidentally, immediately after the vGrabber download my browser from Google Chrome for Internet Explorer and I can't change it back. How can I remove my computer from vGrabber and back on Google Chrome?

    In fact, I'd rather Google Google Chrome. I use XP Home Edition

    original title: lose vGrabber

    Hi MRI,
    You have a question? It's the poster of the question to the United Nations mark the answer, so the community can see it didn't work and continue to provide answers. If you encounter a problem, please start your own question with all your information so that the community can better help you.
    Eddie B.

  • How to remove all information from the computer so I can sell it?

    How to remove all information from the computer so I can sell it?

    Hello

    You will want to format the hard disk:

    1. you can use DBAN - http://www.dban.org/

    or

    2. you can follow this tutorial to clean install up to the step where you format the disk, in which you would then STOP (because you just want to get rid of the files on the hard drive, do not install Windows) - http://www.sevenforums.com/tutorials/1649-clean-install-windows-7-a.html

    Kind regards

    Patrick

  • cannot open a session - tried to remove the computer from a domain

    XP pro SP3-

    My computer was an area where I logged on using a card chip.  I remove the computer from the domain and use it at home.  In the network dialog box, I changed from one domain to a home network and restarted by fashion.  Now, it's starting to use CTRL-ALT-DELETE, then a username and password that I did not and I do not have the opportunity to specify a field or use the smart card.  Blanks do not work.

    I want to undo what I've done and join the field, I can use the smart card and unlock the computer.  Any ideas how I can do this?  I can not use safe mode or get to the command prompt.

    Thanks JW

    I went hat in hand for people to support admin area and after going through a long list of their combinations of name/pw super secret they have finally found one that worked and were able to reconnect to the field.

    I intend to set up a new user with local newspaper on but all first I have to work around security policies when they me reconnected to the field.  I plan to permanently remove this computer from their LAN, who has started all this in the first place.  Pain in the neck for policy all number, disables USB (kill all external drives, including the optics I) etc.  I can fix it everything that it (still) was not aware of this bump on the road when I tried to switch on my home network.

  • How to remove the file from the client machine

    Hi all
    We use the database: oracle: 10 g,.
    and forms/States 10g (developer suite 10g - 10.1.2.2).

    can someone help me how to remove the file from the client computer in the location specified using webutil or everything
    (I tried with webutil_host & client_host but this only works for the application server)
    Thank you.

    Hello

    Checkbox not tested.

    PROCEDURE OPEN_FILE (V_ID_DOC IN VARCHAR2)
    IS
    
    --------------------------------------------------------------------------------
    -- Open a stored document --
    
    --------------------------------------------------------------------------------
    LC$Cmd Varchar2(1280) ;
    LC$Nom Varchar2(1000) ;
    LC$Fic Varchar2(1280);
    LC$Path Varchar2(1280);
    LC$Sep Varchar2(1) ;
    LN$But Pls_Integer ;
    LB$Ok Boolean ;
    -- Current Process ID --
    ret WEBUTIL_HOST.PROCESS_ID ;
    V_FICHERO VARCHAR2(500);
    COMILLA VARCHAR2(4) := '''';
    BOTON NUMBER;
    MODO VARCHAR2(50);
    URL VARCHAR2(500);
    
    Begin
    
    V_FICHERO := V_ID_DOC;
    
    LC$Sep := '\';--WEBUTIL_FILE.Get_File_Separator ; -- 10g
    LC$Nom := V_FICHERO;--Substr( V_FICHERO, instr( V_FICHERO, LC$Sep, -1 ) + 1, 100 ) ;
    --LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
    LC$Path := 'C:';
    LC$Fic := LC$Path || LC$Sep || LC$Nom ;
    
    If Not webutil_file_transfer.DB_To_Client
    (
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    
    Raise Form_trigger_Failure ;
    
    End if ;
    
    LC$Cmd := 'cmd /c start "" /MAX /WAIT "' || LC$Fic || '"' ;
    Ret := WEBUTIL_HOST.blocking( LC$Cmd ) ;
    LN$But := WEBUTIL_HOST.Get_return_Code( Ret ) ;
    If LN$But 0 Then
    Set_Alert_Property( 'ALER_STOP_1', TITLE, 'Host() command' ) ;
    Set_Alert_Property( 'ALER_STOP_1', ALERT_MESSAGE_TEXT, 'Host() command error : ' || To_Char( LN$But ) ) ;
    LN$But := Show_Alert( 'ALER_STOP_1' ) ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Raise Form_Trigger_Failure ;
    End if ;
    
    If Not webutil_file_transfer.Client_To_DB
    (
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    NULL;
    Else
    Commit ;
    End if ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    
    Exception
    When Form_Trigger_Failure Then
    Raise ;
    End ;
    

    Sarah

  • How to remove an item from my desk top which I no longer use

    How to remove an item from my counter top who no longer need. I have windows vista home premium and internet exployer 9

    Hi elsie,

    Right-click on the shortcut, the program, or folder, then click on remove.  That's all.  If this does not work, try to use one of the following free products to remove the file/folder/shortcut: Unlocker to: http://www.softpedia.com/get/System/System-Miscellaneous/Unlocker.shtml or file Assassin http://www.malwarebytes.org/fileassassin.php these programs often work when the functions of removing normal do not work correctly.

    If it still does not work, try a clean boot (Vista and W7) http://support.microsoft.com/kb/929135. If you delete the file, then the problem was that there was a conflict or it cannot be deleted because it is run.  Once don't forget to reset your system back to the normal state, as described in the procedures. If the problem occurs in clean mode then just restore the system to normal and reboot - this solution will not work. If you are using XP, see http://support.microsoft.com/kb/310353 and http://support.microsoft.com/kb/316434.

    If this does not work, then start safe mode and try to delete the component of office from there (assuming it to be displayed).  If this does not work, you will need to log in as an administrator and try to delete the item in Windows Explorer in the C:\Users\\Desktop folder for this user and perhaps also any user originally installed the software (perhaps the administrator account).  It may be necessary to do both clean or Safe Mode boot mode (and using the extraordinary remove programs mentioned above as well).

    I believe one of the above will work (and hope the answer is one of the simplest at the top rather than the more complicated to those who follow).

    If you want to remove the underlying program that applies an executable or shortcut icon, go to Control Panel / programs and features.  Find the program is no longer you want, right-click on it and select delete or uninstall or delete (all that appears) and that should also remove the program and probably/possibly the icon at the same time.  Be careful here if - because if you upgrade the program, remove the program related to the icon or folder, if he got somehow placed on the desktop instead of Program Files (unless completely separate program updated as shown in programs and features - so you see both an old and a new version) could cause problems with the new program.  In essence, don't forget when you delete what you really want to delete and it removes this and nothing else.  I recommend the creation of a system restore point before you do.

    I hope this helps.

    Good luck!

  • Windows cannot remove your computer from homegroup

    Resolved/Homegroup remove homegroup

    Hello

    Method 1:
    Temporarily disable firewall and antivirus on each machine.

    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-Firewall-on-or-off
    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks

    Method 2:
    You can also follow these steps and check:
    a. go to the control panel and access the system and security.
    b. go to administrative tools and then double-click Services.
    Locate and stop following 2 services, after that try to leave the homegroup. You can also set the startup type of the services disabled.
    HomeGroup listener
    HomeGroup provider

    See also:

    I would season you refer the link and check How can I remove a computer from a homegroup.

    Homegroup: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/HomeGroup-frequently-asked-questions

    Leave a homegroup

    http://Windows.Microsoft.com/en-us/Windows7/leave-a-HomeGroup

    I also suggest you to see link and check.

    http://msdn.Microsoft.com/en-us/library/dd433181 (vs.85) .aspx

  • Remove the computer from the account

    Is it possible to remove a computer from my account that I no longer use

    Please see Learn how to enable or disable Adobe apps.

    In the case of any problems, you can view Adobe to solve the problems of activation and deactivation of the questions

    Concerning

    Hervé Khare

  • How to remove the message from the status bar in panelCollecion?

    Hi all


    Worm 11.1.1.3.0 JDev


    How to remove the message from the status bar in panelCollecion?

    I am getting "Hidden columns" in the status bar... I want to delete that?

    Give suggestion...

    Concerning
    GOPs

    The GOPs wrote:
    Thanks for the reply, I tried the featuresOff attribute... but it is not working...

    As expected after the documents, since you are using JDeveloper 11.1.1.3.0 and not 11.1.1.4.0.

    concerning
    Jan

  • How to remove a Word from the default dictionary of firefox?

    How to remove a Word from the default dictionary of firefox?
    If I wanted to remove the word 'dog' or 'and' for example

    There may be a range of reasons for wanting to do this, including the deletion of the words you use rarely as similar to other common spellings used words for example. "minute" and "Minuet", delete the words that you find personally offensive, or removing words that, because of linguistic or cultural background, you would not consider words at all.

    Note that I'm not asking how to remove my 'dictionary' words, words that I added myself.

    Hello

    I talked to a few people and I think I'm able to help you with this.

    There are two dictionary files, the default that comes with your version of Firefox and personal 'custom' that you create yourself with phrases and words.

    If you want to change the personal;

    1. Copy Subject: support and paste into the address bar.
    2. Next to the profile folder, click the marked File Show
    3. Find the file persdict.dat. Rename a text file, open, modify, re save it as persdict.dat and replace.

    If you want to change the default dictionary, it could be more of a problem and a lot more technique to do. I would recommend that you look at the problem differently and consider filtering of pages based on inappropriate content using Add-ons such as ProCon Latte Content Filter.

    I hope this helps, but if not, please come back here and we can look at another solution for you.

  • How to remove a folder from photo?

    How to remove a folder from photo?

    Google translation

    How to remove a file photo?

    Show the sidebar (menu display == > display the sidebar) and right-click on the folder and select Delete folder

    LN

  • How to remove "Skype available" from the top of the notification page?

    How to remove "Skype available" from the top of the notification page - useless promotion!

    Hello!

    Disable the Skype status under Notification settings in Skype.

    All best
    Siim

  • How to remove a library from iMovie 10?

    How to remove a library from iMovie 10? It seems impossible from iMovie. Do I have to remove the library in the Finder?

    Yes just remove you it with the Finder.

    Geoff.

  • How to remove a city from the weather app in IOS 9.2.1?

    I have an IPhone6S that I bought recently and am running IOS 9.2.1. I can't understand how to remove a city from the weather app. I tried to go to settings, where there is a list of all the applications on my phone except the weather app, so no help there. Any body can help me with this?

    You must tap on the small set of lines in the lower right to get list view. Then you can find the city that you want to delete, drag to the left to see the button Delete.

    See you soon,.

    GB

Maybe you are looking for