Comments
-
Yes, and you must like the new direct competitor of Microsoft by the name of "Miscrosfot" and then new "PeopleSOFE" too.
-
This is an actual ticket copied and pasted that was open by one user a long time ago. We kept it because it was just too funny... ------------------------------------ since 9/29/10 have gotten different kinds of error messages: "Mcshield.exr encountered a problem and needed to close" , "Miscrosfot office excel, excel…
-
We also need to be able to add the devices to an existing white list from the "Safe device, add it to white list" option, if you do that now the only option is to create a new list... why can't I choose an existing list?
-
Yes, I tried it and I am going to use this version instead of the Advanced SQL report, but I just wanted to know if I was editing the correct information. Thanks again for all the help, I learned a few things and I appreciate it.
-
Hi HolyGuacamole, I added the following to the SQL field so I can get the time frame between 7AM and 6PM. Can you let me know if that is correct? The report is running without errors but I want to make sure I entered the times correctly at the right place. Is there a way for me to verify the information is correct? Thanks…
-
Thank you, I'll give it a try
-
I really appreciate you taking the time to respond. Right now I have the following report and it gives me the past 5 days, which I run on Saturday so it gives me Monday-Friday results. ====================================================================== SELECT TOP 10000 Nodes.NodeID AS NodeID, Nodes.Caption AS NodeName,…
-
I am using NPM 10.7 by the way. I am not seeing where I can do this. I can do the last XX days but I don't see where I can say I want the report to run for Monday thru Friday between 7AM and 5PM. Would you be able to give me some more direction?
-
Hi, are the top talkers alerts working with NTA 4.2.1? how are they showing via email? Can someone put a picture of an alert? is the graph included in the email as well? Thanks Right now our alerts look like this. I would like to know if that is what you are getting as well
-
Actually I found a custom alert that will do it. Here it is if anyone wants it. You need to create a Custom SQL Alert Then add the text below: JOIN ResponseTime ON Nodes.NodeID=ResponseTime.NodeID WHERE ResponseTime.DateTime BETWEEN DATEADD(Day, -7, getdate()) AND Getdate() AND Nodes.Device_Type LIKE 'Router' Group By…