I'm after some general advice and perhaps specific tools/products to assist in automating the administration of customers' Windows boxes.
Here's the environment:
We give customers a Windows box and they have full control of the Administrator account. We have a secondary logon, which is a member of the Administrators group but do not have their Administrator password. Their machine might be a domain controller or it might just be in its own workgroup. The 2008 boxes have UAC enabled (I can't change this.) We have serial console access with which we can log on using our secondary account. We do all our administration from Linux and all scripts are run on our backend systems from which we can log on to the console and access the database.
So my problem is that sometimes, I need to do things such as copy files to their machine and install new software. Currently, I write Python scripts to pull data from our database, log on over the serial console, send a bunch of commands, mount a central share and copy files from it etc. It is not so much of a problem on Windows 2003, but on Windows 2008 UAC gets in the way - we end up doing up things manually.
I want automation to work exactly the same for 2003 and 2008. I want full control of their box when I need it, without having access to the Administrator account, without RDP and without using any kind of GUI.
Is this possible? Have you had to work around these kind of limitations before?
Thanks!