Results 1 to 4 of 4

Thread: Remove the registration of network password in Windows XP Pro

  1. #1
    Join Date
    Jan 2006
    Posts
    142

    Remove the registration of network password in Windows XP Pro

    Hello,
    I'm connected to the windows file sharing on the server of our network with a login and password and I checked the "remember password".
    My problem is that I would like to connect via file sharing server with a login and password and since I saved the password that is currently impossible.
    What is the method to remove the storage of passwords for the MS?
    Thank you in advance
    Fear is only in your mind, Dont Let It Overcome You.

  2. #2
    Join Date
    Jan 2006
    Posts
    4,221

    Re: Remove the registration of network password in Windows XP Pro

    Control Panel Setup
    User Accounts
    Click on the account you want to delete or passwords saved networks
    In the window that appears, on the left is a small embedded window "Tasks" with the Manage my network passwords
    thats it

  3. #3
    Join Date
    Jan 2006
    Posts
    142

    Re: Remove the registration of network password in Windows XP Pro

    thank you for the info
    Additional small thing ... It is possible to script the deletion of IDs networks
    Thank you again!
    Fear is only in your mind, Dont Let It Overcome You.

  4. #4
    Join Date
    Jan 2006
    Posts
    605

    Re: Remove the registration of network password in Windows XP Pro

    I have written a VBScript for you to do this. Please use with caution as it WILL delete the folder if its found (providing you have permission to)

    For the moment i commented out the line that does the actual delete. Run it to see
    A: It works
    B: You get the results you expect

    Read the descriptions in the code i put to help you
    Hope it helps

    Copy the whole code to a notepad and save as a .vbs file run from a command window CScript scriptname.vbs

    PS don't forget to Uncomment the delete line when you are ready to delete.
    Code:
     
    ' Deletes the profile of a user found on
    ' each computer in the file list. We Get
    ' asked which user to look for and 
    ' deletes it if found. To run this script
    ' Open command window and type:
    ' CScript scriptname.vbs
     
    	Dim objFSO, wshShell
    	Dim strList, strUser, strProfilePath,strFile
    	Dim strComputerList, arrComputers, strComputer
    	Dim colFolder, oFolder
    	Const ForReading = 1
     
    ' #### Change these 2 to suit your needs #### '
    ' Profile Path
    	strProfilePath = "\C$\Documents and Settings\"
    ' File with list of computers in it (1 per line)
    	strFile = "C:\ComputerList.txt"
     
     ' #### This bit will ask you which user to look for #### '
     	strUser = InputBox("Enter the User to delete the profile of", "UserName")
     		If strUser = "" Then
     			WScript.Quit
     		End If
     
    	Set objFSO = CreateObject("Scripting.FileSystemObject")
    	Set objList = objFSO.OpenTextFile(strFile, ForReading, False)
    		
    		strComputerList = objList.ReadAll
    		objList.Close
     
    ' #### We will now go through each computer from the list #### '
    	arrComputers = Split(strComputerList, vbNewLine)
     
    	For Each strComputer In arrComputers
    		If strComputer = "" Then
    			WScript.Quit
    		End If 
     
    		Set colFolder = objFSO.GetFolder("\\" & strComputer & strProfilePath)
    			For Each oFolder In colFolder.SubFolders
    				WScript.Echo oFolder.name
    				If LCase(oFolder.Name) = LCase(strUser) Then
    					WScript.Echo "MATCH"
    					'objFSO.DeleteFolder("\\" & strComputer & strProfilePath & strUser)
    					WScript.Quit
    				End If 
    			Next
    	Next
    WScript.Echo "Completed!"

Similar Threads

  1. How to remove welcome wizard and Registration in openoffice
    By Muthukumar in forum Windows Software
    Replies: 6
    Last Post: 16-02-2012, 07:41 AM
  2. Network password and windows 7
    By sagerpl in forum Networking & Security
    Replies: 1
    Last Post: 07-06-2011, 12:54 AM
  3. Windows XP forgets network password
    By Zowie in forum Operating Systems
    Replies: 4
    Last Post: 15-02-2011, 02:09 PM
  4. Replies: 4
    Last Post: 31-08-2008, 07:10 PM
  5. Replies: 18
    Last Post: 08-06-2008, 05:30 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,020,618.37917 seconds with 16 queries