Powershell - dealing with {host1, host2, host3, ....}

Hello,
I'm working on a Clustered Windows 2012 R2 server, and I'd like to get the list the Preferred Owner list of some cluster Resources, but we have many nodes and the output is not readable from powershell because when use the standard command but it
shows something like {server1, server2,.....} and the output on the screen is not complete.
Then I've tried to get the output in table mode, but I don't know how to get it, I've used the following command using a "join" trick and I'm getting more or less what I want.
get-clusterresource
|
Where{$_.resourcetype 
-match
"MyResourceType"}
|
get-clusterownernode | select clusterobject,,@{n='PrefOwners';e={$_.ownernodes
-join","}}
|ft-a
I've got something like the following, all the Owners are included on a single column. I may survive with this, but I'll have to perform a second filter (excel) over  this output to split each PrefOwner in single columns.
Resource Name                  PrefOwners
"Cluster Resource name"    "PrefOwner1,PrefOwner2,PrefOwner3,prefOwner4,PrefOwner5"
And I'd like to go an step further, what I want is have something like the following where each preferred owner has their own column.
Resource Name                  owner1            owner2            
Owner3           .......
"Cluster Resource name"    "PrefOwner1"   "PrefOwner2"     "PrefOwner3"   .......
How can I get this type of output on one single command?
Best Regards
Regards.

And what's wrong with multiple commands?
Your best bet would be to create a custom object with the columns you're after, but that involves iterating through each owner and you won't get it on a single command.
However, bearing in mind that you're you're using Windows 2012 R2 which comes with PowerShell 4 and that you're quite keen on concise statements, there are things you can do to shorten your version so far (and make it faster! MOAR SPEED!)
A quick example: since PowerShell v4 you can now invoke a .Where() method on collections. It runs faster than piping it to a Where-Object, does exactly the same thing, and the syntax is pretty much the same too. Here's an example:
# New PowerShell v4 way, fastest
(Get-Service).Where({$_.Name -eq 'spooler'})
# PowerShell v3 way, faster than PS <v3 ways
Get-Service | Where-Object Name -eq spooler
# Notice I don't even need to put quotes around the service name, whereas on all the other methods I do. Talk about being lazy!
# Old way... Slowest one
Get-Service | Where-Object {$_.Name -eq 'spooler'}
For comparison, I ran some tests on all 3 ways by invoking each way 10 times and using Measure-Command to capture the times
The v4 way took 160ms~ to run.
The v3 way took 350ms~ to run.
The <v3 way took 450ms~ to run.
I ran all tests multiple times with consistent results, so there you go!
Now... as for your custom object, as I said you can't do it in a single call (unless you want to have all your code cluttered in a line with over 200 characters and expect someone to be able to read it - this is not code art (http://www.dalatdesigns.com/blog/?p=11678).
Anyway, here's a method. I don't have any clusters, so I settled for reading the displaying each of the properties of a WMI instance as one per column, but you get the idea:
# I *should* have used the -Filter parameter of Get-WmiObject here but am trying to get something as similar to your code as possible
$Processes = (Get-WmiObject -Class Win32_Process).Where({$_.Name -eq 'PowerShell.exe'})
#It is better not to use a pipeline here else you have no way of telling when the subproperties you're dealing with now are from the old object or the new one
foreach ($Process in $Processes)
$output = @{}
$output.Name = $Process.Name
# Normally it would work like this, but in WMI objects you can't retrieve them based on index, only name so... It should work for your objects though, give it a try!
#for ($i = 0; $i -lt $Process.Properties.Count; $i++)
#$output."Property$i" = $Process.Properties[$i].Name
# As in this case we can't reference the property based on an index, we have to take another route...
$i = 0
foreach ($Property in $Process.Properties)
$output."Property$i" = $Property.Name
$i++
$outputArray += New-Object -TypeName PSObject -Property $output
$outputArray | Format-Table *
Obviously in my particular case the result will be almost unreadable as a table, since there's no more no less than 42 different properties on that object, but hey, this is what you asked for! You deal with it now :D
PS: I'm just in a good mood today. No idea why, but I am. Please don't follow my 'You deal with it now' to the letter. If you have problems or questions come back!

Similar Messages

  • Powershell dealing with a range of computer names.

    Hello all.  Abridged description, I'm a lab admin trying to re-write a VBS login script into Powershell.  I need to be able to run commands determined by computer name and number...for instance, I have complabA01 through complabA70.  01-25
    need to do an action and copy a shared file, 26-40 need a different action and the same shared file, and 41-70 get a different action still and said shared file.  I've got the base code laid out and functional to determine the computer name and specific
    lines based on that:
    $cn = $env:computername
    If($cn -like 'complabA*'){do stuff}
    If($cn -like 'complabB*'){do other stuff} so on. 
    Is there a way go a layer deeper on that and say "if your number 01-25 do this"?  The problem well may be that I'm coming at this with slightly deeper roots in VBS... so I may well be over/under thinking this.
    In case it'll help, in VBS we handle it by turning the numbers at the end of the name into a separate variable and using said secondary variable in a select case.
    Any thoughts on how that can be done in Powershell?

    You can do this using a regular expression match. For example:
    $computerName = "complabB04"
    $computerName | select-string '^complab([\D])([\d]+)' | foreach-object {
    $labCode = $_.Matches[0].Groups[1].Value
    $computerCode = $_.Matches[0].Groups[2].Value
    "Lab code: $labCode" # B
    "Computer code: $computerCode" # 04
    -- Bill Stewart [Bill_Stewart]

  • Dealing with name changes - Automatically

    Hi,
    I'm am in the process of writing a powershell script to automate our AD User account creation, modification, disabling and deletion. I am trying to figure out how to best deal with name changes with regards to exchange 2010.
    I am already able to automatically detect a name change and, rename the object in AD, the first, last and display name as well as the username and upn... so for exchange is it best to handle this through an email address policy to modify their primary smtp,
    or is there a way to do it through powershell without disabling the email address policy???
    My other question is that if the email address policy where to update the primary SMTP automatically how often with this policy execute? in other word, how long do i have to wait for the primary smtp to change after the account is renamed. Also, if i want
    to keep their old email as an alias is that doable through an email address policy or must it be done with powershell.
    Thanks

    If you want to require e-mail address policy on a recipient, the only way you can change the primary SMTP address is to change the inputs to that policy.  For example, if the policy is
    %g.%[email protected], you'll have to change the first and last names for the address to change.  If you're scripting account creation, you should consider setting -EmailAddressPolicyEnabled $False and manually managing
    the e-mail addresses through your automated process.
    Be sure not to remove the old addresses or else users will lose mail addressed to their prior addresses.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Attempt to deal with changing login account name issue

    Like many companies, we have on a regular basis people who change names due to life situations. I have tried a variety of things to deal with this in SharePoint.
    The changes start with the Active Directory admins, who create the user's new login during a night shift. I get an email about the change. When I look in the user profiles, I see that many of the fields for the user reflect the change. However, the
    actual account name attribute, which is read only to me, never changes during this period.
    So this morning, I once again web searched, found
    http://geekswithblogs.net/rgupta/archive/2011/02/16/change-accountnameloginname-for-a-sharepoint-user-spuser-again.aspx and tried the recommendation.
    I ran
    stsadm -o migrateuser -oldlogin mydomain\old -newlogin mydomain\new -ignoresidhistory
    The user does not exist or is not unique.
    PS C:\Users\sa_spfarm>
    This is the type of behavior I have gotten over time.
    For the longest time I didn't do anything since the user profile was mostly updated. Then an InfoPath programmer reported getting stale information when trying to get the user's login. After research we found that it was using the account name for the user
    rather than the login attribute (which is properly updated).
    Several times I went through adding all the people who had out of date info in their user profile.
    I recently tried to write some powershell that would at least produce a report for me of all  users in the farm whose account name differed from their logins - I was never able to get code that actually worked.
    Surely there is something simple that I am missing. I am hoping someone reads this who recognizes the problem and lets me know.
    The user profile sync is running - new user profiles appear in the system each day and as I said, in all the cases I have seen, the AD information in the profile has all been updated - except the account name (which I suspect must be an index key or something
    for the profiles).
    Thanks!
    About the only thing I have seen that works is to go into all dozen or more of our site collections and add the user's new login to an appropriate sharepoint permission group - that seems to force the account name update or at least removes the old entry
    and creates a new one (I am uncertain which it does).

    Hmm. Let me see if I can.
    Okay, so if you look at the 3 entries from the detailed user list of one of our site collections, you will see that most users are like the first and last one in this screen shot - where the login column and the user name column have the "same"
    name (one has a domain and the other doesn't... that isn't the issue to which I am referring).
    The middle person however has a user name which was the last login the user had, and has a login string with the correct domain and the correct login.
    When I go to Central Admin > manage service applications > User Profile Service Application > Manage User Profiles and I search for the old name, it is not found in either the missing or the active user profiles.
    When I search for the new name, a user profile is found. When I read through the user profile, there is no attribute which has the value of the old name.
    There are calls from users in this situation which lead us back to user list information like this.
    I have seen a user who was able to sign a document out for change in a doc library, but who could not sign it back in because "it was already out to another person" where the other person is the old name.
    Likewise, as I mentioned, if an InfoPath attempts to pull the user's information back from the sharepoint web service, there have been, at least for us, times when the old name is returned with certain methods instead of the new name.
    The interesting thing in this case is that normally I can fix these by adding the new login into a sharepoint group for the site collection. So far, that has not helped with this user.

  • Microsoft !!! please remove stuff which your top specialists are incapable of deploying them so they avoid dealing with them

    Microsoft !!!  please remove stuff which your top specialists are incapable of deploying them so they avoid dealing with them !!!
    have someone deploy SSTP VPN scenario completely ? have you encountered "revocation server offline" annoying error?
    have you read microsoft defective chapters which are about PKI & ADCS in MCITP & MCSE books ?
    have you read Brian comar books ? have you seen deficiencies in his book ?
    we are network trainers.  in all killing problem we encounter in PKI scenarios, you don't find any useful thing in MS books. seems they themselves avoid dealing with them because maybe they themselves know thay themselves are unable to deploy what themselves
    have been created & delivered.
     if you don't believe, begin to deploy the following simple scenario & lok how you will end in the damn error " revocation server offline...."
    i have been working on this problem for months but still no result. start deploy it yourself to find what i say.
    i have done any suggestion & workaround you may think, so please first deploy it yourself & then if you get result & deployed all steps & it worked, tell me. 
    before starting any task, first read my previous threat to find out more:
    revocation server offline

    The way how you ask questions here, how do you expect to get any help here?
    Vadims Podāns, aka PowerShell CryptoGuy
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell File Checksum Integrity Verifier tool.
    do you have dare to test it ? do you have dare to deploy such simple scenario & you will end up in damn " revocation function offline " message. 
    don't forget that i need to deploy that without deploying OCSP. i want to deploy that by configuring CDP extension of issued certificates.
    i have tested any suggestion you may give me. i have spend months on this. damn with windows operation system , such a pure code !

  • Literally the worst customer support experience I've ever had to deal with -- Why don't they let their customers speak to supervisors on demand?

    Call 1: I spoke to them to see if I was eligible for an upgrade. It turned out they had accidentally counted a temporary phone switch to an old device as an upgrade. The representative was extremely slow minded and took over an hour to read through my notes and process what I was saying happened, consulting with his supervisor multiple times. He claimed to have noted everything and told me I had to go to a verizon store to verify in person that I was still using my original phone, and that then I would be able to get an upgrade immediately.
    Trip to the store: Drove an hour only to be told by the store rep that there were NO NOTES on my account about the issue and there was nothing he could do to help me and that I'd have to call customer support again. The store was closing in 20 mins and customer support seems to take 45 minutes minimum to resolve anything, so I left.
    Call 2: Asked a woman to speak to a supervisor about the guy who wasted 2+ hours of my life and gas money. She put me on hold for a long time, came back and said they were all busy right now, would I like to leave my complaint with her? I said no thank you, I will keep waiting. She said ok, and proceeded to hang up.
    Call 3: Asked a different woman to speak to a supervisor, she put me on hold for a long time and then told me that since I wasn't an authorized user I could not speak to one... lol ok. Had a family member call and authorize me.
    Call 4: Asked a guy to speak to a manager. He insisted on taking the complaint himself. Why would I trust someone to take a complaint about their colleague possibly sitting a few desks away when many of them have proven to be incredibly incompetent already? It sounded like we were making progress... then he hung up too.
    Call 5: Asked yet another woman to speak to the manager. She demanded a reason, I told her it was to make a complaint and she told me about a dozen times that the managers would just tell her to take the complaint. I insisted, she refused... finally I threatened to close all of our accounts unless she let me speak to a manager. She said they couldn't right now since the office was closing soon, but that one would call me within 24-48 hours. I'd bet my life savings that never happens. At that point I tried to talk to her about the original upgrade issue, and she said her system had suddenly crashed and that I'd have to call back the next day...  Seriously???
    Absolutely unreal how horrible their customer support is. Will be switching to T-Mobile immediately.

    Having worked in customer service, I have some experience with this kind of situation.  Reps are typically trained to make all attempts to handle complaints by themselves, because there are obviously many more reps than supervisors.  They're usually REQUIRED to fully authorize the account and to get the whole situation from the customer prior to referring you to a supervisor.  One of the biggest problems is that many customers think that demanding a supervisor is a way to guarantee you will get what you want.  If the reason for your request to escalate isn't a valid one, the supervisor won't give in to you either.
    There are plenty of times in my own experience, especially as a brand new rep out of training, that I took a long time to research and get an understanding of the issue.  Yes, I wasn't moving at light speed, but that doesn't make me an idiot.  It means I was trying to gather as much info s possible to try and deal with the issue. But I had plenty of customers tell me I was stupid and to transfer them to my supervisor, simply because I took longer than their patience could tolerate to get all the details I needed.
    I have never had a job that I executed flawlessly day in and day out.  Maybe you have and that's why you can't tolerate a person taking a little longer to wrap their head around the issue, but I'd rather doubt it.
    I also don't think you will find reps who work at light speed and utilize a magic wand to fix people's issues at T-Mobile, either, but I guess it never hurts to try.
    Just to clarify: I do not work for Verizon and never have.  I worked for a residential phone and internet company.

  • Dealing with null values from a database (easy?)

    I'm sure this should be a simple question :
    I'm creating a dynamic dropdown of my companies products that once a product is selected draws values (links) from a database and displays them (links to User guides, FAQs etc).
    My problem is dealing with blank entries in the database - i.e. if a product doesn't have a User guide I've left the database blank.
    I'd like to show 'none' or 'not available' if the entry is blank rather than the 'null' I currently get.
    I'm sure it should be a straightforward if .... else .... but I'm struggling and would appreciate any help,
    Many thanks,
    Mo

    Thanks for the message, the cut down piece of code I'm using for the output is:
    <%
    while (rs.next())
    //header row
    out.println("<tr bgcolor='#666666'>");
    out.println("<td><font style='font-family:arial;color:#ffffff;font-size:10px;'>Product Name</font></td>");
    out.println("<td><font style='font-family:arial;color:#ffffff;font-size:10px;'>FAQs</font></td>");
    out.println("<td><font style='font-family:arial;color:#ffffff;font-size:10px;'>Technical Information</font></td>");
    out.println("</tr>");
    //results
    out.println("<tr border='1' bordercolor='#CCCCCC' bgcolor='#FFFFFF'>");
    out.println("<td><font style='font-family:arial;font-size:12px;font-weight:bold;'><a style='text-decoration:none' href=" + rs.getString("ProductURL") + " target='_blank'><font color='#669999'>" + rs.getString("ProductName") + "</a></td>");
    out.println("<td><font style='font-family:arial;color:#000000;font-size:10px;'>" + rs.getString("FAQs") + "</td>");
    out.println("<td><font style='font-family:arial;color:#000000;font-size:10px;'>" + rs.getString("TechInfo") + "</td>");
    out.println("</tr>");
    stmt.close();
    conn.close();
    %>
    It's the FAQs and TechInfo strings I need to use the statement on - if there's no entry show 'none',
    Thanks again,
    Mo

  • How to deal with several itunes users in a house

    I will try to be brief but explain what I don't know how to configure.
    We have three children. We have 5 laptops that work wirelessly, and we have music and photos all stored on a shared NAS drive. We moved our iTunes music folder successfully to it when we set up.
    1. We set everyone's folder location, under preferences, to the folder on the NAS drive.--- It won't stay. With any reboot or interruption in signal it switches back to the individual computer's hard drive. This is a pain, because every time you reset it, you have to wait for 30 gigs of music to update. This has been asked before and no one answers it. Is it a bug and is Apple aware?
    2. I understand that we can "share" our libraries. But how do we deal with the issue of individual family members purchasing songs from iTunes? As in, I would like to add songs my teen bought to my ipod, but how do I know if there is new music beside asking them to "log" all their purchased so I can manually look for them. We can't just sync every time. They have nanos, and I don't want to have to weed through Christmas music, audio books, and Kidz Bop each time and delete them. What about someone finding they are not "authorized" to play a song? We can have 5 authorized no? I tried to drag something from a shared library onto an ipod and it wouldn't let me.
    Please help. My last question dropped to page three by the end of the day with no response.

    I guess then I need to read more about my NAS drive, because it is always on. I read in another thread about the same issue the question was asked, "Is your NAS drive mounted?" I have no idea what that means. There was other ideas of making alias of the NAS iTunes folder and putting in on the laptop's dock, but I didn't quite understand that either.
    I thought NAS was a rapper. Well, I have no idea what a NAS drive is. But it should have no influence on iTunes' behavior. If that drive is always on and visible on your Desktop (= "mounted"), iTunes shouldn't change its settings re. its Library.
    It would be easier to draw all this instead of explaining, but, well, we are not that far yet.
    0: If you set up on all Macs that iTunes stores its files on one drive, iTunes should not change this on any of them as long as it is always on, as you said. If it does, thought, something is wrong. Don't ask me, what.
    Ok, just to make this even more complicated, LOL if each person has their own laptop and ipod, and everyone in the household has used their 5 authorizations on each other's computers, then theoretically, when everyone accesses the itunes library they should be able to copy the songs onto their devices?
    1: You can play all your music on this external drive from anywhere in the house.
    2: You can activate the DRM files on every Mac in the house and play them.
    3: You canNOT use one iPod on more than one Mac, regardless if the music is DRM or not. iPod 1 is associated with Mac A, iPod 2 with Mac B etc. If you change that, all music from iPod 1 will be deleted before the music from Mac B will be copied to it. So, it's always 1:A, 2:B etc., not iPod 1 : Mac A & B & C... Otherwise, your iPods would be regular external hard drives from which you could copy tons of music to someone else's PC, which is illegal. That's why all the music on an iPod is made invisible. And even after making it visible with special utilities (I tried that once), you won't be able to recognize which song is which. CDs are not stored together, etc. Apple would not have got the permissions for the iTunes Store / iPods from the music industry if it was the perfect utility for illegal music sharing.
    Did I savvy what you meant?

  • How can I create unique partnerships to deal with like EDI messages?

    I have an EDI to Application partnership setup currently that deals with translating MEDRUC type EDIFACT messages to a mainframe format. The setup is
    Sender = PARTNERA,
    Receiver = PARTNERB
    DocType = MEDRUC.
    In the Input EDI tab the
    Sender Qualifier ID = ZZ:PARTNERA
    Receiver Qualifier ID = ZZ:PARTNERB
    Standard = EDIFACT
    Version = D
    Release Number = 97B.
    Use UNG to locate partnerships = No
    EDIFACT messages contain all this information in their UNB and UNH segments which is where SunONE IS B2B looks to then match against the relevant partnership. My problem is this does not go to enough granularity for me to distinguish uniqueness for the second partnership I need to create.
    The problem is the "Association assigned code" field in the UNH for EDIFACT messages is not catered for anywhere in the partnership details area. This means then that whilst my existing partnership deals with Simplified Billing Claim MEDRUC's which is Association assigned code = SBC20, I can't create an EDI to Application partnership for PARTNERA and PARTNER B to cater for Two Way Gap Claiming MEDRUC's which are Association assigned code = TWC10, ie the two messages are D97B MEDRUC type messages only distinguished from each other by this Association assigned code.
    Any ideas how can I then create a unique EDI to Application partnership for this TWC10 MEDRUC message?
    What I am thinking I will have to do is make this second partnership Application to Application and create a custom service to wrap the MEDRUC message with a HREC/TREC and use the parameters in the HREC to dictate the DocType rather than use the UNB/UNH segments in the MEDRUC?

    Hmmm. It looks like way back when the decision was made on how specific the keys had to be, they didn't get quite specific enough for your case. I'm not super experienced with EDIFACT but I'll throw out some suggestions based on my HREC and X12 knowledge.
    A. Could you handle both instnaces through the same partnership, but alter the map to create unique outputs based on the two different types? At least of the cards would need to be handled through Route, but you could have that picked up by a simple Outprep / Gateway Service list that put the data where you wanted it.
    B. Before Parse, run a custom service that is capable of inspecting for which type of data it is, then modify one of the key fields in place to find the Second partnership. Really getting adventurous, maybe you could alter keys in the UNG to make the distinction. This assumes that you don't have both types of documents in the same interchange.
    C. Your idea may be workable. Can you give some more detail on the make-up of the Service list and the destination/processing of the two differnt types of MEDRUC?
    Thanks.

  • I need to reinstall my computer, how do I deal with Premiere pro and After effects?

    Hello,
    As my question states I need to reinstall my computer (laptop) and I'm not quite sure on how to deal with Premiere pro and After effects.
    I am thinking that I need to do some sort of backup and save my projects and footage on a sepparate drive.
    If I reinstall my computer, install my creative suit production premium, and move back all of my projects and footage, won't I have to re-link every single clip?
    I am currently workning on several different projects and having to re-link everything is something I don't even want to think about, that would take me days if not weeks.
    Another option on my mind would be to use Creative cloud. I do have the free version but I have never used it even once before and I'm not quite sure what the purpose of the cloud is and if this is a way to use it.
    I have no idea how to go about this computer reinstalation without either loosing tons of work or having to re-link every single clip used.
    I am videoediting only as a hobby so I have no experience working with other people and sharing projects or the like, wich is my understanding of what the cloud is for.
    Any and all help would be grealty appreciated, I know this is probably really easy but ever since i got my Suit I haven't reinstalled, upgraded och changed my computer so I am just clueless as to how to go about this.
    I have Creative suit production premium, I also have the free Creative cloud.
    It is only Premiere pro and After effects that I am using and am worried about.
    Thank you for any help.
    -Lisa Kajupank
    (and oh, I just notice my name - umustbejoking - I think I just wrote that cause they wouldn't let me use anything else, saying it was already taken. So nevermind that haha.)
    Message was edited by: umustbejoking

    If the computer's running Mac OS X, move the cursor to the very top of the computer's screen, click on Store, and choose Authorize this Computer.
    If the computer's running Windows, press the Alt and S keys and choose Authorize this Computer, or click here, follow the instructions, click on Store in the menu bar, and choose Authorize this Computer.
    (84620)

  • Has anyone experienced problems with Mackeeper? I did not complete downloading this software. Yet, occasionally when on the internet, I will have the MacKeeper multi-colored circle replace my pointer. How do you deal with this?

    Has anyone experienced problems with Mackeeper? I did not complete downloading this software. Yet, occasionally when on the internet, I will have the MacKeeper multi-colored circle replace my pointer. How do you deal with this?

    Welcome to Apple Support Communities
    Don't download MacKeeper. Users complain about this app and it damages OS X. Also, Mac OS X knows how to take care of itself, so you don't need any other cleaning application that may damage OS X. See > https://discussions.apple.com/docs/DOC-3691

  • Where am I supposed to get help? 3 months dealing with tech support is NOT working

    I have been dealing with an ongoing connection issue for 3 months now and I'm at my wits end with trying to get help. I'm have the same problems others seem to be having here my internet keeps cutting out for a min or two and coming straight back on sometimes it works fine for a week sometimes I can't get online all day. I have spent countless hours on the phone with Verizon over these past three months being transferred from place to place, being hung up on and told multiple times they would "call me back"
    I've had three techs come to my house (money out of my paycheck taking off work) and each said the issue isn't at my home, I even spoke with a gentleman at the local dispatch center and he told me the same thing, he also told me when I had a 4th tech scheduled to come "sending another tech won't help we already know the issues isn't at your home so all a tech will do is come check the connection and if its working at that moment close the ticket out"
    Each and every time I call I get the exact same process, first they want to send a tech, then I explain that's not going to help, then I spend 15 min trying to get their "supervisor" on the line, each time I'm told "the ticket has been escalated and will be looked into expect a call back in 24-48 hours" each time I either don't get a call or they call and say its fixed just to have issues return a few days later.
    I've even managed to get a number to a supposed "supervisor" area that needs a pin number to get thorough, yet even when I call that number I'm dealing with being told they need to send another tech and being told I will get call backs.
    I've been told them replacing the modem fixed it, then told them fixing something at the end of my street fixed it, been told they switched me to another server or something Because mine was congested and that fixed it, was told they found another issue and that fixed it..None of these actually did fix it though..SO I've been down right LIED to by Verizon many many times already over this ordeal over the multiple false fixes and the numerous call backs I never got.
    No customer should have to spend 20+ hours on the phone (with each call being atleast 1+ hour most of it being on hold) to get a service they are paying for fixed so PLEASE who on earth do I contact to get this actually FIXED???? Because Each time I try to get somebody who is actually a real manager or something on the phone they are NEVER available and each time I ask to speak to somebody who is actually in MY COUNTRY let alone my state I get told its "not possible"
    Where I live don't have too many internet options and I'ma bout to have to move to a SLOWER service all Because Verizon has screwed me over for 3 months and refuses to fix a service I have paid for for YEARS.
    SO please if any verizon employee sees this or anybody else who knows who/what I need to to please I beg you tell me lol I'm tired of being toyed around...

    Your issue has been escalated to a Verizon agent. Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases".  You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information.  This should be checked on a frequent basis  as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • How to deal with deadlock on wwv_flow_data table when http server times out

    There are some threads about a deadlock on the wwv_flow_data table. None of them contain a real explanation for this behaviour. In my case I will try to explain what I think is happening. Maybe it helps somebody who is hitting the same matter.
    In my case with APEX 3.2.1 I am navigating from one page to another. Doing this APEX will lock the table wwv_flow_data. As soon as the other page is shown the lock will be released. But now this other page contains a bad performing query (standaard report region). After 5 minutes the http server (modplsql) will time out and present the message "No response from the application server" on the screen. In the meanwhile the query is still running on the database server and the lock stays on the wwv_flow_data table.
    Normal user behaviour will be that the user will use the back button to return to the previous page and tries it again to navigate to the other page or
    the user will try to refresh the page with the bad performing query.
    And voila now you will have a deadlock on the wwv_flow_data table since a second session is trying to do the same thing while the first hasn't finished yet.
    How to deal with it?
    First of all. Have a good look at the bad performing query. Maybe you can improve it that it will succeed before the http server will timeout.
    In my case the 11gr1 optimizer couldn't handle a subquery factoring clause in the best way. After changing it back to a classical inline query the problem was solved.
    Secondly you could increase the timeout parameter of the http server. Although this not the best way.
    Maybe it would better if APEX in a next version would release the lock on the table wwv_flow_date earlier or do a rollback just before the moment that the http server is timing out.
    regards,
    Mathieu Meeuwissen

    Hello Shmoove,
    I saw your reply here and you probably understand the problems the HTTP 100 response may cause.
    I am trying to send image that was taken by getSnapshot. The problem is that the server respond with this HTTP 100 message.
    I suspect that the reason that my server doesn't recognize the file that I'm sending from J2me is that the "server to client" response to the 100 message comes after the second message of (see what the TCPIP viewer shows down here):
    POST /up01/up02.aspx HTTP/1.1
    Content-Type: multipart/form-data; boundary=xxxxyyyyzzz
    Connection: Keep-Alive
    Content-length: 6294
    User-Agent: UNTRUSTED/1.0
    Host: szekely.dnsalias.com:80
    Transfer-Encoding: chunked
    400: Client to Server (126 bytes)
    78
    --xxxxyyyyzzz
    Content-Disposition: form-data; name="pic"; filename="david.jpg"
    Content-Type: application/octet-stream
    400: Connected to Server
    400: Server to Client (112 bytes)
    HTTP/1.1 100 Continue
    Server: Microsoft-IIS/5.1
    Date: Wed, 23 Mar 2005 00:47:02 GMT
    X-Powered-By: ASP.NET
    Any help will be appreciated,
    David

  • How to deal with "Script stopped responding" in general Part 3

    OK, I have asked about this issue before, and am back because it won't go away.
    First, I have tried resetting Firefox. Yesterday was the most recent time.
    I have tried using add-on Script Blockers.
    The Script Blocker program worked for a while. The problem is that the primary source of the script problems are Hotmail and Gmail, and I need to have these functioning and open. Plus it is not easy to determine what a script does before deciding to let it in.
    So I'm going to start from the computer user perspective: Why does this happen at all?
    I understand the need for scripts to be used for websites to function. What I don't understand is why my entire computer slows to a crawl, some programs get cut off entirely, and then I have to try to figure out what webpage is causing the problem...slowly. Even when I click the box to stop the script, my computer is still incredibly slow for an unreasonable amount of time. By unreasonable amount, I mean that it is so long that I can't even close Firefox within 5 minutes just to make it stop. By unreasonable amount, I mean I have actually just set my computer to restart so that Firefox will be forced closed and then cancel the restart when Firefox shuts down.
    What can Hotmail, Gmail, or any other program be doing that is of sufficient importance that it can essentially take over the computer? Nothing that isn't critical to the functioning of the computer should have this power. There is nothing critical about a script on Hotmail while I'm not even using that should let it take over all of the computer's resources. I would rather have Hotmail crash and shut off than have it let a script take over my computer. I can click on my Hotmail start up button within seconds while a script that won't respond might take 15 minutes to deal with.
    So can someone please explain to me why this system exists? Why isn't there a command that says "a script may use up this amount of processing power only" that allows a person to keep using their computer while the script futily whirls away? Why isn't there a way to have an automatic setting like "let a script try to run for X seconds and if it doesn't work just stop it"? Why doesn't a window pop-up on the computer screen regardless of where the script problem is to alert you what webpage is causing the problem instead of making the user guess?
    There doesn't even seem to be much purpose to the scripts. If I stop a script that is not responding on Hotmail, I can still use Hotmail when the computer recovers. So why does this happen?
    This system seems insane to me. Honestly, I don't understand why scripts are allowed to do this. Can someone at least help with an explanation of why this happens? Why there isn't a way to make it stop? In a world of apps it seems like something that would kill non-responding scripts after a brief time would be a winner. How did we reach this chokepoint in computer functioning and why haven't we figured out how to stop it?
    Thank you for any help, whether it be fixing the problem or just explaining the purpose.

    Hi auzziewog, a couple of thoughts on long pauses.
    In some cases, this is caused by Firefox waiting on content from the server, or loading some content into a plugin. Other than blocking some extraneous content in pages and setting plugins to "Ask to Activate" (click-to-play) on the Add-ons page, this is a hard problem to solve.
    If the problem is a script (the eventual appearance of the dialog suggests that possibility), please see the above reference post.
    Perhaps it is a combination of those things, since scripts often run after some other elements are loaded...

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

Maybe you are looking for

  • Help with Editable Regions

    We are in the process of creating a template for our site. We are working on the editable regions. What we are finding is if we want to add a bulleted list of items (let's say links) we can't do it without the list header also becoming bulleted. For

  • I'm having trouble assigning keyboard to their own channels.

    I have trouble assigning keyboard to different channels.  I am using 3 keyboards.  One is an M-Audio Keyrig49 which is using on USB port.  The other two MIDI keyboards are ports A and B going through an M-Audio MIDISPORT 4x4.  The Macbook is detectin

  • GCU doesn't work online

    I only just bought GCU in April, but when I tried to buy a game online yesterday, BB.com wouldn't apply my discount. The discount did work the day in the store when I bought it, and this is the first time I'm trying it again. A quick perusal of the m

  • International Char. Sets

    Hello, Does anyone know how to force the browser to use a particular charset with JSP? I am trying to write a page in Japanese, but the browser keeps switching to the default ISO. I have already tried setting the contentType in the page tag, but I ca

  • How do i find my photos from my iPhone in the computer?

    Ok my photos on my ihpone are in photo stream but i dont seee them in my computer isnt icloud supposed to do that? and when i go in i cloud prefrences photostream wont let me check it.