Why is this netstat script so slow when you have multiple ports?

Hello, I need thoughts on optimizing a script. It is very slow as it iterates through the array. My goal was to scan a list of pcs but it takes several minutes to scan one pc. It pauses several seconds between each check. I'm hoping its scanning just my
array. I modified a function to support an array instead of a single port check. My goal is to have a function in my main script that looks at a pc, looks for common ports and counts how many connections are on that port. Any advice for speeding this up?
#function by Chris Dent, modified by Jeremy Roe
Function NetstatToObject {
netstat -ano | ForEach-Object {
$_ -Match '\s*(?<Protocol>(TCP|UDP))\s*(?<LocalAddress>\S*)\s*(?<RemoteAddress>\S*)\s*((?<State>\S*)\s*)?\s*(?<PID>\S*)' | Out-Null
$Matches | Select-Object @{n='Protocol';e={ $_.Protocol }},
@{n='LocalAddress';e={ [Net.IPAddress]($_.LocalAddress -Replace '(:\d*$)') }},
@{n='LocalPort';e={ [UInt32]($_.LocalAddress -Replace '^.*:') }},
@{n='RemoteAddress';e={ [Net.IPAddress]($_.RemoteAddress -Replace '(:\d*$)') }},
@{n='RemotePort';e={ [UInt32]($_.RemoteAddress -Replace '^.*:') }},
@{n='State';e={ $_.State }}, @{n='PID';e={ $_.PID }}
# Object based output
#NetstatToObject
$port2scanArray=(0, 1, 2, 5, 11, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 30, 31, 37, 39, 41, 44, 48, 50, 51, 52, 53, 54, 59, 66, 69, 70, 79, 80, 81, 99, 101, 102, 103, 105, 107, 109, 110, 111, 113, 119, 120, 121, 123, 133, 137, 138, 139, 142, 143, 146, 166, 170, 171, 180, 200, 201, 202, 211, 212, 221, 222, 230, 231, 232, 285, 299, 334, 335, 370, 400, 401, 402, 411, 420, 421, 443, 445, 455, 456, 511, 513, 514, 515, 520, 531, 555, 559, 564, 589, 600, 605, 623, 635, 650, 661, 666, 667, 668, 669, 680, 692, 700, 777, 798, 808, 831, 901, 902, 903, 911, 956, 991, 992, 999, 1000, 1001, 1005, 1008, 1010, 1011, 1012, 1015, 1016, 1020, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1039, 1041, 1042, 1043, 1044, 1045, 1047, 1049, 1050, 1052, 1053, 1054, 1080, 1081, 1082, 1083, 1090, 1092, 1095, 1097, 1098, 1099, 1104, 1111, 1115, 1116, 1122, 1133, 1150, 1151, 1160, 1166, 1167, 1170, 1180, 1183, 1200, 1201, 1207, 1208, 1212, 1215, 1218, 1219, 1221, 1222, 1234, 1243, 1245, 1255, 1256, 1269, 1272, 1313, 1314, 1338, 1349, 1369, 1386, 1415, 1433, 1434, 1441, 1492, 1524, 1560, 1561, 1600, 1601, 1602, 1703, 1711, 1772, 1777, 1807, 1826, 1833, 1834, 1835, 1836, 1837, 1905, 1911, 1966, 1967, 1969, 1978, 1981, 1983, 1984, 1985, 1986, 1991, 1999, 2000, 2001, 2002, 2004, 2005, 2023, 2060, 2080, 2101, 2115, 2130, 2140, 2149, 2150, 2155, 2156, 2222, 2234, 2255, 2281, 2283, 2300, 2311, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2343, 2345, 2407, 2418, 2555, 2565, 2583, 2589, 2600, 2702, 2716, 2772, 2773, 2774, 2800, 2801, 2929, 2983, 2989, 3000, 3006, 3024, 3031, 3119, 3127, 3128, 3129, 3131, 3150, 3215, 3292, 3295, 3333, 3410, 3417, 3418, 3456, 3459, 3505, 3700, 3721, 3723, 3777, 3791, 3800, 3801, 3945, 3996, 3997, 3999, 4000, 4092, 4128, 4156, 4201, 4210, 4211, 4225, 4242, 4315, 4321, 4414, 4442, 4444, 4445, 4447, 4449, 4451, 4488, 4567, 4590, 4653, 4666, 4700, 4836, 4950, 5000, 5001, 5002, 5005, 5010, 5011, 5025, 5031, 5032, 5050, 5135, 5150, 5151, 5152, 5155, 5221, 5250, 5321, 5333, 5343, 5350, 5377, 5400, 5401, 5402, 5418, 5419, 5430, 5450, 5503, 5512, 5534, 5550, 5555, 5556, 5557, 5569, 5637, 5638, 5650, 5669, 5679, 5695, 5696, 5697, 5742, 5760, 5802, 5873, 5880, 5882, 5888, 5889, 5933, 6000, 6006, 6267, 6272, 6346, 6400, 6521, 6526, 6556, 6661, 6666, 6667, 6669, 6670, 6697, 6711, 6712, 6713, 6714, 6715, 6718, 6723, 6766, 6767, 6771, 6776, 6838, 6883, 6891, 6912, 6939, 6969, 6970, 7000, 7001, 7007, 7020, 7030, 7119, 7215, 7274, 7290, 7291, 7300, 7301, 7306, 7307, 7308, 7312, 7410, 7424, 7597, 7626, 7648, 7673, 7676, 7677, 7718, 7722, 7777, 7788, 7789, 7800, 7826, 7850, 7878, 7879, 7979, 7983, 8011, 8012, 8080, 8090, 8097, 8100, 8110, 8111, 8127, 8130, 8131, 8301, 8302, 8311, 8322, 8329, 8488, 8489, 8685, 8732, 8734, 8787, 8811, 8812, 8821, 8848, 8864, 8888, 8988, 8989, 9000, 9090, 9117, 9148, 9301, 9325, 9329, 9400, 9401, 9536, 9561, 9563, 9870, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9879, 9919, 9989, 9999, 10000, 10001, 10002, 10003, 10008, 10012, 10013, 10067, 10084, 10085, 10086, 10100, 10101, 10167, 10498, 10520, 10528, 10607, 10666, 10887, 10889, 11000, 11011, 11050, 11051, 11111, 11223, 11225, 11660, 11718, 11831, 11977, 11978, 11980, 12000, 12076, 12223, 12310, 12321, 12345, 12346, 12348, 12349, 12361, 12362, 12363, 12623, 12624, 12631, 12684, 12754, 12904, 13000, 13010, 13013, 13014, 13028, 13079, 13370, 13371, 13500, 13753, 14194, 14285, 14286, 14287, 14500, 14501, 14502, 14503, 15000, 15092, 15104, 15206, 15207, 15210, 15382, 15432, 15485, 15486, 15500, 15512, 15551, 15695, 15845, 15852, 15858, 16057, 16484, 16514, 16515, 16523, 16660, 16712, 16761, 16772, 16959, 16969, 17166, 17300, 17449, 17499, 17500, 17569, 17593, 17777, 18753, 19191, 19216, 19864, 20000, 20001, 20002, 20005, 20023, 20034, 20203, 20331, 20432, 20433, 21212, 21544, 21554, 21579, 21957, 22115, 22222, 22223, 22456, 22554, 22783, 22784, 22785, 23000, 23001, 23005, 23006, 23023, 23032, 23321, 23432, 23456, 23476, 23477, 23777, 24000, 24289, 25002, 25123, 25555, 25685, 25686, 25799, 25885, 25982, 26274, 26681, 27160, 27184, 27373, 27374, 27379, 27444, 27573, 27665, 28218, 28431, 28678, 29104, 29292, 29559, 29589, 29891, 29999, 30000, 30001, 30003, 30005, 30029, 30100, 30101, 30102, 30103, 30133, 30303, 30331, 30464, 30700, 30947, 30999, 31320, 31335, 31336, 31337, 31338, 31339, 31340, 31382, 31415, 31416, 31557, 31666, 31745, 31785, 31787, 31788, 31789, 31790, 31791, 31792, 31887, 32000, 32001, 32100, 32418, 32791, 33270, 33333, 33545, 33567, 33568, 33577, 33777, 33911, 34312, 34313, 34324, 34343, 34444, 34555, 35000, 35555, 35600, 36794, 37237, 37651, 38741, 38742, 40071, 40308, 40412, 40421, 40422, 40423, 40425, 40426, 41337, 41666, 43720, 44014, 44444, 44575, 44767, 45092, 45454, 45632, 45673, 46666, 47017, 47262, 47698, 47785, 47891, 48004, 48006, 48512, 49000, 49683, 49698, 50000, 50021, 50130, 50505, 50551, 50552, 50766, 50829, 51234, 51966, 52317, 52365, 52901, 53001, 54283, 54320, 54321, 55165, 55555, 55665, 55666, 56565, 57163, 57341, 57785, 58134, 58339, 59211, 60000, 60001, 60008, 60068, 60411, 60551, 60552, 60666, 61115, 61337, 61348, 61440, 61466, 61603, 61746, 61747, 61748, 61979, 62011, 63485, 64101, 65000, 65289, 65421, 65422, 65432, 65530, 65534, 65535
ForEach ($port in $port2scanArray){
# Then filtering:
NetstatToObject | Where-Object { $_.State -eq 'ESTABLISHED' -And $_.LocalPort -eq $port }
# Grouping
NetstatToObject | Where-Object { $_.LocalPort -eq $port } | Group-Object LocalPort
Write-Host done

woot got it!!
cls
$port2scanArray= @(0, 1, 2, 5, 11, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 30, 31, 37, 39, 41, 44, 48, 50, 51, 52, 53, 54, 59, 66, 69, 70, 79, 80, 81, 99, 101, 102, 103, 105, 107, 109, 110, 111, 113, 119, 120, 121, 123, 133, 137, 138, 139, 142, 143, 146, 166, 170, 171, 180, 200, 201, 202, 211, 212, 221, 222, 230, 231, 232, 285, 299, 334, 335, 370, 400, 401, 402, 411, 420, 421, 443, 445, 455, 456, 511, 513, 514, 515, 520, 531, 555, 559, 564, 589, 600, 605, 623, 635, 650, 661, 666, 667, 668, 669, 680, 692, 700, 777, 798, 808, 831, 901, 902, 903, 911, 956, 991, 992, 999, 1000, 1001, 1005, 1008, 1010, 1011, 1012, 1015, 1016, 1020, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1039, 1041, 1042, 1043, 1044, 1045, 1047, 1049, 1050, 1052, 1053, 1054, 1080, 1081, 1082, 1083, 1090, 1092, 1095, 1097, 1098, 1099, 1104, 1111, 1115, 1116, 1122, 1133, 1150, 1151, 1160, 1166, 1167, 1170, 1180, 1183, 1200, 1201, 1207, 1208, 1212, 1215, 1218, 1219, 1221, 1222, 1234, 1243, 1245, 1255, 1256, 1269, 1272, 1313, 1314, 1338, 1349, 1369, 1386, 1415, 1433, 1434, 1441, 1492, 1524, 1560, 1561, 1600, 1601, 1602, 1703, 1711, 1772, 1777, 1807, 1826, 1833, 1834, 1835, 1836, 1837, 1905, 1911, 1966, 1967, 1969, 1978, 1981, 1983, 1984, 1985, 1986, 1991, 1999, 2000, 2001, 2002, 2004, 2005, 2023, 2060, 2080, 2101, 2115, 2130, 2140, 2149, 2150, 2155, 2156, 2222, 2234, 2255, 2281, 2283, 2300, 2311, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2343, 2345, 2407, 2418, 2555, 2565, 2583, 2589, 2600, 2702, 2716, 2772, 2773, 2774, 2800, 2801, 2929, 2983, 2989, 3000, 3006, 3024, 3031, 3119, 3127, 3128, 3129, 3131, 3150, 3215, 3292, 3295, 3333, 3410, 3417, 3418, 3456, 3459, 3505, 3700, 3721, 3723, 3777, 3791, 3800, 3801, 3945, 3996, 3997, 3999, 4000, 4092, 4128, 4156, 4201, 4210, 4211, 4225, 4242, 4315, 4321, 4414, 4442, 4444, 4445, 4447, 4449, 4451, 4488, 4567, 4590, 4653, 4666, 4700, 4836, 4950, 5000, 5001, 5002, 5005, 5010, 5011, 5025, 5031, 5032, 5050, 5135, 5150, 5151, 5152, 5155, 5221, 5250, 5321, 5333, 5343, 5350, 5377, 5400, 5401, 5402, 5418, 5419, 5430, 5450, 5503, 5512, 5534, 5550, 5555, 5556, 5557, 5569, 5637, 5638, 5650, 5669, 5679, 5695, 5696, 5697, 5742, 5760, 5802, 5873, 5880, 5882, 5888, 5889, 5933, 6000, 6006, 6267, 6272, 6346, 6400, 6521, 6526, 6556, 6661, 6666, 6667, 6669, 6670, 6697, 6711, 6712, 6713, 6714, 6715, 6718, 6723, 6766, 6767, 6771, 6776, 6838, 6883, 6891, 6912, 6939, 6969, 6970, 7000, 7001, 7007, 7020, 7030, 7119, 7215, 7274, 7290, 7291, 7300, 7301, 7306, 7307, 7308, 7312, 7410, 7424, 7597, 7626, 7648, 7673, 7676, 7677, 7718, 7722, 7777, 7788, 7789, 7800, 7826, 7850, 7878, 7879, 7979, 7983, 8011, 8012, 8080, 8090, 8097, 8100, 8110, 8111, 8127, 8130, 8131, 8301, 8302, 8311, 8322, 8329, 8488, 8489, 8685, 8732, 8734, 8787, 8811, 8812, 8821, 8848, 8864, 8888, 8988, 8989, 9000, 9090, 9117, 9148, 9301, 9325, 9329, 9400, 9401, 9536, 9561, 9563, 9870, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9879, 9919, 9989, 9999, 10000, 10001, 10002, 10003, 10008, 10012, 10013, 10067, 10084, 10085, 10086, 10100, 10101, 10167, 10498, 10520, 10528, 10607, 10666, 10887, 10889, 11000, 11011, 11050, 11051, 11111, 11223, 11225, 11660, 11718, 11831, 11977, 11978, 11980, 12000, 12076, 12223, 12310, 12321, 12345, 12346, 12348, 12349, 12361, 12362, 12363, 12623, 12624, 12631, 12684, 12754, 12904, 13000, 13010, 13013, 13014, 13028, 13079, 13370, 13371, 13500, 13753, 14194, 14285, 14286, 14287, 14500, 14501, 14502, 14503, 15000, 15092, 15104, 15206, 15207, 15210, 15382, 15432, 15485, 15486, 15500, 15512, 15551, 15695, 15845, 15852, 15858, 16057, 16484, 16514, 16515, 16523, 16660, 16712, 16761, 16772, 16959, 16969, 17166, 17300, 17449, 17499, 17500, 17569, 17593, 17777, 18753, 19191, 19216, 19864, 20000, 20001, 20002, 20005, 20023, 20034, 20203, 20331, 20432, 20433, 21212, 21544, 21554, 21579, 21957, 22115, 22222, 22223, 22456, 22554, 22783, 22784, 22785, 23000, 23001, 23005, 23006, 23023, 23032, 23321, 23432, 23456, 23476, 23477, 23777, 24000, 24289, 25002, 25123, 25555, 25685, 25686, 25799, 25885, 25982, 26274, 26681, 27160, 27184, 27373, 27374, 27379, 27444, 27573, 27665, 28218, 28431, 28678, 29104, 29292, 29559, 29589, 29891, 29999, 30000, 30001, 30003, 30005, 30029, 30100, 30101, 30102, 30103, 30133, 30303, 30331, 30464, 30700, 30947, 30999, 31320, 31335, 31336, 31337, 31338, 31339, 31340, 31382, 31415, 31416, 31557, 31666, 31745, 31785, 31787, 31788, 31789, 31790, 31791, 31792, 31887, 32000, 32001, 32100, 32418, 32791, 33270, 33333, 33545, 33567, 33568, 33577, 33777, 33911, 34312, 34313, 34324, 34343, 34444, 34555, 35000, 35555, 35600, 36794, 37237, 37651, 38741, 38742, 40071, 40308, 40412, 40421, 40422, 40423, 40425, 40426, 41337, 41666, 43720, 44014, 44444, 44575, 44767, 45092, 45454, 45632, 45673, 46666, 47017, 47262, 47698, 47785, 47891, 48004, 48006, 48512, 49000, 49683, 49698, 50000, 50021, 50130, 50505, 50551, 50552, 50766, 50829, 51234, 51966, 52317, 52365, 52901, 53001, 54283, 54320, 54321, 55165, 55555, 55665, 55666, 56565, 57163, 57341, 57785, 58134, 58339, 59211, 60000, 60001, 60008, 60068, 60411, 60551, 60552, 60666, 61115, 61337, 61348, 61440, 61466, 61603, 61746, 61747, 61748, 61979, 62011, 63485, 64101, 65000, 65289, 65421, 65422, 65432, 65530, 65534, 65535)
#$port=80
#NetstatToObject | Where { $_.LocalPort -eq $port} | Group-Object LocalPort
NetstatToObject | Where {$port2scanArray -contains $_.LocalPort } | Group-Object LocalPort
Function NetstatToObject {
netstat -ano | ForEach-Object {
$_ -Match '\s*(?<Protocol>(TCP|UDP))\s*(?<LocalAddress>\S*)\s*(?<RemoteAddress>\S*)\s*((?<State>\S*)\s*)?\s*(?<PID>\S*)' | Out-Null
$Matches | Select-Object @{n='Protocol';e={ $_.Protocol }},
@{n='LocalAddress';e={ [Net.IPAddress]($_.LocalAddress -Replace '(:\d*$)') }},
@{n='LocalPort';e={ [UInt32]($_.LocalAddress -Replace '^.*:') }},
@{n='RemoteAddress';e={ [Net.IPAddress]($_.RemoteAddress -Replace '(:\d*$)') }},
@{n='RemotePort';e={ [UInt32]($_.RemoteAddress -Replace '^.*:') }},
@{n='State';e={ $_.State }}, @{n='PID';e={ $_.PID }}
Write-Host DONEZO

Similar Messages

  • TS2755 how do I see which apps are downloaded from a certain device when you have multiple devices

    how do I see which apps are downloaded from a certain device when you have multiple devices

    you can't.

  • Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 Windows XP Thanks.

    Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 . Using Windows XP Driving me nuttier! Thanks.
    (Is is that MicroNetFrame Asst thing?)
    == This happened ==
    Every time Firefox opened
    == When I installed latest version

    Thanks for your reply. I appreciate your help.
    It was just a hunch that MircoNetFrame was causing the problem. I disabled it as you suggested, and I still have the problem.
    I just changed under Tools>Options> General - had checked "ask me every time" under downloads, so instead of asking me, FF saved the download to I know not where. It no longer saves it to the desktop, leaving a duplicate in "my documents".
    In windows, I have found unless one knows the entire name of the document, one can never find anything. It isn't listed under recent ''''''__. I can't recall the nomenclature, but the
    capability is ridiculous. So, I don't know where that file I just downloaded is!
    I downloaded a PDF file, but this happens with all DL's. It was so easy to have them all stacked in one place and I could recall
    what I had and when I downloaded it easily.
    Do you have any other suggestions other that going back to the old version of FF, which I would rather not do?
    Thanks again for your time, it is very considerate to help a complete stranger, I must say. Sounds like something I might do! Cheers!

  • Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Texting longer text messages or any media (pictures/video/sound etc) being sent requires data to be active. However, it does not count against your data caps.
    Since you have an iPhone, you must also be aware of the difference between iMessage and SMS Text messages. The iPhone, by default, will send an iMessage when sending another text message to anyone else with an iPhone, iTouch, or iPad. This does use your data if you are not connected to wifi. In Settings, you can turn iMessage off, and then all of your texts will go through Verizon.
    Also understand- iMessage will use wifi when connected to wifi, but would need cellular data connection to work when not connected to wifi. Regular SMS text messages that are long or any media will always use the cellular data and not wifi, so will not send if cellular data is turned off, even if on wifi. However, this does not count against your cap.

  • HT4009 Why is it so difficult to purchase balls for NBA king of the court even when you have a ballance on your account?

    I am having problems purchasing balls and other apps for NBA King of the court. Why is this a challenge even when you have money on your apple account?

    What exactly are you having trouble doing ?
    What is the error message ( if any ) that you see ?
    Message was edited by: b j t

  • HT1918 why is my credit card being charged when i have money from an itunes card

    why is my credit card being charged when i have money from an itunes card

    When its around the holiday season the purchasing system some times gets a lil thrown off and wont recognize the gift card on the account. But its easy to get fixed.
    Just contact iTunes uspport with this link and they will revert the charges to the gift card:
    http://www.apple.com/lae/support/itunes/contact.html

  • Why can't I use my account when I have verify for few time

    Why can't I use my account when I have verify for few time

    I am not from Apple. Apple is not here. Apple does not answer questions here. There are only other users, such as yourself, here.
    NEVER give out your personal information here in this forum to anyone.
    If you cannot follow the simple instructions above, I am unable to offer any other assistance.
    Good bye.

  • How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    Hi j,
    I don't know if this will work, but I'd try logging in to an admin account, going to your main library (not user library), opening it, opening Application Support, selecting iPhoto, hold down the command key and press i, click on the lock in the lower left, entering the password and making sure you have Read & Write privileges for System and Admin.

  • My airport time capsule will no longer allow our iPhones or vizio smart tvs to connect to it, though my iPad air mac mini and mac air connect fine. Why is this? does a recent software update have anything to do with it?

    my airport time capsule will no longer allow our iPhones or vizio smart tvs to connect to it, though my iPad air mac mini and mac air connect fine. Why is this? does a recent software update have anything to do with it?

    What model is your TC? What is the firmware?
    I recommend you do a factory reset and use short names.. not apple recommended names.
    Short.. 2-20 characters .. less than 10 even better.
    No spaces.
    Pure alphanumeric.
    Set fixed channels for 2.4ghz wireless.. test with 11, 6, 1 at least.
    That often helps.. if not and is old, ie Gen1-4 go back to 7.6.1 firmware which is far more solid.

  • Error "Licensing for this product has stopped working" when you launch Acrobat 9

    Hi,
    I'm part of service desk and my company has several thousand users of Acrobat. There has been strange issues reported since upgrading from 7.0.5 to 9.1 and a lot of them are uhappy. The latest issue is users started to receive the following error,
    Error "Licensing for this product has stopped working" when you launch Acrobat 9 or Adobe Creative Suite 4 products. The link http://kb2.adobe.com/cps/405/kb405970.html#ErrorCodes has solution, but i tried everything given for 147-178, and nothing works. The users are highly frustrated. Any other possibilities? one collegue claims running simple reg cleaner could solve this issue.

    Wow,
    I went through a "font crisis" on my MacBook about two weeks ago, and I reinstalled Snow Leopard, then restored everything from Time Machine backup. Everything but Office 2008 and CS4 was able to run from the restore, because there were preferences for both that wouldn't copy back to my Library (permissions).
    I reinstalled both from the "original media" (dmg's)  with my Time Machine and 2 other external HDs connected and mounted. I had no problems with either. In fact since I was re-installing from dmg's stored on my Time Machine drive, I had to have it connected to do this. Installing Office and CS4 from the dmg's took all of twenty minutes for both with no errors at all.
    I'm glad you got everything taken care of, but anectdotal evidence tells me CS4 can be reinstalled with external drives connected and mounted.

  • Why can I only create 4 forms when I have purchased the entire package at 100+ dollars?

    Why can I only create 4 forms when I have purchased the entire package at 100+ dollars?

    FormsCentral can be used from anywhere, but to purchase a subscription you need a credit card with the mailing address in one of the countries supported for purcahse:
    http://forums.adobe.com/docs/DOC-1375
    The partner can purchase if they have access to a card in one of those countries.  Alternatively they do not need to purchase a subscription to edit forms that you've created, they do in order to create multiple forms of their own, but by your sharing forms with them at the "Co-author" level they have access to the editing.  Here are the instructions to share a form:
    http://forums.adobe.com/docs/DOC-2462
    Thanks,
    Josh

  • This message shows up when I try to access my auxiliary iPhone library: "The iPhoto library is on a locked volume. Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library."

    This message shows up when I try to access my auxiliary iPhone library: "The iPhoto library is on a locked volume. Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library."
    What did I do wrong?  I have been downloading all my photos into this same library since Janurary with no problems.

    What version of Mac OS X?
    Click the black Apple icon on the top left of the screen and select About This Mac. The next screen will show the information.

  • Why is the iphone 5 often damaged when you buy it?

    why is the iphone 5 often damaged when you buy it?

    the aluminum on the black iphone 5 is being damaged in Foxconn assembly, Apple is replacing all damaged scuffed,chipped/scratched devices.
    also there was a 2,000 worker riot at Foxconn that has damaged the assembly line for the iphone, get your replacement iphone5 while you can as there is soon to be a shortage
    http://www.reuters.com/article/2012/09/24/us-hon-hai-idUSBRE88N00L20120924

  • When trying to use find my Iphone  says off line , suggestion is to switch on and off airplane mode , so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?

    when trying to use find my Iphone  says off line , suggestion is to switch on and off airplane mode , so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?

    Ivorbiggin wrote:
    so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?
    Yes.

  • RADIUS-assigned VLANs are not supported when you enable multiple BSSIDs

    Could someone please tell me is this 100% correct?
    "RADIUS-assigned VLANs are not supported when you enable multiple BSSIDs"
    Any ideas why? Does anyone have a way around this?
    As a workaround I was thinking of setting up one broadcast SSID for guests and one non-broadcast SSID for RADIUS assigned VLANs, however i'd prefer to have both broadcast due to numerous Vista and PDA connection issues.

    Hi.
    Thanks for your reply.
    That is what I would like to do; have one SSID and assign the users to different VLANs based on policy.
    I have all the VLANs and subinterfaces set up correctly and working independently, but the VLAN assigment does not seem to work correctly.
    If I do a "show dot11 association all-client" the RADIUS attribute appears to have altered the VLAN, but the device has no connectivity and cannot DHCP.
    This is with 1130AG in autonomous mode and Microsoft IAS as RADIUS.
    Apparently there may be a problem with mbssid and RADIUS assigned VLANs.

Maybe you are looking for