Firewall Security Set up

I have a Wrt-54G Ver 8 router. I would like to know which blocks need to be checked in the firewall security screen. On my router the filter Multicast and Filter IDENT (Port 113) are checked. Is that all that is needed? Thank you in advance for the help.

For good connectivity uncheck all possible boxes, for secure connection check all possible boxes and default is block anonymous internet requests and filter ident(port 113) checked.

Similar Messages

  • Firewall security setting blocking Outlook Express

    I'm a Verizon DSL customer with a Versalink 7500.
    If I set the Firewall security setting to anything above Minimum, Outlook Express fails with the following:
    The connection to the server has failed.
    Account: 'verizon email', Server: 'pop.verizon.net',
    Protocol: POP3, Port: 995, Secure(SSL): Yes, Socket Error: 10060,
    Error Number: 0x800CCC0E
    Suggestions?

    I didn't notice that the port got changed.  In any event, I changed it back to 995 and got a similar error.
    I rechecked the "This server requires a secure connection (SSL)" box.  
    The "Log on using Secure Password Authentication" box is already unchecked.  
    Here are my OE settings.

  • High (Maximum) Security Setting for FIOS Firewall

    If you set the maximum security setting on the Verizon FIOS Firewall then whenever Verizon decides to swap its IP's you are screwed; the unit will not get the new IP.
    To compensage for the maximum settings I have enable all of the verizon unit (SBU's) to have unrestricted access aka ANY but this does not do the trick.
    Verizon in its ultimate wisdom has not bothered to document anywhere what are the minimum outbould settings should be that would enable this communication in the High (Maximum) security mode.
    Does anyone from Verizon read this stuff?

    So, I'm pretty much convinced now that the problem with low-quality LR previews seems to be mostly isolated to the previews that LR generates after you make edits in the 'Develop' module.
    Upon first import, this image looked fine in the 'Library' & 'Slideshow' modules. After making some edits (color, tone, etc.) in the 'Develop' module, I ended up getting this hideous preview in the 'Library' & 'Slideshow' modules:
    http://web.mac.com/rishisanyal/Lightroom/07-0310_BandingBlocking.jpg
    You people with LCDs will be able to see the JPEG artifacts better than those with CRTs, since LCDs tend to be sharper.
    So, the obvious question is this:
    Does LR, when *re-generating* previews for edited images, ignore the quality-setting for JPEG previews (which I have set to 'high')??

  • SendAndLoad fails in mac .app version - possible security setting problem?

    Hi all,
    I'm having trouble with sendAndLoad working on the .app version of a flash application I made. So far it's only happening on one computer, so it appears to be some sort of security setting.  Here's what's going on:
    I've built a flash application (Flash 9, AS2) that has three versions: an online version, a standalone  .exe version for PC, and a standalone .app version for mac. The user must log in to use the application. Online, this is handled by the portal hosting the flash. In the standalone versions, the user must login through the flash application. Through sendAndLoad, it accesses the same database of user info as the online version. The user just enters username/password, clicks "Submit," and if it finds the combination in the database, it lets the user in. If not, it gives them a message saying they entered the wrong username/password.
    This has tested fine across macs and pcs, but sadly one macbook can't use the .app version. It launches, they put in valid username/password, hit submit and it freezes. All I can tell is that it gets the httpStatus number 0. As you can see below, I've got it set up to spit out an error message if it fails to load (login_lv.onLoad = function(success)), but it doesn't even do that.
    I've put a crossdomain.xml file at the root level of the domain that's set to allow access from any domain.
    This computer can log in successfully to the online version of the course, but the .app version seems to be hampered by some sort of security setting. The problem computer's settings match the settings of a mac I've tested successfully. It has up-to-date Flash 10 and is running Leopard. Here are security settings:
    System Preferences>Security
         General
              Everything is unchecked
         FileVault
              Turned off
         Firewall
              "Allow all incoming connections" is selected
    I'd appreciate any ideas anyone has. I'm far from wise about the ins-and-outs of mac security, so I may be missing something. I'm happy to clarify anything.
    Code is below. It loads login_lv first, then bookmark_lv. It never gets far enough to load bookmark_lv. The severAppUrl is set to a placeholder for confidentiality's sake. The path is defintely right. It works on other computers.
    Thanks!
    Mike
    // create a LoadVars instance
    var login_lv:LoadVars = new LoadVars();
    // add the login variables to pass to the server
    login_lv.userid = "";
    login_lv.pwd = "";
    login_lv.modname = "a";
    // setup login urls
    var serverAppUrl = "http://myurlhere"; //this is just a placeholder. good ol' confidentiality agreements...
    var loginUrl = serverAppUrl+"login.asp";
    // setup bookmark urls
    var bookmarkUrl = serverAppUrl+"menu.asp";
    var bookmark_lv:LoadVars = new LoadVars();
    // add the bookmark variables to pass to the server
    bookmark_lv.studentid = "";
    bookmark_lv.isAdmin = "";
    bookmark_lv.modname = "A";
    _global.modnameTemp = bookmark_lv.modname;
    // setup login function
    function doLogin() {
    login_lv.userid = login_mc.user_txt.value;
    login_lv.pwd = login_mc.pwd_txt.value;
    login_lv.sendAndLoad(loginUrl,login_lv,"GET");
    // send the login info
    login_mc.continueBtn_mc.onRelease = function() {
    this.enabled = false;
    doLogin();
    // variables will appear in the login_lv object
    login_lv.onLoad = function(success) {
    if (success) {
    if (this.studentid == undefined) {
    login_mc._x = 0;
    trace("not logged in");
    debug_mc.body_txt.text+="\nnot logged in";
    if(this.reas == "Please Complete Overview and first 3 Module(s) with at least 70 score."){
    login_mc.loginBad_mc.gotoAndStop("r2");
    login_mc.loginBad_mc._visible = true;
    } else if(this.reas == "Please Complete Overview Module first."){
    login_mc.loginBad_mc.gotoAndStop("r3");
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc._x = 800;
    trace("now logged in");
    debug_mc.body_txt.text+="\nnow logged in";
    trace("studentid: "+this.studentid);
    trace("isAdmin: "+this.isAdmin);
    //track variables for later use
    _global.studentidTemp = this.studentid;
    _global.isAdminTemp = this.isAdmin;
    bookmark_lv.studentid = ""+this.studentid+"";
    bookmark_lv.isAdmin = ""+this.isAdmin+"";
    bookmark_lv.sendAndLoad(bookmarkUrl,bookmark_lv,"GET");
    }else{
    debug_mc.body_txt+="\nlogin load error"
    login_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n login_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;
    //prepare bookmarkXML to receive returned info from bookmark_lv function
    var bookmarkXML = new XML();
    bookmarkXML.ignoreWhite = true;
    bookmarkXML.onLoad = bookmark_lv;
    // variables will appear in the bookmark_lv object
    bookmark_lv.onLoad = function(success) {
    if (success) {
    trace("bookmarked");
    debug_mc.body_txt.text+="\nbookmarked";
    trace("bookmarkXML: "+bookmarkXML);
    var bookmarkNode = mx.xpath.XPathAPI.selectNodeList(this.firstChild, "/bookmark");
    trace("bookmarkNode: "+bookmarkNode);
    var bookmarker:String = unescape(eval("bookmark_lv"));
    trace("bookmarker: "+bookmarker);
    bookmarker = bookmarker.split("<xml>").join("");
    bookmarker = bookmarker.split("<bookmark").join("");
    bookmarker = bookmarker.split("/bookmark>").join("");
    bookmarker = bookmarker.split("</xml>").join("");
    var startIndex:Number;
    var endIndex:Number;
    startIndex = bookmarker.indexOf(">");
    trace(startIndex);
    endIndex = bookmarker.indexOf("<");
    trace(endIndex);
    var bookFinally:String;
    bookFinally = bookmarker.substr(startIndex+1, endIndex-2);
    bookFinally = bookFinally.split("<").join("");
    setBookmarkStr = ""+bookFinally+"";
    trace("string: "+setBookmarkStr);
    _global.newBookmark = bookFinally;
    play();
    }else{
    debug_mc.body_txt+="\nbookmark load error"
    bookmark_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n bookmark_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;

    try using different loadvars instances for your send loadvars and for your receive loadvars.

  • Security setting problems preventing a rerun of a form.

    System Specifications:
    Windows XP Professional with Microsoft Internet Explorer browser.
    Enterprise Manager URL: http://dell9150:1158/em (there is no Domain Name)
    Firewall is set to ON. I have no special software other than Windows XP Pro and
    Internet Explorer handling my security. Oracle10g Database with Forms10g.
    Sequence of Events:
    1. Start OC4J Instance and Oracle Forms Builder
    2. Open a previously debugged form, connect to database and run the form.
    3. A sound like a pop-up blocker occurs and I am at the following address:
    C:\Documents and Settings\Bob\Local Settings\Temp\s31o.htm
    4. When I check the pop-up blocker it is ON. If I turn it OFF
    the next time I come to this window it is set back to ON?
    I can not add this current address to the pop up blocker exceptions;
    however, “dell9150” is listed as an exception.
    5. I also get the message “…Explorer has restricted this file from showing
    active content…Click option here…”. When I select “Allow Blocked Content…”
    I get a security warning “…run active content” to which I reply YES.
    6. Now the form runs, the forms works just fine, and I am at the address: http://dell9150:8889/forms90/f90servlet
    7. Once I close the form, go back to Builder and re-run the form I get the following
    message without ever reaching the internet:
    <html> <head> ORACLE FORMS.</head>
    <body onload="document.pform.submit();" >
    <form name="pform" action="http://dell9150:8889/forms90/f90servlet" method="POST">
    <input type="hidden" name="form" value="C:\guest\forms\exercises\INSTRUCTOR_SECTION_ENROLLMENT.fmx">
    <input type="hidden" name="userid" value="SCOTT/TIGER@orcl">
    <input type="hidden" name="obr" value="yes">
    <input type="hidden" name="array" value="YES">
    </form> </body></html>
    In order to re-run the form I must close out of everything and start from scratch.
    I have tried several combinations of setting in the Internet Properties/Security Settings with no luck. If I RESET (I assume this resets all options to the default) the same thing occurs. Obviously, there has to be a way of setting my Internet Options so that I can run a form without this problem but I am lost and could really use some HELP! I am in no way a Windows expert nor a Oracle DBA but I can follow directions. Thanks.

    Try the following solutions :
    1) Check on in IE -> Tools -> Internet Options -> advanced -> allow active content to run in files on My Co
    mputer
    2) Make sure that you have in the Internet Explorer Tools -> Internet Options -> Advanced tab -> Check the check box
    Enable third party Browser extensions. It will be under browsing.

  • Firewall feature set on router

    We have a router connected to the internet with the firewall feature set on it.  NAT is also being done (internet interface outside, LAN interface inside)
    There is an ACL applied to the internet interface in an outbound direction blocking all RFC 1918 adddresses, but the the internal network (192.168.1.0) still gets out, is this because NAT occurs before the outbound access-list is processed?
    Thanks

    What if someone horks up the vlan config accidentally or plugs something into the wrong port? Relying on that single layer for security is a bit risky, but that's just my opinion.
    Do you use just VLAN isolation elsewhere in your perimeter as the sole network security control?
    Out of curiousity, if it's open auth, how do you prevent company assets from connecting?

  • No security set up yet it is asking for an encryption key

    I have the WRT54G wireless router.  I am running 3 pc's on the network.  I had some issues with the router the other day.  I restored to factory defaults and now 2 of the pc's can connect no problem but the third is listing the router as security enabled.  It has no security set up on it.  All three pc's are running xp.  Is there a setting on my pc to change?  Do I delete a temp file or something?  I have never set up a key on this router and this is getting to the frustration point.
    Thanks!

    I assume your router has a unique SSID, and you are not trying to connect to your neighbor's router.
    Try deleting all the "Preferred Networks" on the non-working computer.
    In the non-working computer, if you are running both Linksys wireless card management software, and WZC at the same time, turn one of them off.
    In the non-working computer, if you are running a software firewall, temporarily turn it off.  Note that some users have had difficulty turning off Zone Alarm, and they needed to uninstall it to get it turned off.
    Message Edited by toomanydonuts on 05-03-200701:20 AM
    Message Edited by toomanydonuts on 05-03-200703:36 AM

  • How to Export local security setting all filed name & value against filed.

    HI all,
    I am trying to export local security setting from local policy using bellow scrip. but it is showing only these are configured. I need expert help which allowed me to export all filed with value where it is configure or not. Please give me.
    $output=@()
    $temp = "c:\"
    $file = "$temp\privs.txt"
    [string] $readableNames
    $process = [diagnostics.process]::Start("secedit.exe", "/export /cfg $file /areas USER_RIGHTS")
    $process.WaitForExit()
    $in = get-content $file
    foreach ($line in $in) {
    if ($line.StartsWith("Se")) {
    $privilege = $line.substring(0,$line.IndexOf("=") - 1)
    switch ($privilege){
    "SeCreateTokenPrivilege " {$privilege = "Create a token object"}
    "SeAssignPrimaryTokenPrivilege" {$privilege = "Replace a process-level token"}
    "SeLockMemoryPrivilege" {$privilege = "Lock pages in memory"}
    "SeIncreaseQuotaPrivilege" {$privilege = "Adjust memory quotas for a process"}
    "SeUnsolicitedInputPrivilege" {$privilege = "Load and unload device drivers"}
    "SeMachineAccountPrivilege" {$privilege = "Add workstations to domain"}
    "SeTcbPrivilege" {$privilege = "Act as part of the operating system"}
    "SeSecurityPrivilege" {$privilege = "Manage auditing and the security log"}
    "SeTakeOwnershipPrivilege" {$privilege = "Take ownership of files or other objects"}
    "SeLoadDriverPrivilege" {$privilege = "Load and unload device drivers"}
    "SeSystemProfilePrivilege" {$privilege = "Profile system performance"}
    "SeSystemtimePrivilege" {$privilege = "Change the system time"}
    "SeProfileSingleProcessPrivilege" {$privilege = "Profile single process"}
    "SeCreatePagefilePrivilege" {$privilege = "Create a pagefile"}
    "SeCreatePermanentPrivilege" {$privilege = "Create permanent shared objects"}
    "SeBackupPrivilege" {$privilege = "Back up files and directories"}
    "SeRestorePrivilege" {$privilege = "Restore files and directories"}
    "SeShutdownPrivilege" {$privilege = "Shut down the system"}
    "SeDebugPrivilege" {$privilege = "Debug programs"}
    "SeAuditPrivilege" {$privilege = "Generate security audit"}
    "SeSystemEnvironmentPrivilege" {$privilege = "Modify firmware environment values"}
    "SeChangeNotifyPrivilege" {$privilege = "Bypass traverse checking"}
    "SeRemoteShutdownPrivilege" {$privilege = "Force shutdown from a remote system"}
    "SeUndockPrivilege" {$privilege = "Remove computer from docking station"}
    "SeSyncAgentPrivilege" {$privilege = "Synchronize directory service data"}
    "SeEnableDelegationPrivilege" {$privilege = "Enable computer and user accounts to be trusted for delegation"}
    "SeManageVolumePrivilege" {$privilege = "Manage the files on a volume"}
    "SeImpersonatePrivilege" {$privilege = "Impersonate a client after authentication"}
    "SeCreateGlobalPrivilege" {$privilege = "Create global objects"}
    "SeTrustedCredManAccessPrivilege" {$privilege = "Access Credential Manager as a trusted caller"}
    "SeRelabelPrivilege" {$privilege = "Modify an object label"}
    "SeIncreaseWorkingSetPrivilege" {$privilege = "Increase a process working set"}
    "SeTimeZonePrivilege" {$privilege = "Change the time zone"}
    "SeCreateSymbolicLinkPrivilege" {$privilege = "Create symbolic links"}
    "SeDenyInteractiveLogonRight" {$privilege = "Deny local logon"}
    "SeRemoteInteractiveLogonRight" {$privilege = "Allow logon through Terminal Services"}
    "SeServiceLogonRight" {$privilege = "Logon as a service"}
    "SeIncreaseBasePriorityPrivilege" {$privilege = "Increase scheduling priority"}
    "SeBatchLogonRight" {$privilege = "Log on as a batch job"}
    "SeInteractiveLogonRight" {$privilege = "Log on locally"}
    "SeDenyNetworkLogonRight" {$privilege = "Deny Access to this computer from the network"}
    "SeNetworkLogonRight" {$privilege = "Access this Computer from the Network"}
      $sids = $line.substring($line.IndexOf("=") + 1,$line.Length - ($line.IndexOf("=") + 1))
      $sids =  $sids.Trim() -split ","
      $readableNames = ""
      foreach ($str in $sids){
        $str = $str.substring(1)
        $sid = new-object System.Security.Principal.SecurityIdentifier($str)
        $readableName = $sid.Translate([System.Security.Principal.NTAccount])
        $readableNames = $readableNames + $readableName.Value + ", "
    $output += New-Object PSObject -Property @{            
            privilege       = $privilege               
            readableNames   = $readableNames.substring(0,($readableNames.Length - 1))
            #else            = $line."property" 
    $output  

    As an alternate approach wee can preset the hash and just update it.  This version also deal with trapping the errors.
    function Get-UserRights{
    Param(
    [string]$tempfile="$env:TEMP\secedit.ini"
    $p=Start-Process 'secedit.exe' -ArgumentList "/export /cfg $tempfile /areas USER_RIGHTS" -NoNewWindow -Wait -PassThru
    if($p.ExitCode -ne 0){
    Write-Error "SECEDIT exited with error:$($p.ExitCode)"
    return
    $selines=get-content $tempfile|?{$_ -match '^Se'}
    Remove-Item $tempfile -EA 0
    $dct=$selines | ConvertFrom-StringData
    $hash=@{
    SeCreateTokenPrivilege =$null
    SeAssignPrimaryTokenPrivilege=$null
    SeLockMemoryPrivilege=$null
    SeIncreaseQuotaPrivilege=$null
    SeUnsolicitedInputPrivilege=$null
    SeMachineAccountPrivilege=$null
    SeTcbPrivilege=$null
    SeSecurityPrivilege=$null
    SeTakeOwnershipPrivilege=$null
    SeLoadDriverPrivilege=$null
    SeSystemProfilePrivilege=$null
    SeSystemtimePrivilege=$null
    SeProfileSingleProcessPrivilege=$null
    SeCreatePagefilePrivilege=$null
    SeCreatePermanentPrivilege=$null
    SeBackupPrivilege=$null
    SeRestorePrivilege=$null
    SeShutdownPrivilege=$null
    SeDebugPrivilege=$null
    SeAuditPrivilege=$null
    SeSystemEnvironmentPrivilege=$null
    SeChangeNotifyPrivilege=$null
    SeRemoteShutdownPrivilege=$null
    SeUndockPrivilege=$null
    SeSyncAgentPrivilege=$null
    SeEnableDelegationPrivilege=$null
    SeManageVolumePrivilege=$null
    SeImpersonatePrivilege=$null
    SeCreateGlobalPrivilege=$null
    SeTrustedCredManAccessPrivilege=$null
    SeRelabelPrivilege=$null
    SeIncreaseWorkingSetPrivilege=$null
    SeTimeZonePrivilege=$null
    SeCreateSymbolicLinkPrivilege=$null
    SeDenyInteractiveLogonRight=$null
    SeRemoteInteractiveLogonRight=$null
    SeServiceLogonRight=$null
    SeIncreaseBasePriorityPrivilege=$null
    SeBatchLogonRight=$null
    SeInteractiveLogonRight=$null
    SeDenyNetworkLogonRight=$null
    SeNetworkLogonRight=$null
    for($i=0;$i -lt $dct.Count;$i++){
    $hash[$dct.keys[$i]]=$dct.Values[$i].Split(',')
    $privileges=New-Object PsObject -Property $hash
    $privileges
    Get-UserRights
    A full version would be pipelined and remoted or, perhaps use a workflow to access remote machines in parallel.
    ¯\_(ツ)_/¯

  • Airport Express not recognized by Utility after changing security setting.

    We use an Extreme with an Express to extend the network and run speakers. While trying to eradicate Airtunes dropouts I changed the security setting on the Express using the Airport Utility. After the update, the Express is no longer being recognized. Help!!! I've unplugged it and used the reset button to no avail. I'm a techno-dummy, so please be gentle. I really do appreciate any insight.

    Hi,
    It seems you have set a too strong security on the Extreme that is not supported on the Express.
    I don't know what model of Express you have so try to use a less strong security on the Extreme.
    (you can find the security specs of your express on Apple's website : http://support.apple.com/specs/#airport )
    As you have reset the Express... you will first have to set it up again...
    P.S. : Do the connection drop problems occur on the Express and / or on the extreme ?
    As security settings "should" not be the cause for WiFi connection drop, something else is.
    Can you give more info on what you already tried ? Ex : Multicast Rate, Transmit Power, Use wide channels, Closed network, Use interference robustness
    Kind regards,

  • Why can't I connect to my brother MFC-J4510DW printer wirelessly? The printer is connected to the router and I can surf the web. I wonder if some security setting may be keeping it from connecting to my MacBook Pro.

    Why can't I connect to my brother MFC-J4510DW printer wirelessly? The printer is connected to the router.
    I can surf the web. My wife can print from her PC wirelessly on it.
    I wonder if some security setting may be keeping it from connecting to my MacBook Pro. I've installed the software, firmware and driver updates but
    it still shows "off line"
    with the printer power on. Any suggestions?

    All I can suggest right now is back up first the try to reset the printing system, (all printers in the list will be removed).
    Then connect directly to the printer via ethernet or to the Mac using USB and restart the efforts you have made up until now.
    As for router settings, it's possible but not likely that your router only allows a small number of clients. It's also posible that you have MAC address filtering on, lastly are you using the correct wireless protocol, (802.11a/b/g WEP or WPA etc)?

  • Security Setting in Microsoft Excel Prohbit XL Report From Running

    Dear Expert,
    When I run XL Report following  error message display
    Security Setting in Microsoft Excel Prohbit XL Report From Running
    On  server Excel 2003 is installed and its working ,
    But  client  PC Excel 2007 is installed and when run xl addon above error display...
    all the micro setting and trust center setting  is done.
    Pls help me.......
    Thanks
    Ashish Nandgaonkar

    Dear Ashish Nandgaonkar,
    You may check this thread first:
    XL reporter issue in SAP Business one 2007 B patch 15
    Thanks,
    Gordon

  • I forgot my security questions and I have a different email address but it's not updated to my Apple ID how can I change my security setting and how to rescue my Apple ID?

    I forgot my security questions and I have a different email address but it's not updated to my Apple ID how can I change my security setting and how to rescue my Apple ID?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • When password security-setting dialogue box is opened, the bottom can't be seen or moved

    Using Acrobat XI Pro on my Dell PC, I was trying to add password protection to the document.  When I click on the "encrypt with password" button, the password security-setting dialogue box pops up, and I can enter the password.  However, the bottom of the page is not visible and I can't move it to click the "ok" button.  Any suggestions?

    Which Acrobat XI Pro are you using? I think you experience the same problem that was reported on this forum in the past. I believe this problem was fixed in one of the recent versions (11.0.07??). Upgrade to the latest version and the problem should go away.

  • Can't get artwork, I get a -609 error. I have tried turning off firewall and antivirus. \\\windows firewall is set to allow itunes anyhow

    I can't get artwork, I get a -609 error. I have tried turning off firewall and antivirus. Theewindows firewall is set to allow itunes anyhow. Any suggestions?

    Perhaps try the "Error -609" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • IE 11 Security Setting change by itself

    When I use IE and going to some websites (Google, NBA.COM, etc) I get a web page error window" Do you want to debug this web page" with some kind of function error. Each time the detail of the error be different. I changed the Internet options
    security to default level and in advance section check the not to display script error option. However after going to some sites, I still get the same error and I noticed that after getting error, the security setting automatically changed to custom, from
    the default which I set by myself. I tried to reset IE, still get the same . I tried to do a system restore , But it fails
    can someone advice
    George

    Hi,
    What's your environment, domain or workgroup?
    Try this:
    From IE> Tools> Internet Options> Advanced...>Check "Disable script debugging" and uncheck "Display a notification about every script error."
    After that run this Fix it Tool:
    http://support.microsoft.com/kb/822521
    Meanwhile, let's verify if the issue occurs in Internet Explorer No Add-ons?
    To launch it via below method:
    Start Internet Explorer 11 in No Add-ons mode by running the Run command from the Start menu, and then typing iexplore.exe -extoff into the box.
    Karen Hu
    TechNet Community Support

Maybe you are looking for

  • Restore to a different node with RMAN and EMC Networker

    Please, really need help :) I took hotbackup using RMAN catalog which went to tape. Here is the script for that: connect target sys/****@PROD;* connect rcvcat rman/***@catalog;* *run {* allocate channel t1 type 'SBT_TAPE'; send 'NSR_ENV=(NSR_SERVER="

  • Windows 8.1 update problem

     I tryed to restore my computer (HP Spectre XT 15-4010nr) to certain date and I got a blank screen, I didn't know what to do so I used the recovery media, know I can't install windows 8.1 in the machine, I did all the updates from windows an the HP w

  • Help with displaying image received from socket on Canvas

    Dear programmers I know that I'm pestering you lot for a lot of help but I just got one tiny problem which I just can't get over. I'm developing a remote desktop application which uses an applet as it's client and I need help in displaying the image.

  • Upgrade iPad 2 from 16 to 32 GB at Apple posibble?

    Hi I ve got a iPad 2 with 16 GB. The Display has a Little failure and i can change it by Apple to change the Display in Garantie. Is it posibble to Pay a the difference to get the 32 Gb Version? 16 Gb is Not enough for me. The for answer

  • Initials wrong in group messaging. How do I change them?

    How can I change my initials in group messaging? They show wrong on mine and other peoples phones.