Comments
-
As a follow up, when I do use the Client Certificate Management and change the IP to my current IP but leave the computer name the same, it sees my computer but cannot get WMI connectivity. Just as extra information.
-
Does this happen if you restart the machines before applying the java update?
-
I've found that in the DB it's calculating the inbps and outpbs as whole numbers and not decimal numbers as the other interfaces are and that when you round the numbers returned after each poll for those columns you'll get the utilization numbers it's showing that are incorrect. Example is outpbs is 8555676 and when you…
-
I'd like to revive this topic as well since I believe having EOC only accounts much like NPM would be beneficial for use this software in such a way as to give users who are not a part of the domain and will never be granted local access to this or any other server to still utilize this system. We would potentially like…
-
Thanks David. I was just wondering what specific advantages using automation server for SCCM over WSUS. We don't have a distributed network but we do have other domains that make things interesting. Thanks for the info!
-
I was thinking you could just use something like this: SELECT Nodes.Caption , DateTime ,PortCount as 'Port Count' ,ActivePortCount as 'Active Port Count' ,(PortCount - ActivePortCount) as 'Inactive Port Count' FROM UDT_PortUsage_Detail join Nodes on Nodes.NodeID = UDT_PortUsage_Detail.NodeID where DateTime >=…
-
Disregard the previous post, it turns out to be a duplicate SUSID and validation issue. I cycled that and it installed. That is after I put back the new cert. Thank you all!
-
Thanks to David the WSUS server and Patch Manager server are signing packages again. I tried to push the apple installation again but got the same Error code 800B0109. I removed the old cert from my laptop and moved the new one to the Trusted Root and Trusted Publisher location. Now I'm getting an Error 80072EFD code. What…
-
Turns out that this is a licensing error. They are creating Gen 3 licenses but the version 5.3.3 is only able to accept Gen 2 licensing. After downgrading our account we are still unable to get the licensing to work since the license is for 5.3.3.4 which is still Gen 3. Support is still looking into this and will alert me…
-
Patch Manager does not make any inquiries as to patchs needed by any machines. This is all handled by the WSUS or Microsoft update point. Patch Manager will allow you to manage the approval of patches or to publish 3rd party patches to WSUS. Patches are only downloaded by WSUS if they are approved to a group. Though do…
-
That's very interesting that it's hard set to 30,000 clients. Thank you!
-
Hello shoole! If you visit the SDK section of the site: Orion SDK there is a lot of information on adding nodes, interfaces, volumes, and assigning SAM apps and even group management all through powershell. Adding a node is not too hard. If you've downloaded the SDK you'll get a set of example files. One of these is a…
-
Turns out you totally can put an automation server on a DC. Just needed to specify the instance of the SQL server along with the server host name: Host\instance. This install also creates a domain user patch_manager that is used for connection. Thanks David!
-
I've decided to create a ticket. Might as well be able to put some time to your day for help me if you are the one to pick it up. Case #445221
-
Any steps on fixing this? I'm looking for this account in the management studio but I'm not finding it.
-
Any other thoughts as to this weird situation? I can log on every day with this user name and password as it is a domain admin for both domains. I've tried adding another user to SQL as an admin and all other categories enabled and still it won't connect.
-
* Ordered January 29 * I purchased the 8GB flash drive * Qty: 1 I confirmed my purchase but I've not received the item yet. I know the address is correct as I've received my wind breaker before this item was ordered.
-
It looks like this report uses the Catagory "Approved Updates Installation Summary Info With Approval Details" so you'll need to select the column name of "Computer Group Name" from there.
-
Ah thank you for the clarification! My notebook continues to grow.
-
You will need to change the local policy for that computer to point to this WSUS server for it's updates. Then once it's changed you should see it under unassigned computers. The managed computers contains all your computers that have the WMI provider installed on them.
-
I want to make sure I'm understanding this: 1) If we are to create a report that shows the date/time of a patch being installed by target machines we'd have to enable the Event Log inventory task. 2) Then run an inventory task right after the patching to grab the even log you're speaking of. 3) Finally we'll need to…
-
You can use PowerShell to do this if you have WinRM enabled for your environment. Use Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired" If you'd like to use VB you could use something like <span class="kwd">If</span><span class="pln"> Microsoft</span><span…
-
What format are you sending the report?
-
I'm unable to reproduce any results like the ones you've mentioned. It sounds like your browser is having trouble opening the webpage. Are you sending the login credentials using the report writer? Maybe try clearing cookies and cache to see if something was stuck.
-
Have you tried the following to enable jave in IE? * On web browser menu click "Tools" menu and select "Internet Options". * In the "Internet Options" window select the "Security" tab. * On the "Security" tab click on the "Custom level..." button. * When the "Security Settings - Internet Zone" dialog window opens, look for…
-
Have you tired '&dataformat=xls" ? The list of usable formats I have are: txt xls csv jpg raw xml Know of any others?
-
I have a question about the TriggerTimeOffset as well, is this in milliseconds, seconds, minutes? Also why does every node get two entries in the AlertStatus table? I'm seeing two separate entries for nodes that have an active alert in this table. I'm trying to set up a custom SQL variable that will inform me if this alert…
-
Gah foiled by case again! It worked because I'd insert the IP addresses into the output after the fact since I still couldn't get this part to work. But now I really needed this to work as I'm making this more dynamic at pulling in all the credentials and IPs from either command line passed from automated systems or CSV…
-
Figured something out but I'm still not sure why it's not working. I'm finding that $CoreParameter does contain the IPaddresses that I'm looking to target but as soon as it's put through the CreateCorePluginConfiguration verb it loses the IP addresses. Does that verb take XML in >< format or <> format? Also why would it…
-
I've managed to get an auto discovery script working for a few hours but now it refuses to run with a provider fault. Do you have any thoughts on why this is? I've included the script I've made below for review. Though when it did work it did not show any credentials that worked int he discovered nodes table so i think…