Comments
-
I was reminded of the IPAddress class so the function looks like: function SortIPStrings ($ArrayofIPs) { $hashtable = @{} foreach ($ip in $ArrayofIPs) { $IPKey= ([IPAddress]$ip).GetAddressBytes() $hashtable.Add($IPKEY, $ip) Clear-Variable IPKEY } $Sorted = $hashtable.GetEnumerator() | sort -Property name $ReturnSorted =…
-
wluther I just went thru and set all mine to NOT REQUIRED. Here is hoping for a few stable days with no NULL value errors.
-
dilbert1234 here is a copy of that section silverbacksays linked above. Display Transform algorithms You can apply any one of the following algorithms to a charted metric: Change Point - useful for finding significant changes in the numerical average of a set of data over time. When the numerical average for a time…
-
I agree with mesverrum the cmd.exe is not completing successfully event thought the scheduled task completes. The exit code of 2147942401 is an illegal operation.
-
The account is local to the DMZ system, it does not exist on the polling engine, however the credentials are assigned to the WMI polling. WBemTest and Paessler WMI Tester both return results. Last night I added a SAM component to the system for Windows server. No the NIC is there. I still don;t understand as I do not have…
-
cobrien sent you a DM. My Nexus has 4 VDCs besides the Administrative one.
-
Well right now I am overloading the main menu. There are custom views that people are used to seeing and I want to make them available on a custom tab. It would be different from a custom menu as my team, who does most of the administration, also wants to see all these views, plus the standard Admin level menus. Hence it…
-
For a selection of materials - 3D Printing Service | i.materialise | Materials I neither for for or am affiliated with either company referenced here. Just being a GEEK! and solving your problem!
-
Visual Thesaurus has articles on better writing and you can subscribe to various levels to Word of The Day lists. ------------------------------------------------------------------------------------------ Visual Thesaurus College/GRE Word of the Day: buffoonery If someone tells you to cut out the buffoonery, you may want…
-
Thank you irelandt. I had the exact issue with the Preview page in Report Writer formatted and grouped exactly as I wanted it and the web page all messed up. Using the Advanced SQL report I was able to quickly get the report on the Webpage the way I wanted it. MANY THANKS!
-
They would be discovered automatically if you have a scheduled Network Sonar Discovery task defined.
-
You could take the approach of DNS zone file versioning. By policy and procedure put a version or sequence number as the first line of the file. Then you could do a Get-Content on the item and parse that line to get the number of interest. It works even if you copy the config file to a variety of hosts, meaning you work…
-
I added two of our computers back in and joined the group. I used to run this all the time and tried to get others at work to join a team, but no takers. [Shame you can't combine or transfer points, because I had 6,3111,534 points on my old team of just me.] So now I have those two machines running full throttle. I don't…
-
Thank you for this Will, I have been wanting this for YEARS! I can not believe it snuck in and I didn't notice.
-
-
cobrien - Is that first line really meant to be VPCs and not VDCs?
-
patriot here you go..... <script language="JavaScript"> <!-- function worldClock(zone, region){ var dst = 0 var time = new Date() var gmtMS = time.getTime() + (time.getTimezoneOffset() * 60000) var gmtTime = new Date(gmtMS) var day = gmtTime.getDate() var month = gmtTime.getMonth() var year = gmtTime.getYear() if(year <…
-
Thank you frankmuhlstadt. For those interested here is what my custom grid looks like: I could add a bit more padding for the grid cells. but this gets squeezed into an already busy page. Plus it is still readable to most.
-
neokevin have a look at this. I tweaked it so you can set the display variable. 0 - No indication that it is DST, 10 - Show "DST" after the time if we think it is in DST for that zone, 20 - Shows the zone offset in HOURS:MINUTES [i.e. (-6:30)] I also tweaked the document display in my example to use the grid-container in…
-
rajasekar The function for world clock returns the strings that get put in the document. You simply need to remove the DST at the end. Search for this line in the script and remove the DST: return monthArray[month] + " " + day + ", " + year + "<br>" + hr + ":" + min + ":" + sec + " DST"
-
dsyfer I looked and mine were not displaying the correct DST either. After examining the code I noticed that the original calulations were not returning the current DST start and end date correctly. I have tweaked the code for NAmerica region and confirmed the Europe region should flip on the correct dates. Here you go.…
-
neokevin Not sure I understand how you want the display to look?
-
I only have the work map widget loaded. I do not have a network atlas map on the page. Tool tips appear to load okay though.
-
krishna.mishra The files provided can be placed inside a Custom HTML widget in SolarWinds. You would need to trim off the top four lines and bottom two lines of the files I put in here. Basically removing the HTML and BODY elements. Then paste the rest into the HTML content window. You need to edit the page where you want…
-
rajashekar I added a few lines to make it do what you want. They are lines 288 thru 291. ---------------------timezones.html------------------------------- <!DOCTYPE html> <html> <body> <h2>Timezone Tables</h2> <script language="JavaScript"> <!-- function worldClock(zone, region){ var dst = 0 var time = new Date() var…
-
Not sure I understand what you are asking for rajasekar the change I provided above lets you make a new timezone with an offset of any fraction down to one minute. So if you apply the changes to the script and adjust a time zone to something like +6.5 it will be 6 hours and 30 minutes ahead of UTC. If you want it to be 6…
-
Very nice mat12
-
Did some addition testing and debugging. The code works fine across date boundaries so the above changes should do what you want dsimpkins
-
Change this section in tkercher original: var hr = gmtTime.getHours() + zone var min = gmtTime.getMinutes() var sec = gmtTime.getSeconds() to look like this: var zonehours = (zone - (((zone*10) % 10)/10)); var zoneminutes = (zone - zonehours)*60; var hr = gmtTime.getHours() + zonehours; var min = gmtTime.getMinutes() +…
-
Here is what I did with your foundation tkercher so thanks again.