Questions tagged [automated]

21 questions
5
votes
1 answer

What do you use for automated testing of Debian package installations and updates?

I am using a Debian repo (based on reprepro) for Wheezy and custom packages. I modify my custom packages from time to time and test them manually on different systems, e.g.: Test a) Installation of the new version of the Debian package Test b)…
PythonLearner
  • 1,022
  • 2
  • 12
  • 29
4
votes
3 answers

Linux: How to automate creation of password-protected backup archives

If one doesn't want to dig into sophisticated backup solutions, it is always possible to write a shell script that gathers data and compresses it. Because of privacy issues one might want to encrypt the backup archive by using a suitable tool…
Anonymous
  • 1,540
  • 1
  • 14
  • 18
2
votes
1 answer

Changing Windows Server 2012R2 maintenance time with PS

I'm struggling with this for the past few weeks and I hope someone has THE answer that works. At my work we use VMWare and I've build a automated deployment of Windows server 2012R2 with Powershell, which is working great. Most of my scripts are…
Dave Greebe
  • 109
  • 1
  • 2
  • 6
2
votes
3 answers

How to automate FTPS uploads from the Windows Command Line

I'm looking for a batch script to automate the upload of MULTIPLE files at a time to an external ftps site (ftps://servername.xxxx.com).The files are located in a folder on a Windows Server 2008 system.If possible the batch script also needs to…
ciscokid
  • 53
  • 3
  • 7
2
votes
4 answers

pushing files via sftp

A client wants us to push data files to them on a daily basis using SFTP (FTP over SSH). We are a 100% Microsoft shop with no Linux admins on staff. I am looking for recommendations on how to do achieve this. I have seen different applications for…
Brettski
  • 942
  • 3
  • 20
  • 30
1
vote
1 answer

Automated Installation Testing on Windows

I am looking for some software I can work with that will allow me to test that programs were installed and are functioning correctly. Instead of opening each program manually and see it working, I would like something similar to automated…
xadeka
  • 11
  • 1
1
vote
1 answer

LetsEncrypt certificate renewal switching from dns to http

I recently switched from dns-01 to http-01 callenge type for letsencrypt as I plan to sign my dns zones in the future and therefore automated zone manipulation is no longer wanted. Ever since I made this change I can no longer renew some of my zones…
1
vote
2 answers

Remotely remove user from administrator group, and make it effective immediately

I am trying to write a simple powershell script that ads a domain user to the local admin group on windows machines, and then after 30 Minutes removes them. This is what I have so far. Param( [string]$machineName, [string]$group, …
Dustin F
  • 13
  • 1
  • 4
1
vote
1 answer

Updating usernames and passwords for 450 WordPress databases - 450 ftp Accounts and 450 MySQL user

How would you update these in a consistent, reliable manner? I'm new enough to system administration, self taught and still learning but - I have this problem to solve in no specific time and under my own initiative as I work in a company where I'm…
Mud
  • 133
  • 7
1
vote
2 answers

Making archive with the current date as folder name, and add 1, 2, etc if folder exists

I'm looking to configure this backup script to take the current day's date and make the directory in a mmddyyyy format, as this will be automated. However, if the directory with that current day already exists (if I needed to do more than one backup…
koo
  • 23
  • 3
1
vote
4 answers

Best Software For Automated Database Backup (MySQL and MSSQL)

What is the best software that can backup mysql and ms sql databases automatically? Thanks
jose
  • 21
  • 1
1
vote
2 answers

Network email alerts

I would like to buy or d/l an application that will alert our sysadmin in the event of network failure, like via email and/or phone call. I've looked around the net before posting this question, but I have one main concern: if our network goes down,…
stephenfalken
0
votes
1 answer

Saving multiple hibernate states on Windows

This question is related to this one: Automated windows restart testing In order to automate testing in Windows, it could be useful to save multiple hibernate states and running them to see whether a new version of some software behaves…
David
  • 437
  • 1
  • 5
  • 11
0
votes
1 answer

Automated windows restart testing

I am developing a program, which depends on basically all other programs in our company. As there are so many programs that could potentially change and I never get notified of the changes, I would like make a test environment, where various windows…
David
  • 437
  • 1
  • 5
  • 11
0
votes
2 answers

automate settings change on multiple power appliances

I'm trying to automate the task of changing settings on 100+ power appliances via SSH but each settings change has multiple interactive prompts. Is this possible or does anyone have an example of how to do this with Python/bash script?
1
2