Re-name and add security

I set up my WRT54G without naming my network nor setting up the network to be secure.  It is running perfectly but I would like to rename my network and make it password protected (secure.)  
When I get to the second step it asks me for my password.  I enter “admin” per the manual but it keeps asking me to re-enter, continually asking and asking and asking.
So…
What do I do?
I am connecting to the internet via Comcast using their cable modem then running it to the WRT54G then, wirelessly, to my laptop. 
Thanks,
GVinIL

Hard reset router for 1 minute. Then follow this from a wired computer. Open setup page of router by typing http://192.168.1.1 in browser's address bar, and typing password as "admin" and no user name. Go to wireless tab, here change wireless network name from linksys to any other name. Save the settings. Go to wireless security sub-tab here change security mode to WPA personal etc, and enter you secret key in passphrase/shared key, Save the settings. This secret key will be security key of your wireless network.

Similar Messages

  • Get the pc name with domain name and add it to my properties file using commands

    i want to get the pc name with domain name and add it to my properties file using powershell  .
    sid

    function Get-Environment{
    [environment]|Get-Member -Static -MemberType Properties |
    ForEach-Object{
    if($_.Name -ne 'StackTrace'){
    $v=[scriptblock]::Create("[environment]::$($_.Name)").Invoke()
    New-Object PsCustomObject -Property ([ordered]@{Name=$_.Name;Value=$v[0]})
    Get-Environment
    Get-Environment | Out-String | Out-File environment.txt
    ¯\_(ツ)_/¯

  • How to strip a file name and add it to array

    Hello I am new to labview, and I need to know how to strip a file name and add it to an array. For example, filename joe.csv, then take "joe" and add it to an array with other inputs. A visual depiction will be very helpful
    Attachments:
    channel read and error check R03_v9(JHK).vi ‏101 KB

    What does your code attachment have to do with your question?
    What are "other inputs"?
    I assume you have an array of strings. You can strip the filename using get file extension. You can build an array using build array. Wire the existing array on one input ant the string as a second input.
    LabVIEW Champion . Do more with less code and in less time .

  • How to create a site and add security groups through code: scripts, csom, ... ?

    Hi,
    I'm new to CSOM and are looking for a way to create sites in SharePoint Office365 and especially add user to it with a specific role eg. 'visitor' or 'owner'.
    I use this code to add sites from a csv file, so far so good.
    But now I want to add security groups based on the csv file and assign a role. The security groups allready exists.
    and also how to add a user with a 'owner' role for some sites.
    That would make my life easier :-)
    so thank you in advance!
    # load assemblies
    #[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client")
    #[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime")
    Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"
    Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
    # site collection
    $siteUrl = “https://mysharepoint.com”
    # admin
    $username = "[email protected]"
    $password = Read-Host -Prompt "Enter password" -AsSecureString
    # get clientcontext as object
    $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl)
    # assign credentials to clientcontext object
    $credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
    $ctx.Credentials = $credentials
    # create site from template 'teamsite' => STS#0
    $data = Import-Csv "c:\tools\CSOM\vakwerking_test.csv"
    foreach ($row in $data) {
    $webCreationInformation = New-Object Microsoft.SharePoint.Client.WebCreationInformation
    $webCreationInformation.Url = $row.vakwerkingurl
    $webCreationInformation.Title = $row.vakwerkingnaam
    $webCreationInformation.WebTemplate = "STS#0"
    $webCreationInformation.UseSamePermissionsAsParentSite = $false
    $newWeb = $ctx.Web.Webs.Add($webCreationInformation)
    Write-Host "Title" $newWeb.Title
    #send to sharepoint
    $ctx.Load($newWeb)
    $ctx.ExecuteQuery()

    Hi,
    The command above about creating a group only works for the root site of the site collection, because the scope of the user group is site collection level, these groups
    can be used in all the sites in this site collection.
    With the existing groups in the root site, we can add users into them and grant specific permissions of a specific sub site to these groups.
    Here is a demo about how to assign permission to a group using Client Object Model(though in C#) for your reference:
    http://www.c-sharpcorner.com/UploadFile/54db21/set-permission-to-group-in-sharepoint-2010-programmatically/
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • WRT54G keeps resetting the SSID name and wireless security

    Over the past few weeks, my WRT54G (which I've had for about 18 months) has been resetting itself by changing the SSID name back to the default "linksys" and losing wireless security. I have updated the firmware.
    Any ideas of what is going on here?
    Thanks.

    After a firmware upgrade, you must reset the router to factory defaults, then setup the router again from scratch.  If you saved a router configuration file, DO NOT use it.
    Routers seem to be sensitive to electrical surges and noise. This can cause them to loose their settings. You should keep your router plugged into a high quality surge suppressor with EMI/RFI filtering, such as the Belkin SurgeMaster Gold Series. A surge suppressor alone is not enough because surge suppression does not start until the voltage exceeds 330 volts. Alternatively, most UPS devices have both surge suppression and EMI/RFI filtering.
    If this does not prevent your router from "forgetting" its settings, then the router is malfunctioning, and it should be replaced. A router that forgets its settings is not secure.

  • How to open a file, change the name and write file

    Hi,
    I want to open an existing .dat-file in Labview, manipulate the data and save this data into a new file with a different file name.
    Though the name should be different I would like to use the old name and add something to it.
    (In my programm the .dat file containes the date and time the data was
    measured and I would like to keep this information in the filename.)
    For example: the original title is file1.dat now I want to save it as file1_manipulated.dat
    Is that possible? What is the best and easiest way to do it?
    Thanks a lot
    Chris

    Hi Mike,
    thanks for your help.
    This will give me my path in string format. But to open a new file and then write my data into it, I need a path format (see right side of png)
    Is that right?
    I attached a png, so you hopefully get an idea where this is going. (I know this won´t work yet)
    I open a file and this filename depends on the date and time the data was recorded. So I can´t work with a stringconstant.
    Sorry for this beginner questions - this stuff is absolutly new to me.
    Thanks in advance
    Chris
    Attachments:
    newfile.png ‏11 KB

  • Group Policy won't apply, No mapping between account names and security IDs was done.

    I am using Group Policy Preferences to remove users from the local admin group and add a local admin account.  This GPO is working on 90% of the Win7 machines on the network, but three laptops are not accepting the GPO.  I get the following error:
    Log Name:      Application
    Source:        Group Policy Local Users and Groups
    Date:          6/24/2014 8:49:28 AM
    Event ID:      4098
    Task Category: (2)
    Level:         Warning
    Keywords:      Classic
    User:          SYSTEM
    Computer:      laptop1.internal.com
    Description:
    The user 'Administrators' preference item in the 'Local Admin Policy - Remove Permissions {593ACD77-3663-4023-BEB8-938D83F7862E}' Group Policy object did not apply because it failed with error code '0x80070534 No mapping between account names and security
    IDs was done.' This error was suppressed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Group Policy Local Users and Groups" />
        <EventID Qualifiers="34305">4098</EventID>
        <Level>3</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-24T13:49:28.000000000Z" />
        <EventRecordID>68771</EventRecordID>
        <Channel>Application</Channel>
        <Computer>laptop1.internal.com</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data>user</Data>
        <Data>Administrators</Data>
        <Data>Local Admin Policy - Remove Permissions {593ACD77-3663-4023-BEB8-938D83F7862E}</Data>
        <Data>0x80070534 No mapping between account names and security IDs was done.</Data>
      </EventData>
    </Event>
    I've searched high and low for an answer and nothing I find on-line seems to apply.  I also notice that the option to 'Run as Administrator' does not work.  If I right-click on cmd.exe and select 'run as administrator', the command box opens but
    I am not prompted for credentials and the command box does not have admin rights.  Not sure if this is related or not.
    Any help on this would be greatly appreciated.
    Thanks,
    Joe

    Hi,
    Delete your  remove action from the GPP and push it again, does this issue still occur?
    If it still exists, let’s collect the GPP log for analysis:
    Group policy Preference debug logging policy settings are located under:
    Computer Configuration\Administrative Templates\System\Group Policy
    Click Logging and tracing, select local users and group preference logging and trace.
    Meanwhile, just a similar issue, but it is worth trying:
    A user is added to the wrong group on a client computer that is running Windows 7 or Windows Server 2008 R2
    http://support.microsoft.com/kb/2280515
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Hide password and user name fields in secure form on landing page

    On a landing page I don't want the password or user name displayed in the "secure" form because I think it will keep people from downloading our e-book. It will cause what some refer to as too much friction—visitors will feel that we are asking too much of them just to download an e-book so won't do it.
    I found somewhere where the user name can be populated with the e-mail address, although I couldn't figure out where to put the code to make it work.
    Can the password fields also be auto-populated and hidden so the user can access the secure zone to download the e-book never even knowing that they had a user name and password assigned to them?
    I'd really appreciate some help here and please keep in mind that html and css is where my expertise stops so if there is a java solution I will need the code and how and where to add it.
    Many thanks for your help.
    John

    This article just might point you in the right direction: http://kb.worldsecuresystems.com/853/cpsid_85381.html

  • Safari user name and password for secure sites

    I just sent the following to "Mac OS X Feedback"
    Some secure sites like brokers, e.g., Ameritrade, do no allow autofill in Safari for the user name and password. In fact Safari does not even ask if you want to remember the user name and password just entered for such sites.
    I would like to suggest that something be done for users in such cases:
    1) A dialog box comes up warning that this website does not allow autofill.
    2) A suggestion is made as to what network setting needs to be changed to allow autofill to work
    3) A fix in Safari to take care of this problem
    4) Add something to Safari help
    Does anyone have a work around for this problem?
    Mac Mini (Intel Core Duo)   Mac OS X (10.4.5)  
    Mac Mini (Intel Core Duo)   Mac OS X (10.4.5)  
    Mac Mini (Intel Core Duo)   Mac OS X (10.4.5)  

    Think about what would happen if someone gained access to your Mac, say while you were briefly away from your desk or whatever. They launch Safari, go to the login web page of (for instance) your bank & discover that autofill has helpfully filled in your user name & password so all they have to do to get access to your accounts is click the login button.
    From there, they can transfer all your assets to some other account (theirs!) or invest in FlyByNight.com or whatever -- they can do anything your password lets you do with any password-protected account ... anything!
    Take this a step further. Say you have enabled auto-login to your primary account at startup, or have used an easy-to-guess account password for it. Someone steals your computer ... & with it potential access to all your online accounts with autofill entries.
    Not a pretty picture, is it?

  • Windows 8.1 "No mapping between account names and security IDs was done"

    Hi,
    A week ago, I had a problem with my laptop in which the explorer.exe was restarting itself, when I was trying to fix it, I ran the Sfc/scannow, and it turns out, there were some files broken, then, following the instructions here of how to replace the files
    manually, I get to the Command prompt, and used the command "takeown", but when continued to the "icacls" command, it shows the message:
    "No mapping between account names and security IDs was done. Successfully processed 0 files; Failed processing 1 files."
    I didn't understand what was that, and in the page didn't said anything about that message, I thought that the explorer.exe problem also corrupted this solution, in the end, turns out, it was a third party program which was incorrectly un-installed, I fixed
    and forget about the other problem, until today when I was trying to open Word, when it turns out, that Office was "installing", something that doesn't make sense as I already had it installed and worked on it in the past. But when it's close to
    the finish, it shows, Error 1920, and that I don't have the requeriment grants, later looking on the internet, there was this "solution" (since I couldn't test it, I don't know if it works) saying that I have to user the command "icacls",
    but any time that I try, it says "No mapping between accounts..." therefore, I couldn't solve it that way.
    I don't know what exactly to do, since I don't understand exactly what I broke, hope you can help me, and thanks in advance.

    Hi,
    According to your description, the current problem is your Office program.
    If I am right, there is no any other problem on your system. It narrows down to the Microsoft Office program issue.
    Please run with safe mode to troubleshoot:
    1.Click WIN+R;
    2.Type Winword.exe /safe;
    3.Press Enter.
    If the issue would be gone in safe mode, it indicates the issue is caused by add-ons, please disable the add-ons one by one to clarify which one is culprit.
    If the issue still persists, go Office forum for further help:
    http://social.technet.microsoft.com/Forums/office/en-US/home?category=officeitpro
    Meanwhile, I would like to suggest you use System Restore to roll back to a previous time when everything worked fine.
    How to  refresh, reset, or restore your PC
    http://windows.microsoft.com/en-IN/windows-8/restore-refresh-reset-pc
    If I misunderstanding, please correct me.
    Karen Hu
    TechNet Community Support

  • My friend give me his apple id that i use to download apps and then i change its email add name and address.. now i update my iphone ios then now its asking for i cloud id and password but when i open the email add for that account its been dissabled beca

    my friend give me his apple id that i use to download apps and then i change its email add name and address.. now i update my iphone ios then now its asking for i cloud id and password but when i open the email add for that account its been dissabled because its been long time not used... what can i do to activate my iphone???
    iPhone 4, iOS 7.1

    Call Apple and ask for Account Security.

  • How to add a service account in SQL Server to display the "Service Account Name" and "Display Name"

    Can someone
    help with steps on how to add the following in SQL Server 2012 environments?<o:p></o:p>
    "Service Account Name" and "Display Name"<o:p></o:p>
    Your help will be greatly appreciated.<o:p></o:p>
    leonie6214

    Hello,
    Is the following article what you are looking for?
    http://msdn.microsoft.com/en-us/library/ms345578.aspx
    If not, could you explain a little bit more what you want to accomplish?
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • The wifi has been lost or disconnected on my iPad. It's the iPad 2 and has not been updated yet. It's IOS 6.1.3 .. how do I add a network back onto it? I have typed in the name and chosen each of the securities and still hasn't connected!

    The wifi has been lost or disconnected on my iPad. It's the iPad 2 and has not been updated yet. It's IOS 6.1.3 .. how do I add a network back onto it? I have typed in the name and chosen each of the securities and still hasn't connected!

    Hey there Luba_kalstad,
    It sounds like you are unable to join your network and cannot see it in the Wi-Fi list in Settings. I would try the troubleshooting outlined in this article named:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your Wi-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    And this section down toward the bottom if needed:
    Unable to locate a Wi-Fi network
    Verify that the network is available by tapping Settings > Wi-Fi and choosing from the available networks.Note: It may take a few seconds for the Wi-Fi network name to appear.
    Move closer to your wireless router (access point) and attempt to locate the Wi-Fi network.
    If you do not see the network you would like to join, you may be attempting to connect to a hidden network. Learn how to join a hidden network.
    Supported Wi-Fi configurations vary by iOS device model. Find out which standards your device supports3.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Add Attendees (name AND phone no.) from Address Book to iCal for iPhone use

    Hello scripting gurus and newbs alike.
    I've looked through the forums, but can't find a COMPLETE solution to what I believe should be a fairly straightforward problem. I'll start by asking the question as concisely as I can, then bring in more information about what I have tried, and learned, so far. I'll also outline my broad (mini) project aims at the end, in case anyone is interested.
    * Q: How can I add attendees, from my Address Book, to an iCal event, so that **ALL** the attendee details are included?
    Note: It is VITAL to me that attendees' phone number(s) are available through iCal, not just {display name, email, participation status}. This is because I want MobileMe to synch the event with my iPhone, so I can call attendees directly from iCal. (or at least have iCal open the attendee's Contacts record so I can call from there!)
    WHY DO I THINK IT SHOULD BE POSSIBLE?
    Manually, I can simply dbl-click on the event, click into the attendees field, start typing the attendee name, and hit enter. When I do this, it works. MobileMe synchs it to the iPhone, I open iCal, select the event, tap the attendee, and I'm calling.
    WHAT I'VE TRIED USING APPLESCRIPT
    When I try the following script, I've only managed to set Sheila's name/email/participation status. I can retrieve her phone number from Address Book using the above approach, but unsure how to make it stick in iCal * such that I am able to use it to call directly from iCal on the iPhone *
    ++++++++++++++++++++++
    tell application "Address Book"
    set anAttendee to name of (first person whose name contains "Sheila")
    end tell
    tell application "iCal"
    set newEvent to make new event at end with properties ¬
    {summary:"Meeting Info.", location:"ZIP", description:"More yak", start date:SD, end date:SD + 120 * minutes}
    make new attendee at end of attendees of newEvent with properties {display name:anAttendee}
    end tell
    ++++++++++++++++++++++
    WHERE I'VE LOOKED FOR SIMILAR EXAMPLES
    Thanks to Rob (et al) for providing script examples used to create the above, see here: http://macscripter.net/viewtopic.php?id=5692
    I've also looked at the following article, which makes me think I somehow need to use the PERSON ID in the event attendee list. Unfortunately, I have only managed to retrieve the ID, but had no joy trying to set it.
    http://www.mactech.com/articles/mactech … index.html
    THE PROJECT
    I'm a surveyor, and using dialog(s) to enter relevant info., I'm looking to streamline my preparation for surveys when I make each new appointment.
    My mini-project presently enables me to print survey forms (based on a Pages template) with details relating to the specific property (address/contact name&no./appointment date&time etc.) It also uses the appointment date&time to create the appropriate event in iCal.
    I'm also confident I can add the contact details, such as agent/owner name(s) and phone number(s) in Address Book.
    IF I COULD ONLY ADD THESE AS ATTENDEE(S), AS IF ADDED MANUALLY, I WOULD ALSO BE ABLE TO PHONE THE PROPERTY OWNERS WITH A COURTEOUS REMINDER WHEN I'M ON THE WAY!!
    Can anyone help me achieve this?
    Here's hoping.
    Phil (wiimixer)

    Phil
    Referencing the attendee in iCal will only directly record the properties you mention - because that's how it's designed to work and there's no way around the restriction unless iCal is changed.
    You could set the phone number elsewhere in the iCal event - e.g. notes, location, ... - and that would probably allow you to call from iCal (I don't have an iPhone so I can't be sure), but I am not sure I see the advantage over using the link to iPhone's Address Book which is set up by adding an attendee to the event. This might be because I am being dense, so if this is the case please elaborate.
    EDIT:
    I have read your original post in more detail since I wrote the above. It seems to me that you are saying that when you add the person to the iCal event via AppleScript that you do not get the link to the iPhone's Address Book when you sync via MobileMe. You imply, however, that it does work when you type the name manually. Are these both correct statements?
    Message was edited by: Bernard Harte

  • Is there a way to save an image file as a jpeg and add -web or -print to the file name?

    I am trying to find a way to save my image file as a jpeg and add -web or -print to the existing file name.  This way I can easily see which files are lower resolution for web posting or high resolution for printing.

    Jason,
    I helped somebody do a very similar thing about a week ago.
    The trick is to use the Batch command's ability to construct a file name.
    Tell the batch to append, e.g. "-x" without quotes, to the name of each saved file.
    The batch runs an Action which does a save as JPEG, resize image, add logo, save as JPEG, then close document.
    The output is "<document name>-x.jpg" and "<document name>-x-x.jpeg".
    Then use Windows Explorer to rename "*-x-x.jpg" to "*-print.jpg".
    Then rename "*-x.jpg" to "*-web.jpg".
    See http://forums.adobe.com/thread/1038992?start=32
    The name construction that I used there was just an "x" appended to the document name. Use whatever you like. Also juliew subsequently referred to the method as a "double-batch" run, although it is not. One run of the batch will output two JPEGs for each input document.
    I hope the disagreements in that thread don't cause too much disruption.
    If you want, the Batch command itself can be recorded in another Action which would store the parameters of the batch, then you could run that Action anytime without having to set up the details of the batch each time. It would always output to one specific folder, though.

Maybe you are looking for

  • FYI - Windows 8 and MacBook Pro without Mac OS

    For those that are interested. So have a 3-4 year old macbook pro (15 in) upgraded memory to 4 gig (at the time the place that did it found out I had the defective nvidia chip that apple never told me about-  thanks apple support and extendened warra

  • Car charger ?

    Which is best for my Macbook, an inverter running off my socket in the rear of my Tucson marked 120w or a 12 volt charger. Anything made by Apple ? Bearing in mind we in South Africa get the ar** end of products and our Apple shops are a bit like Dis

  • Lost ability to view edited images alongside original in library

    Hi Not sure what I have done but I am using lightroom 1.4. Previously, any pictures I edited would show as an edited file in the library now all that happens is the original image shows as the edited image. Does that make sense?

  • Take a section out of a picture for web use

    Hello all, First let me thank you for helping me. I am inquiring about some photo editing (web design).  I have a banner on my web build with multiple pictures with a transition between each photo. Now each photo is lets say 1200 x 320 pixels. Isn't

  • Error while uploading logo

    Hi I have a .tif logo. I am trying to upload it using RSTXLDMC (SE78). Bt I am getting an error message "TIFF format error. No Base line TIFF 6.0 FILE" how to solve this issue? Regards.