• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

multithreaded remote vbscript example

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

I.M.O.G.

Glorious Leader
Joined
Nov 12, 2002
Location
Rootstown, OH
If you write vbscript, you can look at these however you prefer. If you don't write vbscript, use notepad++ and under language select vb/visual basic - this will color code making it easier to read. Files have been renamed with txt extensions, to avoid any antivirus or security alerts when you download/view them. Rename them to end in .vbs if you want to run any of them.

What I'm sharing here is what I would consider advanced vbscript - it's all relative, but most vbscript users are casual (download and run existing scripts, maybe minor modifications to a line or two of code). I'm sharing a handful of scripts I wrote as examples of what these scripts are useful for. There's what I would call a parent script, OCF-multitool-multithreaded.vbs, then multiple child scripts called by the parent used for performing specific tasks.

The parent script is based on the code at the following URL, which implements the really smart multithreading part. Aside from that code, the rest is >95% my own code (all of it really, but parts I may have copied from somewhere at some point). https://gallery.technet.microsoft.com/scriptcenter/32e0146a-83fc-4ee1-af7b-52a57d57466c

This is what the parent script does:
- Parent script prompts to create a list of computers from querying active directory, or using a text file named defaultlist.txt in the script working directory (list has one computer/IP per line)
- Parent script prompts to select a task you want to perform
- If needed for task, parent script prompts for admin credentials to use on remote machines, so admin username/passwords are not hardcoded in script (best practice, don't put usernames/passwords in scripts)
- If needed for task, parent script prompts for command you want to send remotely
- Parent script calls child scripts, keeping 100 script processes running at a time until finished. If you are taking an action on 1000 computers, it will execute against 100 simultaneously until all are complete. 100 is just a default value, it can be changed to anything.
- Parent script expects a return value from child scripts by using wscript.quit(X). This allows child scripts to pass a status back to the parent so it compiles all machine results in one log.
- Parent script creates progress window, showing estimated seconds remaining until all machines are complete.
- Parent script creates separate logging folder each time it's run, based on current date/time to keep running record. 3 separate logs, online machines, offline machines, and results.
- Parent script outputs prompt showing total runtime when finished (timer starts after user input gathered, so it only times the actual process execution).

This is what the child scripts do:
- All scripts use connectserver method to execute commands under remote local admin credentials, so account used to run the script doesn't matter, and does not require domain admin rights. Most vb scripts are designed to be run on the local machine, but this method is key for performing basically any change you like on remote machines.
- pingstatus.vbs - Identifies online/offline machines. Running a ping against 1350 remote machines in my environment takes 25 seconds to complete multithreaded. Without multithreading, the same machines take over 10 minutes to complete (many machines remote WAN/offline).
- sendcommand.vbs - Sends an arbitrary command to remote machines. For example, you can send "sc config browser start= disabled" to disable the Computer Browser service on all target machines. Similar to the ping command, this takes less than a minute to hit 1200 machines, versus over 10 minutes if not multithreaded.
- disableuac.vbs - Disables User Account Control on target machines on all target machines by setting registry key (takes effect after reboot).
- disableNICPM.vbs - Disables NIC power management on target machines. Parses the registry to identify NICs, and turns off powersaving to ensure the NIC is not put to sleep. This is specific to types of NICs found in my environment, so it would need one line changed to accommodate whatever NICs exist in your environment.
- findoffice.vbs - Finds office installs. Checks if powerpnt.exe exists to indicate if Office is installed. Proper way would be to parse registry, as it could find more versions of office, regardless of which folder its installed at. I have similar code that does this properly, but it needs refactored to be compatible with multithreading.
- findBadAdminCreds.vbs - Creates a list of remote machines that do not have the expected local admin username/password set.

The parent script can just be doubleclicked, and it will display popups to get required input.

The child scripts can be run directly from the command line, by passing the required arguments listed at the very top of the script. So for example, this command would disable NIC Power Management on IMOGPC (there would be no output to indicate this, the script just quits once done - its designed to pass the result back to the parent script which logs the result. So it works alone, it just isn't very user friendly):

"c:\temp\disableNICPM.vbs IMOGPC administrator adminpass"

Caveats:
- The parent script will only create lists from AD if you input the proper LDAP info to query your domain (around line 300).
- Change the value for Const MaxThreads to run more or less than 100 scripts simultaneously
- If you add additional child scripts yourself, be careful if those scripts want to transfer files - if you have 100 machines simultaneously trying to copy files remotely, you could very easily saturate a WAN link if your network isn't QoS'd properly. For command based changes, network saturation is not a concern.
- I've hardcoded a path that exists on my machine in the parent script. This path would need modified to match wherever you have the scripts stored at (around line 175).
- These scripts aren't super robust, as they don't do much error handling, however in several examples there is more code than is needed to ensure robustness and avoid odd errors/edge cases I encountered running them in a production environment.

Planned improvements:
- Add the ability for parent script to accept arguments rather than prompt for user input. This way common commands can just be saved/copy/pasted rather than inputting selections each time its run.

Screenshots:

createlist.JPG

selectsite.JPG

selecttask.JPG

admin.JPG

The contents of the progress window update constantly in real time:
progress.jpg

runtime.JPG

The resulting output of the disableUAC script looks like this, except the actual computer names would be shown (I didn't want to share a list of every machine name in the company):
Code:
1/22/2016 4:18:52 PM | anothercomputer | Return: Offline
1/22/2016 4:18:52 PM | anothercomputer | Return: Offline
1/22/2016 4:18:52 PM | anothercomputer | Return: Offline
1/22/2016 4:18:53 PM | anothercomputer | Return: Offline
1/22/2016 4:18:53 PM | anothercomputer | Return: Offline
1/22/2016 4:18:53 PM | anothercomputer | Return: Offline
1/22/2016 4:18:53 PM | anothercomputer | Return: Offline
1/22/2016 4:18:54 PM | anothercomputer | Return: Offline
1/22/2016 4:18:54 PM | anothercomputer | Return: Offline
1/22/2016 4:18:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: Offline
1/22/2016 4:18:55 PM | anothercomputer | Return: Offline
1/22/2016 4:18:55 PM | anothercomputer | Return: Offline
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: Offline
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: Offline
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: Offline
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:18:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:03 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:03 PM | anothercomputer | Return: Offline
1/22/2016 4:19:03 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: Error Authentication
1/22/2016 4:19:04 PM | anothercomputer | Return: Offline
1/22/2016 4:19:04 PM | anothercomputer | Return: Offline
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:05 PM | anothercomputer | Return: Offline
1/22/2016 4:19:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:08 PM | anothercomputer | Return: Offline
1/22/2016 4:19:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: Offline
1/22/2016 4:19:11 PM | anothercomputer | Return: Offline
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: Offline
1/22/2016 4:19:12 PM | anothercomputer | Return: Offline
1/22/2016 4:19:12 PM | anothercomputer | Return: Offline
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:12 PM | anothercomputer | Return: Offline
1/22/2016 4:19:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:13 PM | anothercomputer | Return: Offline
1/22/2016 4:19:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:14 PM | anothercomputer | Return: Offline
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: Offline
1/22/2016 4:19:15 PM | anothercomputer | Return: Offline
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:15 PM | anothercomputer | Return: Offline
1/22/2016 4:19:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:16 PM | anothercomputer | Return: Offline
1/22/2016 4:19:16 PM | anothercomputer | Return: Offline
1/22/2016 4:19:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:17 PM | anothercomputer | Return: Offline
1/22/2016 4:19:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:17 PM | anothercomputer | Return: Offline
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: Offline
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: Error Authentication
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:18 PM | anothercomputer | Return: Offline
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:19 PM | anothercomputer | Return: Offline
1/22/2016 4:19:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: Offline
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: Offline
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: Offline
1/22/2016 4:19:23 PM | anothercomputer | Return: Offline
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: Offline
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: Offline
1/22/2016 4:19:24 PM | anothercomputer | Return: Offline
1/22/2016 4:19:24 PM | anothercomputer | Return: Offline
1/22/2016 4:19:24 PM | anothercomputer | Return: Offline
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: Offline
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:25 PM | anothercomputer | Return: Offline
1/22/2016 4:19:25 PM | anothercomputer | Return: Offline
1/22/2016 4:19:25 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:26 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: Offline
1/22/2016 4:19:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: Offline
1/22/2016 4:19:27 PM | anothercomputer | Return: Offline
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:27 PM | anothercomputer | Return: Offline
1/22/2016 4:19:28 PM | anothercomputer | Return: Offline
1/22/2016 4:19:28 PM | anothercomputer | Return: Offline
1/22/2016 4:19:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:28 PM | anothercomputer | Return: Offline
1/22/2016 4:19:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:28 PM | anothercomputer | Return: Offline
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: Offline
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:30 PM | anothercomputer | Return: Offline
1/22/2016 4:19:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:32 PM | anothercomputer | Return: Offline
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: Offline
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: Offline
1/22/2016 4:19:34 PM | anothercomputer | Return: Offline
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:35 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: Offline
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:36 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: Offline
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: Offline
1/22/2016 4:19:37 PM | anothercomputer | Return: Offline
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:37 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: Offline
1/22/2016 4:19:38 PM | anothercomputer | Return: Offline
1/22/2016 4:19:38 PM | anothercomputer | Return: Offline
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:38 PM | anothercomputer | Return: Offline
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: Offline
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: Offline
1/22/2016 4:19:39 PM | anothercomputer | Return: Offline
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:39 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: Error Authentication
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:40 PM | anothercomputer | Return: Offline
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:41 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: Offline
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: Offline
1/22/2016 4:19:42 PM | anothercomputer | Return: Offline
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:42 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: Offline
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: Offline
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: Offline
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:43 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: Offline
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:44 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: Offline
1/22/2016 4:19:45 PM | anothercomputer | Return: Offline
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:45 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:46 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:46 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:46 PM | anothercomputer | Return: Offline
1/22/2016 4:19:46 PM | anothercomputer | Return: Offline
1/22/2016 4:19:46 PM | anothercomputer | Return: Offline
1/22/2016 4:19:46 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:46 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: Offline
1/22/2016 4:19:47 PM | anothercomputer | Return: Offline
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:47 PM | anothercomputer | Return: Offline
1/22/2016 4:19:47 PM | anothercomputer | Return: Offline
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: Offline
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:48 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:49 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:49 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:49 PM | anothercomputer | Return: Offline
1/22/2016 4:19:49 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:49 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:49 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:50 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:51 PM | anothercomputer | Return: Offline
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:52 PM | anothercomputer | Return: Offline
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: Offline
1/22/2016 4:19:53 PM | anothercomputer | Return: Offline
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:53 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:54 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:55 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:56 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:56 PM | anothercomputer | Return: Offline
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: Offline
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:57 PM | anothercomputer | Return: Offline
1/22/2016 4:19:57 PM | anothercomputer | Return: Offline
1/22/2016 4:19:57 PM | anothercomputer | Return: Offline
1/22/2016 4:19:57 PM | anothercomputer | Return: Offline
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: Offline
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: Offline
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:58 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:19:59 PM | anothercomputer | Return: Offline
1/22/2016 4:20:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:00 PM | anothercomputer | Return: Error Authentication
1/22/2016 4:20:00 PM | anothercomputer | Return: Offline
1/22/2016 4:20:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:00 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:00 PM | anothercomputer | Return: Offline
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: Offline
1/22/2016 4:20:01 PM | anothercomputer | Return: Offline
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:01 PM | anothercomputer | Return: Offline
1/22/2016 4:20:01 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:02 PM | anothercomputer | Return: Offline
1/22/2016 4:20:02 PM | anothercomputer | Return: Offline
1/22/2016 4:20:02 PM | anothercomputer | Return: Offline
1/22/2016 4:20:02 PM | anothercomputer | Return: Offline
1/22/2016 4:20:02 PM | anothercomputer | Return: Offline
1/22/2016 4:20:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:02 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:03 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:03 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:03 PM | anothercomputer | Return: Offline
1/22/2016 4:20:03 PM | anothercomputer | Return: Offline
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: Offline
1/22/2016 4:20:04 PM | anothercomputer | Return: Offline
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:04 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: Offline
1/22/2016 4:20:05 PM | anothercomputer | Return: Offline
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: Offline
1/22/2016 4:20:05 PM | anothercomputer | Return: Offline
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:05 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:06 PM | anothercomputer | Return: Offline
1/22/2016 4:20:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:06 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:06 PM | anothercomputer | Return: Offline
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:07 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:08 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: Offline
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:09 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: Offline
1/22/2016 4:20:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:10 PM | anothercomputer | Return: Offline
1/22/2016 4:20:10 PM | anothercomputer | Return: Offline
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: Offline
1/22/2016 4:20:11 PM | anothercomputer | Return: Offline
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:11 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: Offline
1/22/2016 4:20:12 PM | anothercomputer | Return: Offline
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:12 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:13 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: Offline
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:14 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: Offline
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:15 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: Offline
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: Offline
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:16 PM | anothercomputer | Return: Offline
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:17 PM | anothercomputer | Return: Offline
1/22/2016 4:20:17 PM | anothercomputer | Return: Offline
1/22/2016 4:20:17 PM | anothercomputer | Return: Offline
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:18 PM | anothercomputer | Return: Error Authentication
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: Offline
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:19 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:20 PM | anothercomputer | Return: Offline
1/22/2016 4:20:20 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:20 PM | anothercomputer | Return: Offline
1/22/2016 4:20:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:21 PM | anothercomputer | Return: Offline
1/22/2016 4:20:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:21 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:21 PM | anothercomputer | Return: Offline
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:22 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: Offline
1/22/2016 4:20:23 PM | anothercomputer | Return: Offline
1/22/2016 4:20:23 PM | anothercomputer | Return: Offline
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:23 PM | anothercomputer | Return: Offline
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:24 PM | anothercomputer | Return: Offline
1/22/2016 4:20:24 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: Offline
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: Offline
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:25 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: Offline
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:26 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: Offline
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: Offline
1/22/2016 4:20:27 PM | anothercomputer | Return: Offline
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:27 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:28 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:29 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:30 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:31 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:32 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:33 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:34 PM | anothercomputer | Return: UAC Disabled
1/22/2016 4:20:41 PM | anothercomputer | Return: Offline
1/22/2016 4:20:42 PM | anothercomputer | Return: UAC Disabled
 

Attachments

  • disableNICPM.txt
    3.4 KB · Views: 67
  • findBadAdminCreds.txt
    1.7 KB · Views: 28
  • OCF-multitool-multithreaded.txt
    18 KB · Views: 72
  • pingstatus.txt
    607 bytes · Views: 21
  • disableuac.txt
    3 KB · Views: 26
  • sendcommand.txt
    1.7 KB · Views: 67
  • findOffice.txt
    4.4 KB · Views: 26
Last edited:
Added screenshots of visual output of the script. Also included a copy/paste example of the resulting log file to show the timestamps of how quickly results are returned and logged.

Any questions or feedback appreciated!
 
Back